I've got a small problem...
Ok...
I decided to mark my own procedure down in the Login procedures found in the "core" file of SRL.
This is the procedure:
SCAR Code:
procedure LogMeOut;
begin
wait(500+random(200));
if(InChat('pullout'))then
begin
Logout;
end;
end;
This is the procedure in action:
SCAR Code:
program New;
{.include SRl/SRL.scar}
begin
SetupSRL;
repeat
LogMeOut;
wait(500+random(200));
until(false)
end.
What my script SHOULD do:
Scan the last chat message area every 500-700 MiliSeconds for the word "pullout." Then it will log the character out.
What my script does:
Only scans the last chat message area on startup, and won't scan again unless I stop and start the script again.
Please help me :)