ID:159938
 
How can I make it were.

Jujitsubb777 made a wall
Freddy23523542 wants to take down that wall.
but only Jujitsubb777 can take down the wall.

Basically, How can I make it were only juji and admins can take it down.

mob/verb
RegWall()
set category = "Create"
var/turf/Walls/Dense1Opac1/Wall/Wall1/S = new(loc)
view() << "[src] creates \an [S]."

^I want it like that but make it were it can also be destroyed by the usr and admins.
Since the only way to truly destroy a turf is to resize the map, what you need to do is create a new turf in its place, making the new one an open space instead of a wall.

Lummox JR
In response to Lummox JR
I am making the objects... obj/...
I just want to know basically what to do for what I mentioned..
In response to Jujitsubb777
You set a variable with the owner of that object's name. Then when they try to delete it, loop through all of the mobs in the world and see if the owner of that turf matches the one trying to delete it, or if that person is an admin.
In response to Andre-g1
Im confused 0.0
In response to Jujitsubb777
Look up the for() proc and if() statement.