ID:149922
 
I need to make a gm tab
Sephiroth1011 wrote:
I need to make a gm tab

the tabs you speak of are called categories for verbs, and statpanels for variables

here are two examples that both show two "tabs"

mob
Stat()
statpanel("Stuffage",src.contents)
statpanel("Stats")
stat("Cool Stuff!",src.name)
stat("Intelligence",src.density)

that example has two panels, both different

here is an example of two more panels using verbs

mob
verb
say(T as text)
set category = "Talking"
world << "[src.name]: [T]"
GM
verb
kick(mob/M as mob in world)
set category = "GM"
del(M)

setting the category tells where the verb is to be shown!

FIREking