Endless Online Hacks
Would you like to react to this message? Create an account in a few clicks or log in to continue.


Endless Online Haxs (((( PM Matthew If You Need Any Help ))))
 
HomeLatest imagesSearchRegisterLog in

 

 How to make your own guitar script

Go down 
3 posters
AuthorMessage
pickle
Moderators
Moderators
pickle


Male Number of posts: : 187
Age : 29
Location : usa
Guild Tag : LSI
Guild Name : Love sins
Join date : 2010-04-03

How to make your own guitar script Empty
PostSubject: How to make your own guitar script   How to make your own guitar script Icon_minitimeMon May 24, 2010 5:24 pm

Code:
    program Addyguitar;

    procedure welcome;
    begin
    writeln('Addyguitar is made by Addyrulez');
    writeln('See lines 220-230 on how to tell the program what notes to play');
    writeln('You can write notes to play starting from line 231 and up')
    end;

    procedure c1;
    begin
    clickmouse(40,225,true);
    wait(250);
    end;

    procedure csharp;
    begin
    clickmouse(60,225,true);
    wait(300);
    end;

    procedure d1;
    begin
    clickmouse(80,225,true);
    wait(300);
    end;

    procedure dsharp;
    begin
    clickmouse(100,225,true);
    wait(300);
    end;

    procedure e1;
    begin
    clickmouse(120,225,true);
    wait(300);
    end;

    procedure f1;
    begin
    clickmouse(140,225,true);
    wait(300);
    end;

    procedure fsharp;
    begin
    clickmouse(160,225,true);
    wait(300);
    end;

    procedure g1;
    begin
    clickmouse(180,225,true);
    wait(300);
    end;

    procedure gsharp;
    begin
    clickmouse(200,225,true);
    wait(300);
    end;

    procedure a1;
    begin
    clickmouse(220,225,true);
    wait(300);
    end;

    procedure asharp;
    begin
    clickmouse(240,225,true);
    wait(300);
    end;

    procedure b1;
    begin
    clickmouse(260,225,true);
    wait(300);
    end;

    procedure c2;
    begin
    clickmouse(40,245,true);
    wait(300);
    end;

    procedure csharp2;
    begin
    clickmouse(60,245,true);
    wait(300);
    end;

    procedure d2;
    begin
    clickmouse(80,245,true);
    wait(300);
    end;

    procedure dsharp2;
    begin
    clickmouse(100,245,true);
    wait(300);
    end;

    procedure e2;
    begin
    clickmouse(120,245,true);
    wait(300);
    end;

    procedure f2;
    begin
    clickmouse(140,245,true);
    wait(300);
    end;

    procedure fsharp2;
    begin
    clickmouse(160,245,true);
    wait(300);
    end;

    procedure g2;
    begin
    clickmouse(180,245,true);
    wait(300);
    end;

    procedure gsharp2;
    begin
    clickmouse(200,245,true);
    wait(300);
    end;

    procedure a2;
    begin
    clickmouse(220,245,true);
    wait(300);
    end;

    procedure asharp2;
    begin
    clickmouse(240,245,true);
    wait(300);
    end;

    procedure b2;
    begin
    clickmouse(260,245,true);
    wait(300);
    end;

    procedure c3;
    begin
    clickmouse(40,265,true);
    wait(300);
    end;

    procedure csharp3;
    begin
    clickmouse(60,265,true);
    wait(300);
    end;

    procedure d3;
    begin
    clickmouse(80,265,true);
    wait(300);
    end;

    procedure dsharp3;
    begin
    clickmouse(100,265,true);
    wait(300);
    end;

    procedure e3;
    begin
    clickmouse(120,265,true);
    wait(300);
    end;

    procedure f3;
    begin
    clickmouse(140,265,true);
    wait(300);
    end;

    procedure fsharp3;
    begin
    clickmouse(160,265,true);
    wait(300);
    end;

    procedure g3;
    begin
    clickmouse(180,265,true);
    wait(300);
    end;

    procedure gsharp3;
    begin
    clickmouse(200,265,true);
    wait(300);
    end;

    procedure a3;
    begin
    clickmouse(220,265,true);
    wait(300);
    end;

    procedure asharp3;
    begin
    clickmouse(240,265,true);
    wait(300);
    end;

    procedure b3;
    begin
    clickmouse(260,265,true);
    wait(300);
    end;
    begin
    welcome;
    wait(2000)
    //below here you can insert the notes.
    //just write each note on a line of its own
    //don't forget to put a ';' sign at the end of the note
    //and remember for sharp notes write sharp not # (eg. csharp;)
    //if you find the timing not to work for you you can add
    //your own extra delays in between notes of your choice by
    //creating a blank line in between the two target notes
    //and writing 'wait(100);' the time in brackets is specified
    //in milliseconds, so 1000ms= 1 second. Be careful not to make typos
    //when you add your own codes or the script will not function properly.
    //begin writing notes below :)

    //do not write notes beyond this line
    end.


Last edited by Picklefarted on Tue May 25, 2010 5:00 pm; edited 1 time in total
Back to top Go down
http://www.eo-haxerz.darkbb.com
pickle
Moderators
Moderators
pickle


Male Number of posts: : 187
Age : 29
Location : usa
Guild Tag : LSI
Guild Name : Love sins
Join date : 2010-04-03

How to make your own guitar script Empty
PostSubject: Re: How to make your own guitar script   How to make your own guitar script Icon_minitimeMon May 24, 2010 5:25 pm

Sorry I don't know if it will work because of the spaces before every single line! Sad
Back to top Go down
http://www.eo-haxerz.darkbb.com
Mike
Hax0r
Hax0r



Male Number of posts: : 107
Age : 28
Location : NONE
Guild Tag : NONE
Guild Name : NONE
Join date : 2010-03-20

How to make your own guitar script Empty
PostSubject: Re: How to make your own guitar script   How to make your own guitar script Icon_minitimeMon May 24, 2010 7:08 pm

ill test it out now k?
Back to top Go down
pickle
Moderators
Moderators
pickle


Male Number of posts: : 187
Age : 29
Location : usa
Guild Tag : LSI
Guild Name : Love sins
Join date : 2010-04-03

How to make your own guitar script Empty
PostSubject: Re: How to make your own guitar script   How to make your own guitar script Icon_minitimeMon May 24, 2010 7:37 pm

kk
Back to top Go down
http://www.eo-haxerz.darkbb.com
Mike
Hax0r
Hax0r



Male Number of posts: : 107
Age : 28
Location : NONE
Guild Tag : NONE
Guild Name : NONE
Join date : 2010-03-20

How to make your own guitar script Empty
PostSubject: Re: How to make your own guitar script   How to make your own guitar script Icon_minitimeTue May 25, 2010 2:54 pm

works perfectly thanks Very Happy
Back to top Go down
pickle
Moderators
Moderators
pickle


Male Number of posts: : 187
Age : 29
Location : usa
Guild Tag : LSI
Guild Name : Love sins
Join date : 2010-04-03

How to make your own guitar script Empty
PostSubject: Re: How to make your own guitar script   How to make your own guitar script Icon_minitimeTue May 25, 2010 5:00 pm

Np
Back to top Go down
http://www.eo-haxerz.darkbb.com
Mario
Admin



Number of posts: : 5
Join date : 2010-03-22

How to make your own guitar script Empty
PostSubject: Re: How to make your own guitar script   How to make your own guitar script Icon_minitimeTue May 25, 2010 6:45 pm

Lol I was looking for this
Back to top Go down
pickle
Moderators
Moderators
pickle


Male Number of posts: : 187
Age : 29
Location : usa
Guild Tag : LSI
Guild Name : Love sins
Join date : 2010-04-03

How to make your own guitar script Empty
PostSubject: Re: How to make your own guitar script   How to make your own guitar script Icon_minitimeThu May 27, 2010 3:05 pm

Razz
Back to top Go down
http://www.eo-haxerz.darkbb.com
Sponsored content





How to make your own guitar script Empty
PostSubject: Re: How to make your own guitar script   How to make your own guitar script Icon_minitime

Back to top Go down
 
How to make your own guitar script
Back to top 
Page 1 of 1
 Similar topics
-
» Guitar Script Plz
» Need help Mathew
» Bales Script
» Looking for a good script
» I need a script for susan's quest

Permissions in this forum:You cannot reply to topics in this forum
Endless Online Hacks :: SCAR 3.1.3 :: Support-
Jump to: