ID:273934
 
This might be a stupid question, but I don't know.

So I already know it should be like this:

mob
Build
verb
Wall()


But if you wanted to "create" it would it have any relation to this?

Create(O as null|anything in typesof(/obj,/mob,/turf))
set category = "Admin"
set name = "Create"
set desc="(object) Create Anything"

if(!O)
return

var/item = new O(usr.loc)
usr << "<font color=blue>You create a(n) [item:name]."
view(11) << "<font color=blue>[usr] created a(n) [item:name] with his mind."


What I'm really asking is, could I look through this and be able to solve my question? And if not, what would give me a hint in doing so?
Nevermind, I got it with this:

mob/verb
Wall()
set category = "Walls"
new/turf/Wall(usr.loc)