this is how the code is to make the host (me) a gm.
if(src.key==world.host)
src<<"You are a GM"
src.verbs+=typesof(/mob/GM/verb)
I have tried putting something like this to see if it works and gives other gm verbs:
if(src.key==bob101)
src<<"GM verbs Granted"
src.verbs+=typesof(/mob/GM/verb)
i put them in a list like after bob101 i do the same code but i put a different byond key in but it says unrecognised var.
am i supposed to make it like this?:
if(src.key==bob101,jack247,billy09)
src<<"GM verbs Granted"
src.verbs+=typesof(/mob/GM/verb)
i dont know im stuck and i need your help!
oh and is there a way i can make it that only me the host can recruit gm's in-game?