I have run in to a small problem.
Simba Code:
Const
TakeBreaks = True; // Take breaks if True
BreakIn = 60; // Minutes before break
BreakFor = 550; // Break time in minuter
HowManyPlayers = 1; // How many players to use THIS LINE
StartPlayer = 0; // Which player to start with
Version = 1.41421356; // Script version
Procedure DeclarePlayers;
Begin
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := StartPlayer;
Players[0].Name := ''; // Username
Players[0].Pass := ''; // Password
Players[0].Pin := ''; // Bank Pin
Players[0].Active :=True; // Use this player? True/False
End;
At the line "HowManyPlayers = 1; // How many players to use" I get an error saying "Duplicate identifier 'HowManyPlayers' at line 10
Compiling failed.".
I think it's something simple but can't see what it could be!