ID:169881
 
How can I make an area where only GMs can go in?
turf
GMEnter
icon = null //or what ever u want
icon_state = null //optional if icon = null then theres no point
Entered(mob/M)
if(M.Gm == 1)//Gm Admin What Ever The Var Is
M.loc=locate(1,1,1)// Area you want the GM to move to
M<<"Welcome To The Gm Room"//optional
else//if not GM
M<<"Sorry Your Not A Gm"
reutrn//not allowed


- Littlemagik