minedas Posted January 17, 2015 Posted January 17, 2015 (edited) So what i want to do is after selecting 1 item i want to interact with other in my inventory Edited January 17, 2015 by minedas
Joseph Posted January 17, 2015 Posted January 17, 2015 after sleecting the first item. For the second item you do getInventory().getItem(name).interact(); //leaving the action blank forces a left click
Joseph Posted January 17, 2015 Posted January 17, 2015 Will try thanks it should work so just report back
minedas Posted January 17, 2015 Author Posted January 17, 2015 (edited) I tried getInventory().getItem(1929).interact("Use"); getInventory().getItem(Clay).interact(); // and its not interacting i changed clay to 434 id and its working ;/ well thanks for help Edited January 17, 2015 by minedas
Brown Posted January 17, 2015 Posted January 17, 2015 I tried getInventory().getItem(1929).interact("Use"); getInventory().getItem(Clay).interact(); // and its not interacting i changed clay to 434 id and its working ;/ well thanks for help When you're interacting with an Item using its name you have to add the String. Ex: getInventory().getItem("Clay").interact();