mob/Login()
if(usr.key == "Gamemaster22"&& usr.key == "King-okal")
usr.verbs += typesof(/mob/Owner/verb/)
winshow("ap",1)
Problem:When i run the game it doesnt give me the window for the admin panel, Im trying to make no tabs but only one window specially for admins when login they have tabs for they're verbs.
The && operator is the binary of "and" so you're pretty much calling if(usr.key == "Gamemaster22" AND usr.key == "King-okal")
Instead, replace && with | so it's if(usr.key == "Gamemaster22" | usr.key == "King-okal")