Hello gents,
I cannot get anything to work with SRL-6...
Can you guys run this and tell me what happens:
Simba Code:program UltimateCrafter;
{$DEFINE SMART}
{$I SRL-6/SRL.simba}
procedure declarePlayers();
begin
setLength(players, 1);
with players[0] do
begin
loginName := 'username';
bankPin := '';
password := 'password';
isActive := true;
end;
currentPlayer := 0;
end;
begin
SetupSRL;
declarePlayers();
players[currentPlayer].login();
writeln(isLoggedIn(true));
end.





Reply With Quote


