SCAR Code:
{=========================================================================
[ Auto Talker by Kevin0095
[
[
[ NAME : Auto Typer
[ WRITER : Kevin0095
[ Version : 1.2
[ CATEGORY : AutoTalking
[ DESCRIPTION : Autotypes up to 4 messages
[ AUTOCOLOR : No
[ NOTES : Report any bugs please and enjoy!
[ CONTACT : under post on forums
[ SRL REV. : 4 Scar 3.12c// Doesnt really matter it works in all of them.
[
[
[=========================================================================]
program AutoTyper;
{.include srl/srl.scar}
const
message1='Bank Sale!'; //Type your message here
message2='Includes Addy Platemail, Rune Scimi';//2nd message if you only want
//1 message delete this line and 3 and 4
message3='Also has rune battle axe';//3rd message if you only want 2 messages
//delete this whole line and 4
message4='Come here!';//4th message If you only want 3 messages delete
//this whole line
procedure typer;
begin
repeat
wait(5000) //this is the amount of milliseconds wait time
//inbetween each messages.
typesend(message1)
typesend(message2)//If you deleted message 2 above delete this line
typesend(message3)//If you deleted message 3 above delete this line
typesend(message4)//if you deleted message 4 above delete this line
until(false)
end;
begin
ActivateClient;//Goes to runescape window automatically
typer;
end.
I added 4 things that might help you,
1. I added repeat in the right place so it can repeat the messages.
2. I added ActivateClient you know what I was telling you about.
3. I tryied to improve your standards im not 100% sure they are correct.
4. It doesn't really matter which scar or srl you use it should work in all because these are simple commands.
Edit:
Look at my autotalker maybe it will help you.
Click Here