I get:
Code:
[Runtime Error] : Exception: Access violation at address 007290FF in module 'scar.exe'. Read of address 00000000 in line 92 in script C:\Program Files\SCAR 3.14\includes\SRL\SRL\Skill\Fishing.scar
Wich is in here:
SCAR Code:
{*******************************************************************************
procedure HandleWhirlPool;
By: Dankness
Description: Finds and Handles Whirlpools by Standing still and waiting
*******************************************************************************}
procedure HandleWhirlPool;
var
x, y: Integer;
begin
if (FindDTM(WhirlPoolDTM, x, y, MSX1, MSY1, MSX2, MSY2)) then //This is line 92
begin
Status('Whirlpool found!');
Inc(WhirlPools);
Mouse(647, 82, 2, 2, True);
FTWait(50 + Random(15));
repeat
HoverSkill('fishing', False);
if (not (LoggedIn)) then Exit;
FTWait(2 + Random(2));
until (not (FindDTM(WhirlPoolDTM, x, y, MSX1, MSY1, MSX2, MSY2)));
end;
end;
Help please..