ID:959483
 
Keywords: eventworld, exp, gm
(See the best response by NNAAAAHH.)
I want to code an exp event that only Gms can use but i dont know how can anyone help me.
Best response
If you want someone to do it for you, you should goto the Classified Ads section here on the BYOND forums.

But on not of your issue;
Simply create a verb under a path type that isn't assigned to usuall players and assign it only to mobs you want to have the verb. Very simple.

mob/specialverb/verb/Special_verb(T as text)
world<<T
mob/Login()
..()
if(variable)//Check for a variable to see if you should give them the verb(s)
verbs+=/mob/specialverb/verb/Special_verb//typesof(/mob/specialverb)
//would be better, if you're wanting to give them all verbs of that type.
I dont want someone else to do it for me i want to do it myself, and thanks for the help.