Quote:
Originally Posted by Decker_
Hello.
I deleted my NPC to start quiz show but is there a command that only PM/GM's can start it without the NPC?
|
Code:
if (Cmd[0] == "/quiz")
if (!Features.QuizShow.QuizON)
Features.QuizShow.Start();
Hope that helps =P, You might have to change ... if (GC.AuthInfo.Status == "[PM]") .... to .... if (GC.AuthInfo.Status == "[GM]" || GC.AuthInfo.Status == "[PM]") .... (around line 259) if you're trying to test it with a GM. If it's just a PM it should work fine if not already in there.