
Originally Posted by
NightBlade
Hey I found this great old script that would barely move your mouse to make you stay logged in.. very useful for fishing or wcing...
I'm just wondering if I can use it without ban. Since it's old I'm wondering if it might be easily detected
Here's the script.. it would be great if someone could convert it to SRL so it's the exact same thing

CONVERTED TO SRL:
SCAR Code:
program Online; //CONVERTED TO SRL. TurboBk.
{.include SRL/SRL.scar}
var
x1, y1, xx, yy,
x, y: Integer;
Procedure AFK;
Begin
GetMousePos(xx, yy)
MMouse(xx, yy, 2 + Random(500), 2 + Random(500));
End;
Procedure CheckStatus;
Begin
Wait(1000 + Random(1000));
GetMousePos(x, y);
Status('M1: ' + IntToStr(x) + ':' + IntToStr(y));
Wait(8000 + Random(8000));
GetMousePos(x1, y1);
Status('M2: ' + IntToStr(x1) + ':' + IntToStr(y1));
WriteLn('Mouse started at ' + IntToStr(x) + ':' + IntToStr(y) + ' to ' + IntToStr(x1) + ':' + IntToStr(y1));
If x = x1 Then
Begin
AFK;
End;
End;
Begin
SetupSRL;
ClearDebug;
Repeat
CheckStatus;
Wait(2000+Random(2000));
Until(False);
End.