I got bored and just though of a script in my head so here it is
YOU'LL NEED SCAR DIVI DOWNLOAD IT AT FREDDY1990.COM
Code:
program AutoTyper;
const
Message1='You guys are noobs.';
Message2='Wait, am I a noob?';
procedure Typing;
wait(3000) //You have 3 seconds to select the Runescape window.
SendKeys(Message1+chr(13)); //chr(13) is enter button.
wait(500) //Half a second.
SendKeys(Message2+chr(13));
end;
begin
repeat Typing;
until(false)
end.
What does this do?
Well wait() is a command for waiting a few second(s). This command is used in some bots (I think it's in JAVA too). You have to count in MS so..
wait(1) = 1/100 of a MS
wait(10) = 1/10 of a MS
wait(100) = 1 whole of a MS
wait(1000) = 1 second(s)
and so on.
const is just for making a list for later instead of typing it in the SendKeys() thing. If you did type it in, it would come out as SendKeys('Message Here'+chr(13));
You have to have a procedure if you want to use a const or a repeat. repeating (false) means endless, so you have to stop it by pressing Ctrl+Alt+S.
To edit the text, edit the words inside of the ' signs i.e. Message1='Newb'; to Message1='Newbie';
if you would like more scripts please feel free to PM or to ask through this topic.