ID:179283
 
How Do i give special verbs to the host???


-NilFisk
You would have check if their ip matchs the world's address, or if it's null and add them, here's an example:


mob
proc
hostverbs()
src.verbs+=/mob/proc/Special()
mob/proc/Special()
src<<"Look at you you're the special one!"

mob/Login()
if((src.client.address == world.address) || (src.client.address == null))
src<<"You're the host!"
src.hostverbs()//calls the hostverbs() proc
..()
else
src<<"Psh, normal player..."
..()
In response to Nadrew
Thanks for helping me again
In response to NilFisk
Told ya' I would ;).
This is at least the fourth time in as many days that this question has been asked. I wonder if something needs to be added to the FAQ? S'pose I could write up a thorough answer if nobody beats me to it.
In response to Air Mapster
Go ahead I was thinking about doing it, but since you brought it up first go ahead.