ID:1983380
 
(See the best response by Kaiochao.)
Code:
var/obj/items/Shirt = new(src)


Problem description:Is there any other way to create an obj other than this?
Because if I use this when I run the game it creates the obj but doesn't give it the verbs it has coded under it..
Aside if I map it myself somewhere the obj has the verbs..


Best response
You're creating a variable called "Shirt" with the type /obj/items. You're not actually creating a Shirt.

If you don't need to access it after it's created, you don't need to put the new object into a variable:
new /obj/items/Shirt (src)
Thank you very much :)