This is only for your benifit not being critical in anyway
Things to update:
~~~~~~~~~~~~~~~~~
1.
SCAR Code:
Players[0].Nick := ''; //Anything 2 - 4 characters
^^^ Wrong ^^^ that has to do with finding the name in antirandoms program so it is not Anything 2-4 characters
2.
SCAR Code:
function IsWirlPool: Boolean;
var IWX, IWY: Integer;
begin
Result:= FindColorSpiralTolerance(IWX,IWY,WirlPoolColour,250,145,330,180,12);
end;
If you're going to make your own whirlpool function, why not make it a little more reliable like this:
SCAR Code:
function IsWirlPool(endTolerance : integer): Boolean;
var IWX, IWY, a: Integer;
begin
A := 0;
repeat
wait(900);// It needs some time to wait for the whirlpool to pop up eh?
A := A + 20;// increasing tolerance?
Result:= FindColorSpiralTolerance(IWX,IWY,WirlPoolColour,250,145,330,180,a);
until(result = true) or (a = endtolerance) or (a<endtolerance)
end;
3.
SCAR Code:
Writeln('Fishing spot found 11');
^^ whats up with the eleven
?