Why is this code not logging me in?
Code:
program New;
{$DEFINE SMART8}
{$i srl/srl.simba}
Procedure DeclarePlayers;
Begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name := '';
Players[0].Pass := '';
Players[0].Nick := '';
Players[0].Active := True;
End;
begin
SetUpSRL;
ActivateClient;
DeclarePlayers;
LogInPlayer;
end.
It loads SMART but doesn't log me in. I obviously edited out name/pass/nick.
Thanks.
Use the "Reply With Quote" option when responding to my posts so that I get a notification, otherwise I won't respond.