Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Bug RS3 Item Interaction failing without a reason

Java Warlord
Joined
Nov 17, 2014
Messages
4,906
Sometimes the current session of the bot won't interact with some spriteitems in inventory.
I double checked the interaction string and the item is not null either.

Only sometimes the bot session is "infected" with this bug, and calling SpriteItem#interact(String action) will immediately return false.

Using modern interface.

@Cloud
 
@Cloud it still persists.
 
Seems to happen to NPCs aswell.
 
12 year old normie
Joined
Jan 8, 2015
Messages
2,769
Code:
if (desintegrateSpell != null) {
                System.out.println("not null");
                if (desintegrateSpell.interact("Activate")) {
                    System.out.println("ready to interact with spriteitem");
                    itemsToDestroy.interact("Activate Disassemble -> " + item);
                }
            }

Happens to me too. interact("Activate") doesn't work, but it does print out not null.

@Cloud
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
Uhm, can you provide more debugging information?
 
Specifically information related to what is reported as the visibility of the item, whether or not the backpack is considered open, if it's not open is attempting to open it not working, etc.
 
Java Warlord
Joined
Nov 17, 2014
Messages
4,906
Uhm, can you provide more debugging information?
 
Specifically information related to what is reported as the visibility of the item, whether or not the backpack is considered open, if it's not open is attempting to open it not working, etc.
Couldnt manage to reproduce the bug yet
 
Top