Ok, jukka asked me to post the hole script..
PROBLEM; Scar freezes when i try to run.
SCAR Code:
program net;
{.include srl/srl.scar}
var P2,I: integer;
const
Moreantiban=true;// Do you want extra antiban?basically moving the camera more often , ect..
Procedure DeclarePlayers;
begin
HowManyPlayers:= 1; // Number of players you are running
CurrentPlayer:= 0; // Starting player
NumberOfPlayers(HowManyPlayers) // Don't touch
Players[0].Name:= 'Username'; // Name of your RuneScape account
Players[0].Pass:= 'Password'; // Password to your RuneScape account
Players[0].Nick:= 'sern'; // 3-4 chars of your RuneScape-Accounts name. No capitals or numbers!
Players[0].Pin:= 0000; // Bank-pin, if any
Players[0].Active:= True; // True to use account, false to skip
{ Players[1].Name:= '';
Players[1].Pass:= '';
Players[1].Nick:= '';
Players[1].Pin:= 0000;
Players[1].Active:= True;
Players[2].Name:= '';
Players[2].Pass:= '';
Players[2].Nick:= '';
Players[2].Active:= True; }
{ You can add more players if you like. }
end;
Procedure HighestAngle;
var I: Integer;
begin
KeyDown(VK_UP)
Wait(1100)
for I:= 0 to 4 do
begin
Wait(random(50))
end;
KeyUp(VK_UP)
end;
Procedure Moreantibans;
begin
Highestangle;
if moreantiban then
begin
KeyDown(VK_RIGHT)
wait(444 + Random(508))
KeyUp(VK_RIGHT)
wait(222 + Random(900))
KeyDown(VK_LEFT)
wait(333 + Random(900))
KeyUp(VK_LEFT)
end;
end;
begin
Setupsrl;
declareplayers;
loginplayer;
moreantibans;
end.
I didnt want to somone to take it.. i know i sound noobish