ok well here's a little simple but very effective autotalker. i used a pretty cool talk procedure(at least i think its cool). just test it out and tell me what you think please
SCAR Code:
{============================================================================*
| |
| NAME : Mjordans Simple Autotalker |
| WRITER : Mjordan |
| CATEGORY : Talker |
| DESCRIPTION : Types So You Wont Have To |
| USAGE : To Type For You |
| CONTACT : MSN: [email]RunescapePasswords_@msn.com[/email] |
| AIM: mjordan7468 |
| NOTES : To Stop Script Press F12 |
| |
*============================================================================*
| ______ ___ __ __ |
|/\ __ \ / _ \ /\_\ ______ _ ____ \ \ ______ ___ |
|\ \ \ \ \/ / \ \ \/_/ /\ __ \ /\`'___\ _____\ \ /\ __ \ /' __`\ |
| \ \ \ \ / \ \ \ __ \ \ \ \ \\ \ \/ /\ __ \ \ \ \ \_\ \ /\ \/\ \ |
| \ \ \ \/ \ \ \ /\ \ \ \ \_\ \\ \ \ \ \ \_\ \ \ \ __ \\ \ \ \ \ |
| \ \_\ \ \_\\ \ \ \ \_____\\ \_\ \ \_____\ \ \ \_\ \_\\ \_\ \_\ |
| \/_/ \/_/ \ \ \ \/_____/ \/_/ \/_____,\_\ \/_/\/_/ \/_/\/_/ |
| __ \ \ \ |
| /\ \__\/ / |
| \ \_____/ |
| \_____/ |
| |
*============================================================================*
| |
| ++++++++++++[Rs2][SRL] Autotalker [SRL][Rs2]++++++++++++ |
| |
*============================================================================*
| INSTRUCTIONS |
*============================================================================*
| |
| 1.Type In What You want To Say On Lines 59-62 |
| 2.Drag Crosshair To Runescape Client |
| 3.Press Run Button |
| |
*============================================================================*
| Version History |
*============================================================================*
| |
| Version 1.0 - Completed And Released |
| Version 2.0 - Reworked To Make It Less Dectable |
| And Made Using SRL |
| Version 2.5 - Just Added A Few Little Things Here And There |
| |
*============================================================================|
| |
| !!!I Am NOT Responsible If Any Of Your Characters Get Banned!!! |
| |
*============================================================================}
program Autotalker;
{.Include SRL/SRL.Scar}
{.include srl\srl\extended\xtext.scar}
const
//type the messages you want to say here
msg1 ='white:wave:selling coal 250ea';
msg2 ='selling coal 250ea-mjordan';
msg3 ='white:coal 250gp each!!!';
msg4 ='selling coal~mjordan~';
procedure credits;
begin
writeln('<========================================================>')
writeLn(' Thankyou for using Mjordans')
writeLn(' Simple Autotalker.')
writeLn('Big thanks to Rons Autotalker Where I Got Some Ideas From,')
writeLn('All Of The Tuts With Which I Used That Helped Me Lots,')
writeLn('And Most Of All Thanks To Kaitnieks For Creating SCAR')
writeLn('<========================================================>')
end;
//procedure SendMyText(Text: String);
//end;
procedure RandomTalk;
begin
case Random(4) of
0 : SendMyText(msg1);
1 : SendMyText(msg2);//randomly types the messages. is very human like.
2 : SendMyText(msg3);
3 : SendMyText(msg4);
End;
End;
begin
setupsrl;
credits;
activateclient;
wait(200);
repeat
RandomTalk;
Wait(2000+Random(3000));
Until(IsFKeyDown(12))//if you want to end the script just press F12
End.