Hi,
I have been reading all the tutorials and have messed around with mayn of the free SRL scripts generously made by this awesome community.
Any ways, I was following a tutorial which tought me to make this script:
I was wondering how I make it type in the actual runescape client.....if there is a tutorial on how this is done, please link me to it.Code:Program Autotyper;
var message: string;
Procedure setup;
begin
message:='hello!!!'
end;
procedure typing;
begin
sendkeys(message + chr(13));
end;
begin
setup;
repeat
typing;
wait(2000)
until(false)
end.
Right now it only types in Scar where the cursor is located.
thanks,
mikev
