You guys have the source, look for lines like these in client.cpp:
else if (strcasecmp(sep.arg[0], "#delacct") == 0 && admin >= 200)
Change the text in quotes to change the command name (This will be after a sep.arg[0] - To change a command parameter name, change sep.arg[1]'s check text, and finally to change who can use the command. Change the last number to the access level that you want people to have at minimum to use that command. (>= means greater than or equal to - by the way)
|