ID:159428
 
It it possible to have menu section that can be hidden from certain players,I want to include my owner features in there without disabling it
You mean verb menus?
Yes.

mob/god/verb/GMStuff()
set category="GM"

mob/Login()
if(usr==GM)
usr.verbs+=/mob/god/verb/GMStuff

____

You mean stat menus?
Yes

Stat()
if(usr==GM)
statpanel("GM Stuff")
else
statpanel("Non GM Stuff")
statpanel("Everyone Stuff")
Yes, there are many ways to take this approach.
-Look up the DM Reference for skins
-Check out tabs,
-showing/hiding interface objects,
-opening otherwise closed windows (windows come with the option to start closed)
In response to Mista-mage123
Mista-mage123 wrote:
You mean verb menus?
Yes.

mob/god/verb/GMStuff()
set category="GM"

mob/Login()
if(usr==GM)
usr.verbs+=/mob/god/verb/GMStuff

____

You mean stat menus?
Yes

Stat()
if(usr==GM)
statpanel("GM Stuff")
else
statpanel("Non GM Stuff")
statpanel("Everyone Stuff")


wat i meant is in the actual menus by the top not having to do with panels i want specific verbs for ppl but they can only see it(the menus in the skin)
In response to Goggeeta
In response to AJX
can u link me ajx
In response to Goggeeta
To the skin reference? Just open up Dream Maker and go into the Help menu >_>