ID:178426
 
build verb:

var/list/BuildItems = list("wall","redcobble","walledge","fence","flower","carpet" ,"path","plant","curtains","brush","chair")
mob/proc/Build(item in BuildItems)
switch(item)
if("wall") new/turf/wall(usr.loc)
if("redcobble") new/turf/redcobble(usr.loc)
if("walledge") new/turf/walledge(usr.loc)
if("fence") new/turf/fence(usr.loc)
if("flower") new/turf/flower(usr.loc)
if("carpet") new/turf/carpet(usr.loc)
if("walledge") new/turf/walledge(usr.loc)
if("plant") new/turf/plant(usr.loc)
if("brush") new/turf/brush(usr.loc)
if("chair") new/turf/chair(usr.loc)

***********************ban verb*************************************************:
var/list/banned_people = list()


mob
Login()
if(client.address in banned_people)
src << "You have been banned. Jerk."
del(src)

mob/proc/ban(mob/M in world)
set category = "GM verbs"
if(!M.client)return
world << "[M] was banned by [src]!"
banned_people += M.client.address
del(M)

mob/proc/unban(unbanned in banned_people)
set category = "GM verbs"
src << "IP address [unbanned] unbanned."
banned_people -= unbanned
why did you post this three times..?
In response to NilFisk
laggy comp so the screen didnt didnt change so i thought it didnt work :(