Hello, I have just created my first script (an auto-talker). I do not know why it will not type what I have specified for it to in runescape.
This is my script:
//Souppy's first auto talker
program Autotalker;
const
NumberOfMessages= 3; // Number of Messages
Message1= ('...') // Type your 1st message here
;Message2= ('...') // Type your 2nd message here (Only fill in if you need)
;Message3= ('...') // Type your 3rd message here (Only fill in if you need)
;Time1= (1000 + Random(250)); // Wait time between each message (in Milliseconds)
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
procedure Write;
begin
repeat;
Wait (Time1)
TypeSend (Message1)
if (NumberOfMessages=2) then
begin
TypeSend (Message1)
Wait (Time1)
TypeSend (Message2)
Wait (Time1)
end;
if (NumberOfMessages=3) then
begin
TypeSend (Message1)
Wait (Time1)
TypeSend (Message2)
Wait (Time1)
TypeSend (Message3)
Wait (Time1)
end;
until (False);
end;
begin;
Writeln ('Please do remember this is my first script')
end.
Any ideas why it doesn't type into runescape ?


Reply With Quote







