ID:166041
 
everytime i make a second statpanel for my inventory (together with my stats panel) my statpanel for my stats dissappears..


There's more than one way. First is the defined panel:

mob
Stat()
statpanel("Stats")
stat("Name:",src.name)
statpanel("Inventory",src.contents)
stat("Items:",length(src.contents))
stat("Weight:",src.weight_carrying)


Next, there is the verb panel:

mob
verb
say(msg as text)
set category = "communication"
for(var/mob/M in orange(6,src))
if(src in oview(6,M))
M << "[src]: [msg]"
src << "[src]: [msg]"
something_else()
set category = "other"
world << "testing"