
Originally Posted by
Duluxe
Use Game-Serv/National Gunz Source files and search for it there, rom creation prevention is in there.
Code:
if(strstr(strlwr((char*)ZGetGameClient()->GetChannelName()), "event") && !ZGetMyInfo()->IsAdminGrade())
{
ZApplication::GetGameInterface()->ShowMessage("Staff members only can make a room in the Event Channel.");
pFindWidget->Show(false, false);
return false;
}
Found it for you.
Its in ZInterfaceListener.cpp under
Code:
class MStageCreateFrameCallerListener : public MListener{