Thread: Is it doable?
View Single Post
  #6  
Old 04-22-2002, 12:10 AM
Wiz
Dragon
 
Join Date: Feb 2002
Posts: 583
Default

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.
Reply With Quote