CreateTest()
set category = "Test Verbs"
var/Item
var/Type = input ("What do you need?" , "Create") in list ("Plant","Cancel")
if(Type == "Plant") Item=input("What do you need?", "Create item") in Plant
new Item (locate(x,y,z))
Trying to figure out how to make the list say only the -names- of the objects rather than the type path, also possibly collapsing lists/tabs:
I'm currently reading the DM guide through and while I have played with dm code for awhile I never properly learned it so i'm still struggling a little with the basics. My problem with -this- bit of functioning code is i'm having trouble coming up with an idea on how to make it tell me just the -names- of objects rather than give me mob/plant/ItemName.
Interface -especially- annoys and confounds me. If you give me some code adjustments that's great but i'm fine with some tips and maybe some things to look up and read into to help me with this.