View Single Post
  #1  
Old 09-16-2005, 11:43 AM
Ibonic Ibonic is offline
unsoundness
Ibonic's Avatar
Join Date: Sep 2002
Location: Long Island <3
Posts: 783
Ibonic will become famous soon enough
Suggestion for RC2: custom rights

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);
}

Reply With Quote