I am getting an access violation reading:
[Runtime Error] : Exception: Access violation at address 00724393 in module 'scar.exe'. Read of address 00000000 in line 92 in script C:\Program Files\SCAR 3.12\includes\SRL\SRL\skill\Fishing.scar
When I run:
SCAR Code:
program Test;
{.include SRL\SRL.scar}
{.include SRL\SRL\skill\Fishing.scar}
procedure DeclarePlayers;
begin
HowManyPlayers := 1;
CurrentPlayer := 0;
NumberOfPlayers(HowManyPlayers);
Players[0].Name := 'x';
Players[0].Pass := 'x';
Players[0].Nick := 'apollo';
Players[0].Active := True;
end;
begin
SetupSRL;
DeclarePlayers;
ActivateClient;
LoginPlayer;
Wait(500);
HandleWhirlPool;
end.