blackfire553
06-20-2011, 08:04 PM
I can't get this script to return any usable numbers, im trying to write a fishing script for draynor village. I copied the exact hue tolerance sat and color from MSI fishing, but when i use them i get no results. At about 22 tolerance it starts giving me ALL the points on the map, from 4,4 to 4,337 but below that i cant get any colors besides starting at 4,4 at all.
i added writeln procedures to MSI Fishing to see what points i got and it gives me tons of accurate points with the same values.
When i used ACA V2 to get my own colors etc, i still have the same problem.
program new;
{$DEFINE SMART}
{$i SRL/SRL.scar}
{$i srl/srl/misc\stats.simba}
{$i Reflection\Reflection.Simba}
const
SMART_WORLD = 152;//World
SMART_MEMBER = false;//Members
SMART_SIGNED_CLIENT = true;//Signed/unsigned
SMART_SUPER_DETAIL = false;//Super detail
var
FishPoints : TPointArray;
i : integer;
begin
Smart_Server := SMART_WORLD;
Smart_Members := SMART_MEMBER;
Smart_Signed := SMART_SIGNED_CLIENT;
Smart_SuperDetail := SMART_SUPER_DETAIL;
SetupSRL;
SetupReflection;
setToleranceSpeed2Modifiers(0.26,0.62);
writeln('Finding Colors');
FindColorsTolerance(FishPoints,11050135,MSX1,MSY1, MSX1,MSY2,21);
for i := 0 to high(FishPoints) do
writeln('Point: ' + inttostr(FishPoints[i].x) + ' ' + inttostr(FishPoints[i].y));
end.
i added writeln procedures to MSI Fishing to see what points i got and it gives me tons of accurate points with the same values.
When i used ACA V2 to get my own colors etc, i still have the same problem.
program new;
{$DEFINE SMART}
{$i SRL/SRL.scar}
{$i srl/srl/misc\stats.simba}
{$i Reflection\Reflection.Simba}
const
SMART_WORLD = 152;//World
SMART_MEMBER = false;//Members
SMART_SIGNED_CLIENT = true;//Signed/unsigned
SMART_SUPER_DETAIL = false;//Super detail
var
FishPoints : TPointArray;
i : integer;
begin
Smart_Server := SMART_WORLD;
Smart_Members := SMART_MEMBER;
Smart_Signed := SMART_SIGNED_CLIENT;
Smart_SuperDetail := SMART_SUPER_DETAIL;
SetupSRL;
SetupReflection;
setToleranceSpeed2Modifiers(0.26,0.62);
writeln('Finding Colors');
FindColorsTolerance(FishPoints,11050135,MSX1,MSY1, MSX1,MSY2,21);
for i := 0 to high(FishPoints) do
writeln('Point: ' + inttostr(FishPoints[i].x) + ' ' + inttostr(FishPoints[i].y));
end.