
Originally Posted by
ralfpker
Yeah, i tried using that as well, the only issue is that if the symbol is covered on the minimap just slightly, its still unable to detect the symbol, even if i set the tolerance for it.
Heres the bit with FindSymbol
Code:
until (FindSymbol(x, y, 'furnace'));
writeln('Moving to Furnace');
Mouse(x, y, 0, -3, True);
SymbolAccuracy := 0.5;
You will want to change the symbol accuracy prior to calling the method to have it be affected. Also, depending on where you are, it simply may be better to use SPS, TPA walking, or ObjDTM walking. Which furnace are you trying to access?
Also as a side note, instead of Mouse(x,y,varx,vary,click) you should use:
Simba Code:
MMouse(x,y,varx,vary);//This is a less bot-like movement, and if you want it even less botlike than this, look into Flight's custom mouse methods.
ClickMouse2(mouse_left);//This is a less bot-like version of clicking the mouse.