Runemate seems to misclick a lot while dropping inventory items. I don't normally mind, in fact I think it's a good anti-pattern measure, however sometimes it will accidently select an item and get stuck.
How can I check if an item in my inventory is selected? And how can I deselect an item...
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?