I'm trying to use air runes on an altar but the bot clicks on the air runes and doesn't use them on the altar.
import com.runemate.game.api.hybrid.entities.GameObject;
import com.runemate.game.api.hybrid.local.hud.interfaces.SpriteItem;
public class Test extends LoopingBot {
GameObject...
I have a item x in my inventory and I need use it on a object y.
I didn't found a direct method like
x.useOn(y);
then I tried some stuff (strange...) like
x.interact("Use");
y.click();
This really didn't worked hahah
So, what a correct way to do this?