When working on a script, on the of the most boring things about runescape it, it constantly logs you out. Whenever you look up from your code, you are faced with the Welcome Screen. To avoids this I always use this small template. Whenever you run this script, your Player will autologin.
SCAR Code:program LoginSRLPlayer;
{.include SRL.scar}
Procedure MyPlayer;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name := '';
Players[0].Pass := '';
Players[0].Active := True;
Players[0].Nick := '';
end;
begin
SetupSRL;
MyPlayer;
LoginPlayer;
end.





Reply With Quote









Also bullzeye that's cool hehe, I'll try it out sometime 




