Set
And the start player should be '0'.
Then goto the procedure
SCAR Code:
procedure DeclarePlayers;
There should be something like
SCAR Code:
Players[0].Name:='' ;
Players[0].Pass:='' ;
Players[0].Nick:='' ;
Players[0].Active:= True ;
Players[0].Integer1:=100 ;
Players[0].String1:= '' ;
Players[1].Name:='' ;
Players[1].Pass:= '' ;
Players[1].Nick:='' ;
Players[1].Active:=True; ;
Players[1].Integer1:=5; ;
Players[1].String1:='';
^^ That would be 2 players. And to do only 1 player, you have to get rid of the second one. So delete the one that says Players[1]. Then all you should have is something like
SCAR Code:
Players[0].Name:='' ;
Players[0].Pass:='' ;
Players[0].Nick:='' ;
Players[0].Active:= True ;
Players[0].Integer1:=100 ;
Players[0].String1:= '' ;
Then try running it. ^_^