May 24, 20178 yr I'm currently working on an alching script, i have the majority of the script done I just want to create a gui that has a text box where i can enter an item ID and have the bot alch that item. I know how to create interactible drop down menus (as seen explvs gui tutorial) but I've been having trouble finding up-to-date info on text boxes. Does anyone know of any tutorials i can look at or know how to code the text box?
May 24, 20178 yr You can do this as a ghetto way to get them item id without having to create a gui. Put this in the onStart() method. itemID= JOptionPane.showInputDialog("Enter item ID"); do{ sleep(1000); }while(itemID == null); then use Integer.parseint(itemID); to convert to int