ID:269829
 
Can anyone help? I just have basic building verbs the ones you click but do not see on the tab.

Thanks
Make a clicking procedure for your objects and add them to a statpanel. Create a check in the clicking procedure to see if they reside in the src's contents and if they do, create a new object of the same type.
In response to CaptFalcon33035
Can you give me an example?
In response to Kiyo Takamine
Sure thing.
obj/Build
var/owner
Click()
if(!(src in usr)) return
var/obj/Build/R = new src.type
R.loc=usr.loc
R.owner=usr.key
Chair()
icon='chair.dmi'
icon_state="chair"
mob/Stat()
statpanel("Build")
for(var/obj/Build/O in src) stat(O)
mob/Login()
..()
new/obj/Build/Chair(src)


Something like that should work.
In response to Kiyo Takamine
Make a object that looks like what you want to build..Then add it to the players' contents. Also, make their contents visible in a statpanel. THEN, recode the click proc of the object you programmed, to make whatever they wanted to build appear when they click on the object.