Currently when viewing the rights of a player with RC2, there are two tabs: "IP Range and Rights flag", and "Folder rights". Let there be a new one:
Custom rights
Players with full level 4 RC will be able to edit the configuration of the tab for the current playerworld. Or if that's not desired, maybe there could be a standard "change custom rights config" right.
Why? A lot of servers have custom staff commands (such as summon, jailing, etc.) that are scripted. Having a centralized/standard way to set these rights individually and check if a player has them in script would cut down on the amount of work needed and obviously be more organized.
Here's a simple example of the built-in script function I imagine:
NPC Code:
if (!hascustomright("summon")) {
player.chat = "(not authorized to summon)";
return(0);
}