ID:158571
 
I would like to know how to give people gm verbs, i have made the verbs and i have made it that it gives the host (me) the gm verbs but how do i make other BYOND users gm's and how would i make it that i can make players a gm in-game?

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?