ID:169881
Apr 17 2005, 6:38 pm
|
|
How can I make an area where only GMs can go in?
|
Copyright © 2024 BYOND Software.
All rights reserved.
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