i just created my FIRST SCRIPT
i tried to make many scripts like cooker and stuff but thats too advanced and i never got anywhere
so i decided to make an easier script, an auto talker... i know theres many, but it was easiest one
IT WORKS!!!
i dont know if it will work in rs lol, just tested it in notepad, u have to click on notepad as soon as u start it, otherwise it will autotype in the scar script, can someone help me to make it so it selects the window specified when it starts?
lol no antirandoms... who needs em?
SCAR Code:
{
this is my well-good but simple working auto tlker
thank you for all them wonderfully helpful tuts out there!!!
Made by:
|||| |||||||| || || || || || || ||| ||| |||||||||| ||||||||||||
|| || || || ||| || ||| || || || |||| |||| || ||
|| || || || |||| || |||| || || || || || || || || ||
|| || |||||||| || || || || || || |||| || || || || |||||| ||
|| || || || || || || || || || || || ||| || || ||
|| || || || || || || || || || || _ || || || ||
|| || || || || |||| || |||| || / \ || || || ||
|||| || || || ||| || ||| || \ _ / || || |||||||||| ||
}
program DannymetsAutotalker;
{.include SRL/SRL.scar}
const
//this is the setup, between lines 24 and 36
firstmsg = 'type message 1 here' ; // message number 1 goes here
secondmsg = 'type message 2 here' ; // message number 2 goes here
thirdmsg = 'type message 3 here' ; // message number 3 goes here
fourthmsg = 'type message 4 here' ; // message number 4 goes here
fithmsg = 'type message 5 here' ; // message number 5 goes here
sixthmsg = 'type message 6 here' ; // message number 6 goes here
seventhmsg = 'type message 7 here' ;// message number 7 goes here
eigthmsg = 'type message 8 here' ; // message number 8 goes here
ninethmsg = 'type message 9 here' ; // message number 9 goes here
tenthmsg = 'type message 10 here' ; // message number 10 goes here
WaitT = 5000; //the time between the messages are sent with a 1.5 second random added
//DO NOT TOUCH THE BELOW unless u know what ur doing =P
Procedure autotalk;
begin
TypeSend (firstmsg);
wait((WaitT)+random(1500));
TypeSend (secondmsg);
wait((WaitT)+random(1500));
TypeSend (thirdmsg);
wait((WaitT)+random(1500));
TypeSend (fourthmsg);
wait((WaitT)+random(1500));
TypeSend (fithmsg);
wait((WaitT)+random(1500));
TypeSend(sixthmsg);
wait((WaitT)+random(1500));
TypeSend(seventhmsg);
wait((WaitT)+random(1500));
TypeSend(eigthmsg);
wait((WaitT)+random(1500));
TypeSend(ninethmsg);
wait((WaitT)+random(1500));
TypeSend(tenthmsg);
wait((WaitT)+random(1500));
end;
begin
wait(5000);
SetUpSRL;
Repeat
autotalk;
until(false)
end.
just finished f key script!! use f1 - f10 for each message. thanx a very lot to jad who helped me a lot to do this!! 
SCAR Code:
{
this is my well-good but simple working auto tlker
thank you for all them wonderfully helpful tuts out there!!!
Made by:
|||| |||||||| || || || || || || ||| ||| |||||||||| ||||||||||||
|| || || || ||| || ||| || || || |||| |||| || ||
|| || || || |||| || |||| || || || || || || || || ||
|| || |||||||| || || || || || || |||| || || || || |||||| ||
|| || || || || || || || || || || || ||| || || ||
|| || || || || || || || || || || _ || || || ||
|| || || || || |||| || |||| || / \ || || || ||
|||| || || || ||| || ||| || \ _ / || || |||||||||| ||
}
program DannymetsAutotalker;
{.include SRL/SRL.scar}
const
firstmsg = 'type message 1 here' ; // message number 1 goes here press f1
secondmsg = 'type message 2 here' ; // message number 2 goes here press f2
thirdmsg = 'type message 3 here' ; // message number 3 goes here press f3
fourthmsg = 'type message 4 here' ; // message number 4 goes here press f4
fithmsg = 'type message 5 here' ; // message number 5 goes here press f5
sixthmsg = 'type message 6 here' ; // message number 6 goes here press f6
seventhmsg = 'type message 7 here' ;// message number 7 goes here press f7
eigthmsg = 'type message 8 here' ; // message number 8 goes here press f8
ninethmsg = 'type message 9 here' ; // message number 9 goes here press f9
tenthmsg = 'type message 10 here' ; // message number 10 goes here press f10
procedure autotalk;
begin
if(IsFKeyDown(1))then
begin
TypeSend(firstmsg);
end;
if(IsFKeyDown(2))then
begin
TypeSend(secondmsg);
end;
if(IsFKeyDown(3))then
begin
TypeSend(thirdmsg);
end;
if(IsFKeyDown(4))then
begin
Typesend(fourthmsg);
end;
if(IsFKeyDown(5))then
begin
Typesend(fithmsg);
end;
if(IsFKeyDown(6))then
begin
TypeSend(sixthmsg);
end;
if(IsFKeyDown(7))then
begin
TypeSend(seventhmsg);
end;
if(IsFKeyDown(8))then
begin
TypeSend(eigthmsg);
end;
if(IsFKeyDown(9))then
begin
Typesend(ninethmsg);
end;
if(IsFKeyDown(10))then
begin
Typesend(tenthmsg);
end;
end;
begin
SetupSRL;
repeat
autotalk;
until(false)
end.