ID:270606
 
How would I go about giving a host of a game special powers? Does BYOND have any built in stuff, or would I have to make a system myself?
mob/proc/CheckHost()
if(src.client.address == null || src.client.address == world.address || src.client.address == "127.0.0.1" || src.client.address == "localhost")
src.verbs += typesof(/mob/Host/verb)


mob/Login()
..()
CheckHost()