- Joined
- Jul 3, 2020
- Messages
- 4
- Thread Author
- #1
Hello im trying to make emerald necklace at furnace. After i click smelt on furnace i dont know how to click on option Make Emerald necklace.
public void execute() {
if(!Menu.isOpen()) {
Menu.open();
//InterfaceComponent furnaceInterface = Interfaces.newQuery().containers().actions("Emerald necklace").results().first();
final InterfaceComponent furnaceInterface = Interfaces.newQuery().actions("Emerald necklace").results().first();
getLogger().info("Found interfaces: " +furnaceInterface);
if (furnaceInterface != null)
furnaceInterface.click(); //tried .interact("Emerald necklace etc./Make")
else
getLogger().info("FurnaceInterface is null!");
}
I tried many queries not just with .actions but also texts(), tried to find "Make", "Make Emerald Necklace", "Emerald necklace" but i still gets null. Can someone please help ? Should i use different approach than InterfaceComponent? There is no viable learning video except the tree bot that i watched, because every other is outdated. And it also seems like this forum is not very alive. I hope my experience with RuneMate will get better. Thanks for help in advance.
public void execute() {
if(!Menu.isOpen()) {
Menu.open();
//InterfaceComponent furnaceInterface = Interfaces.newQuery().containers().actions("Emerald necklace").results().first();
final InterfaceComponent furnaceInterface = Interfaces.newQuery().actions("Emerald necklace").results().first();
getLogger().info("Found interfaces: " +furnaceInterface);
if (furnaceInterface != null)
furnaceInterface.click(); //tried .interact("Emerald necklace etc./Make")
else
getLogger().info("FurnaceInterface is null!");
}
I tried many queries not just with .actions but also texts(), tried to find "Make", "Make Emerald Necklace", "Emerald necklace" but i still gets null. Can someone please help ? Should i use different approach than InterfaceComponent? There is no viable learning video except the tree bot that i watched, because every other is outdated. And it also seems like this forum is not very alive. I hope my experience with RuneMate will get better. Thanks for help in advance.