Welcome!

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

Sign up now!

Resolved Interactable.interact(String1, String2) not working

Author of MaxiBots
Joined
Dec 3, 2013
Messages
7,032
Doesn't seem to be working anymore. Just ran my tutorial island solver and found that no interactions that require you to use an item on something are no longer working. I'm selecting the item in my invent which works correctly, interact(string, string) then hovers the correct object but doesn't click it, jagex may have changed the arrow thing or something that appears between the two items. @Cloud
 
Joined
Jul 24, 2014
Messages
188
Doesn't seem to be working anymore. Just ran my tutorial island solver and found that no interactions that require you to use an item on something are no longer working. I'm selecting the item in my invent which works correctly, interact(string, string) then hovers the correct object but doesn't click it, jagex may have changed the arrow thing or something that appears between the two items. @Cloud
Does regular interaction(String) still work? (read my topic @ client support section)
 
Author of MaxiBots
Joined
Dec 3, 2013
Messages
7,032
Does regular interaction(String) still work? (read my topic @ client support section)
Yeah that's how i interact with trees and such, it's just using an item on something that seems to have stopped working.
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
As of a couple updates ago I've began to force exact matches and currently the arrow is interfering with the regex that I'm generating.
 
Author of MaxiBots
Joined
Dec 3, 2013
Messages
7,032
As of a couple updates ago I've began to force exact matches and currently the arrow is interfering with the regex that I'm generating.
Any idea when this might be fixed?
 
Author of MaxiBots
Joined
Dec 3, 2013
Messages
7,032
Use and Fire. It used to work, i was just making a new account and noticed it stopped working. It clicks on the fish fine, but it can't click on the fire to cook them, it just hovers it.
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
Well if an item is selected the action is Use and the target is like -> Fire. And as I said, we now enforce exact matches.
 
Author of MaxiBots
Joined
Dec 3, 2013
Messages
7,032
Well if an item is selected the action is Use and the target is like -> Fire. And as I said, we now enforce exact matches.
Okay so you're saying the target name must now contain the arrow?
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
Okay so you're saying the target name must now contain the arrow?
If the action you're trying to do includes the arrow then yes, you can see the exact values in the misc tab of the development toolkit
 
Author of MaxiBots
Joined
Dec 3, 2013
Messages
7,032
If the action you're trying to do includes the arrow then yes, you can see the exact values in the misc tab of the development toolkit
Okay thanks bro, that should fix it up.
 
Author of MaxiBots
Joined
Dec 3, 2013
Messages
7,032
For anyone who's having trouble with this, you now have to include the name of the item, the entity the item is being used on, as well as the arrow. Here's an example. After performing .interact("Use") on some shrimp i then need to perform the following interaction to cook it on the fire fire.interact("Use", "Raw shrimps -> Fire")
 
Top