Welcome!

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

Sign up now!

Question Make-X interface in OSRS

Joined
Jan 31, 2017
Messages
4
Hey guys,


In the documentation I noticed the page for Make-X says RS3 only. I'm trying to make a simple fletcher and I was wondering if someone could explain how to handle the make-x window that pops up? It defaults to "make all" so all I need to do is click on the bow that I want to make, but I just can't figure out how to code that action from the documentation.


Thanks
 
Joined
Aug 23, 2015
Messages
1,961
You need to use custom interface queries. Cloud is working on adding Make-X support to OSRS since the update on thursday standardized the menu, but it's not done yet.
 
Joined
Dec 20, 2016
Messages
37
use visual developer to identify the InterfaceComponent. If there is no InterfaceComponent search for an InteractableRectangle.

to use InferfaceComponent:

InterfaceComponent craftButton = Interfaces.getAt(x,y,z?); where x,y and possibly z are the integers from identifying the component.
To click this button:
if (Mouse.click(craftButton)) {
// we clicked the button
}

for InteractableRectangle:
InteractableRectangle ir = new InteractableRectangle(x,y,w,h);
can also
Mouse.click(ir);
 
Joined
Oct 24, 2017
Messages
4
use visual developer to identify the InterfaceComponent. If there is no InterfaceComponent search for an InteractableRectangle.

to use InferfaceComponent:

InterfaceComponent craftButton = Interfaces.getAt(x,y,z?); where x,y and possibly z are the integers from identifying the component.
To click this button:
if (Mouse.click(craftButton)) {
// we clicked the button
}

for InteractableRectangle:
InteractableRectangle ir = new InteractableRectangle(x,y,w,h);
can also
Mouse.click(ir);
You don't even need to do that lol, it's in the API
 
Top