Log in

View Full Version : FindSymbol



The Banker
12-13-2011, 07:52 PM
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 ;-/

Kyle Undefined
12-13-2011, 07:53 PM
Did you spell the Symbol correctly?

Home
12-13-2011, 08:02 PM
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 ;-/

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

The Banker
12-13-2011, 08:11 PM
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

oh damn thank you :-)

Is there a way i can look up what is accepted as entry?

edit: Still doesen't click on the axe shop symbol(bob's axe shop in lumb)