August 17, 20178 yr trying to make a glove maker but when i go it goes to the interface it just scrolls over gloves and doesnt click anything. if (inventory.contains("Thread") && inventory.contains("Needle")){ if (inventory.contains("Leather")){ interactItems("Needle", "Leather"); sleep(random(500,800)); RS2Widget craft = getWidgets().get(154, 127); if (craft != null){ craft.interact("Make All pairs of"); sleep(random(1000,2000)); } any help is appreciated
August 17, 20178 yr The string values for interact changed behind the scenes. You gotta find out the new string value of the interact from tooltip.
August 17, 20178 yr Author 52 minutes ago, dreameo said: The string values for interact changed behind the scenes. You gotta find out the new string value of the interact from tooltip. What is tooltip? How can I fix this?
August 17, 20178 yr craft.interact(widget.getTooltip()); Make sure the widget you are using has the correct tooltip you want, use the Widget Debugger to determine if it does. There will be like 4 widgets stacked on each other, you have 154, 127 so it could be that, 154, 126; 154, 125; or 154, 123. Here is an example for Smithing interface:
August 18, 20178 yr 4 hours ago, Zezurge said: craft.interact("Make All pairs of"); Should be: craft.interact("Make All pairs of Leather gloves");
Create an account or sign in to comment