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 Absence of Actions in custom interfaces

Joined
Jul 15, 2016
Messages
152
RuneMate Version: v2.4.3
Affected Games: OSRS
If i look at InterfaceComponents of some interfaces through Slash's Open interface explorer there are no Actions where it supposed to be.
I can't do
Code:
Interfaces.newQuery().texts("Some text").results().first().interact("Action name");
for example, cos i can't get list of actions of any of the components - cos list is always empty.
Affected interfaces i've seen:
1) NPC Elnock Inquisitor, his exchange interface for impling jars, InterfaceContainer 540, all of its InterfaceComponents;
2) Exchanging logs for planks, NPC Sawmill operator, north-west of Varrock, InterfaceContainer 403, all of its InterfaceComponents has Action list empty.

I'm sure there are more interfaces with this issue.
@Cloud @SlashnHax
 
Joined
Jan 3, 2018
Messages
1
Bump. I have exactly the same issue as above.

Any ideas?
 
nvm. fixed it by grabbing the Interface ID directly. e.g.

Interfaces.getAt(403, 94).interact("Buy All");
 
Top