ID:789934
 
(See the best response by Albro1.)
Problem description: Is there anyway to hide the tabs in the interface Menu's. Like, I want to add a GM tab up there, but I only want it visible to the people who have GM. Is that possible?
Create separate menus.

Have a default_menu and an admin_menu.

When an admin logs on, winset() their default window's menu property to admin_menu.
I don't understand .
Best response
mob/Login()
..()
if(src.is_admin())
winset(src, "default", "menu = admin_menu")
Thanks ! :D