Okay i got this problem... I can't use :
-AntiRandoms
-LoginPlayer function
This is the error found in the Login :
SCAR Code:
[Runtime Error] : Out Of Range in line 73 in script C:\Program Files\SCAR 3.15\includes\SRL/SRL/Core/Login.scar
Hmmm these are the lines 70-76 of the Login.scar file :
SCAR Code:
OneActive := False;
if LoggedIn = False then
begin;
if (not (Players[CurrentPlayer].Active)) then
begin;
WriteLn('Current player is not Active...');
Repeat
Here is my DeclarePlayers procedure :
SCAR Code:
procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name := 'my name';//your name
Players[0].Pass := 'my pass';//your password
Players[0].Nick := 'my nick';//3-4 letters of your name
Players[0].Active := True;
end;
If there is anything to do or an error i made... please tell.