/*
Copyright (C) 2005 David Green <green@couchpotato.net>
All Rights Reserved.

This file is part of Aelfengard.

Aelfengard is proprietary software. You may not redistribute it without
prior written permission from the copyright holder.
*/
package server;

public enum AdminFlag {
    ADMIN_BUILDER, // Can perform advanced editing to rooms, items, etc
    ADMIN_FLAGS, // can maintain admin flags
    ADMIN_VIEWS, // can see extended output from informational commands
    ADMINS_CHAT, // Can see ADMINS chat
    ANNOUNCE, // Can ANNOUNCE
    BACKUP, // Can BACKUP
    CODER, // Can write scripts
    CONFIG, // can configure major game settings
    FAST_MOVEMENT, // Can GOTO, switch areas
    I3, // Has InterMud-3 access
    INVIS, // Can INVIS or AFK
    PETITIONABLE, // shows up in admin list, can send and receive tells 
    RESTART, // Can RESTART
    SUMMON, // Can SUMMON
    TRACKING, // can see users in other rooms on their map
    // USER_FLAGS, // can maintain user flags
    ;
}