Log in

View Full Version : FindSymbol problem...



gwz
11-26-2006, 11:31 AM
When i use FindSymbol function i get an error: "Please enter a valid symbol name." But i use a bank symbol name and in the doc its number one in the whole list. My function looks like this FindSymbol(bank_x, bank_y, 'bank'); If anybody knows how to solve this problem please write the solution. Thanks :). P.S. Sorry fr my bad english :) P.P.S Sorry for writing in incorrect forum :/

Da Der Der
11-26-2006, 03:43 PM
This is only if you are using SRL:

Don't use FindSymbol. I am making a Fire Rune Crafter and the walking procedure that I am using uses symbols to walk. Use GetSymbolColor instead. So, for example do:

GetSymbolColor(x,y,'bank'); <----- This will only find the bank symbol.
Mouse(x+random(4),y+random(3),2,2,true); <----- This will click on the bank symbol for you.


Hope that helped you!

- Da Der Der

WhiteShadow
11-26-2006, 07:12 PM
This is only if you are using SRL:

Don't use FindSymbol. I am making a Fire Rune Crafter and the walking procedure that I am using uses symbols to walk. Use GetSymbolColor instead. So, for example do:

GetSymbolColor(x,y,'bank'); <----- This will only find the bank symbol.
Mouse(x+random(4),y+random(3),2,2,true); <----- This will click on the bank symbol for you.


Hope that helped you!

- Da Der Der

It doesn't really matter.. FindSymbol returns the coords of the symbol.

It says that because you inserted an invalid name in the string param. Open the runescape world map, FindSymbol uses the same name of each symbol as in the world map. Hmm, that's odd.

Try this :

if(FindSymbol(bankx, banky, 'bank'))then