/
rogue24b3/
rogue24b3/data/
/***************************************************************************\
[*]    ___    ____   ____   __   __  ____ [*]   ROGUE: ROM With Attitude  [*]
[*]   /#/ )  /#/  ) /#/  ) /#/  /#/ /#/   [*]    All rights reserved      [*]
[*]  /#/ <  /#/  / /#/ _  /#/  /#/ /#/--  [*]   Copyright(C) 2000-2001    [*]
[*] /#/   \(#(__/ (#(__/ (#(__/#/ (#(___  [*] Kenneth Conley (Mendanbar)  [*]
[*]  Expression of Digital Creativity..   [*]  scmud@mad.scientist.com    [*]
[-]---------------------------------------+-+-----------------------------[-]
[*] File: staffcmds.h                                                     [*]
[*] Usage: staff permissions macros                                       [*]
\***************************************************************************/

#define STF_FLAGS(ch)	((ch)->staff)

#define STAFF_GEN		(1 << 0)
#define STAFF_ADMIN             (1 << 1)
#define STAFF_SECURITY          (1 << 2)
#define STAFF_GAME              (1 << 3)
#define STAFF_SECADMIN		(1 << 4)
#define STAFF_CHAR              (1 << 5)
#define STAFF_CLANS             (1 << 6)
#define STAFF_OLC               (1 << 7)
#define STAFF_OLCADMIN          (1 << 8)
#define STAFF_SOCIALS           (1 << 9)
#define STAFF_HELP              (1 << 10)
#define STAFF_SCRIPT            (1 << 11)
#define STAFF_CODER             (1 << 12)
#define STAFF_ASSOCIATE         (1 << 13)
#define STAFF_TRAINEE		(1 << 14)

#define STAFF_LASTBIT		(1 << 31)	// 31 is the 32nd bit ;P
// Add more up to 32. IF you need 32 groups.