ID:167210
 
mob/Building
verb
Wall()
set category = "Build"
src.owner = "[usr.key]"
new/obj/Wall(usr.loc)

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
obj
var/owner = ""
icon = 'tiles.dmi'
Wall
icon_state = "1"
density = 1
opacity = 1


<dm/>
well how do i make it so if the LVL var is greater than 10 they get this verb on login
Not exactly sure what you mean, who's level var? I am guessing the person logging in.

mob/Login()
..()
if(src.lvl > 10)
src.verbs += /mob/Building/verb/Wall


If that's not what you wanted, please give a better description.

-Doh
In response to XxDohxX
Also, the building thing is pure bogus. src does NOT mean the wall.
In response to Mysame
Heh, you are totally correct, I didn't even look at that part.

-Doh