
Originally Posted by
The Banker
I need help with the FindSymbol function:
What can i enter there?
I thought something about that:
procedure WalkToBob;
var
x, y: Integer;
begin
Wait(1000+RandomRange(200, 700));
FindSymbol(x, y, 'axeshop');
Mouse(x, y, 5, 5, true);
end;
--> Compiled successfully in 671 ms.
But it doesent click anything, but there IS the axeshop-symbol on the minimap... need help^^
edit: Wanted it to walk this way because with sps it also didn't click anything at all ;-/
Simba Code:
procedure WalkToBob;
var
X, Y: Integer;
begin
Wait(1000+RandomRange(200, 700));
FindSymbol(x, y, 'axe shop');
Mouse(X, Y, 5, 5, True);
end;
You just spelled axe shop wrong.
~Home