no its still not working.... its weird because i can use other people scripts and they work fine, but this wont even do anythign after i log in, it wont click or anything..... this is what i have now because i wanted to watch it click
SCAR Code:
program AirRunner;
{.include SRL/SRL.scar}
//const
//var
procedure DeclarePlayers;
begin
HowManyPlayers := 1; //total number of players
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0; //First player to run
{fill this out correctly.... and also, if you wanna add more players
uncomment them and change the players above....}
Players[0].Name := 'oooops';
Players[0].Pass := 'lol';
Players[0].Nick := 'veg';
Players[0].Active := True;
{ Players[1].Name := 'name';
Players[1].Pass := 'pass';
Players[1].Nick := 'nick';
Players[1].Active := True;
Players[2].Name := 'name';
Players[2].Pass := 'pass';
Players[2].Nick := 'nick';
Players[2].Active := True;
Players[3].Name := 'name';
Players[3].Pass := 'pass';
Players[3].Nick := 'nick';
Players[3].Active := True; }
NickNameBMP := CreateBitmapMaskFromText(Players[CurrentPlayer].Nick, UpChars);
end;
{procedure LoadBmps;
begin
end;}
procedure ToTheAlter;
begin
RadialRoadWalk(RoadColor, 270, 320, 60, -1, 0);
end;
procedure SetCompass;
begin
MakeCompass('S');
HighestAngle;
end;
begin
ClearDebug;
SetupSRL;
Wait(950);
DeclarePlayers;
LoginPlayer;
Wait(950);
ActivateClient;
SetCompass;
ToTheAlter;
WriteLn('beginning the walk');
end.
and it doesnt.....