Show Icon of obj in build tab in Developer Help
|
|
Code:
mob
Stat() if(showbuild) statpanel("Build") stat(src,Click(/mob/proc/Red_Wall)) stat(src,Click(/mob/proc/Red_X_Wall)) var const showbuild = 1
mob proc Red_Wall() if(usr.build==1) var/W = new/obj/walls/Red_Wall(usr.loc) W:owner = "[usr.key]" else usr << "You can't build here" Red_X_Wall() if(usr.build==1) var/W = new/obj/walls/Red_X_Wall(usr.loc) W:owner = "[usr.key]" else usr << "You can't build here"
|
Problem description:When I am playing the game the build tab is there but there is nothing in it
|
Lummox JR