Prometheus
12-04-2012, 03:49 AM
After 30 minutes of trying to get this to work and finding solutions, I decided to ask for help. My DeclarePlayers is:
Procedure DeclarePlayers;
begin
HowManyPlayers := 1
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name :='';
Players[0].Pass :='';
Players[0].Active := True;
end;
And I put at the bottom:
begin
SetupSRL;
DeclarePlayers;
LoginPlayer;
MainLoop;
end.
But whenever it's at the login screen, it doesn't type in anything. After a while, it would say in the Debug,
*** Failed To Detect Clients ***
Successfully executed.
I need help :(
Procedure DeclarePlayers;
begin
HowManyPlayers := 1
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name :='';
Players[0].Pass :='';
Players[0].Active := True;
end;
And I put at the bottom:
begin
SetupSRL;
DeclarePlayers;
LoginPlayer;
MainLoop;
end.
But whenever it's at the login screen, it doesn't type in anything. After a while, it would say in the Debug,
*** Failed To Detect Clients ***
Successfully executed.
I need help :(