I'm creating a new RPG, but I came across a snag. I wan't to create an object through a verb, then imbue stats into that object via the verb. For example, I would like it to show on the objects name who created it. Any suggestions? All help appriciated.
James
|
|||||||||||||||||||||||||||||
var/obj/object/O = new(usr.contents)
var/N = O.name
O.name = "[usr.name]'s [N]"
Or were you looking for something more complicated?