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 Ring of Dueling Teleport

Joined
Jul 10, 2018
Messages
6
Could you please post your code and details as per How to post a useful bug report
Hi, not to be mean but I already said I am using the same code as in the link I provided.

RuneMate Version: v2.84.5
Affected Games: OSRS
Code Used:
Code:
SpriteItem ring = Equipment.newQuery().names("Ring of dueling(8)").results().first();
if (ring != null) {
   ring.interact("Duel Arena");
}
The ring object is not null BTW.
 
Joined
Aug 23, 2015
Messages
1,970
Hi, not to be mean but I already said I am using the same code as in the link I provided.

RuneMate Version: v2.84.5
Affected Games: OSRS
Code Used:
Code:
SpriteItem ring = Equipment.newQuery().names("Ring of dueling(8)").results().first();
if (ring != null) {
   ring.interact("Duel Arena");
}
The ring object is not null BTW.
Add debugging to make sure the interaction is being executed. AFAIK there are no significant interaction issues atm.
 
cuppa.drink(java);
Joined
Mar 13, 2018
Messages
7,300
@krock69 I just tested your exact code, it worked for me. I ended up in Duel Arena. I'm not sure what advice I can give if the ring is not null. That means it is a ring(8) and it's in your equip. You stepped through it line by line yeah?
 
Also the the thread you're linking is from 2 years ago and marked as resolved so it's unlikely your issue is caused by the same thing/related.
 
Top