It's fairly easy to switch command levels around in client.cpp, really.
Just replace for example:
else if (strcasecmp(sep.arg[0], "#goto") == 0)
or
else if (strcasecmp(sep.arg[0], "#goto") == 0 && (admin >= 0))
with:
else if (strcasecmp(sep.arg[0], "#goto") == 0 && (admin >= 10))
To make em PrivUser commands.
|