diff options
author | cookiecrumbs <cookiecrumbs@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-18 20:06:54 +0000 |
---|---|---|
committer | cookiecrumbs <cookiecrumbs@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-18 20:06:54 +0000 |
commit | d049046dc121866bc7c2d62bf5773adf05335870 (patch) | |
tree | 4f6904263c495711e661d07850664d271bd511fa /src/map/pc.h | |
parent | 9fa4acce4a3fd134993a5cfe18506392dbfa5555 (diff) | |
download | hercules-d049046dc121866bc7c2d62bf5773adf05335870.tar.gz hercules-d049046dc121866bc7c2d62bf5773adf05335870.tar.bz2 hercules-d049046dc121866bc7c2d62bf5773adf05335870.tar.xz hercules-d049046dc121866bc7c2d62bf5773adf05335870.zip |
New permissions added for groups: show_bossmobs, disable_pvm and disable_pvp; documented usage in permissions.txt
Fixed a typo in monster.conf.
Removed old functionality from showmobs command to make room for show_bossmobs.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16445 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index 2cb859e5b..2cf4947a1 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -590,6 +590,9 @@ enum e_pc_permission { PC_PERM_USE_CHANGEMAPTYPE = 0x04000, PC_PERM_USE_ALL_COMMANDS = 0x08000, PC_PERM_RECEIVE_REQUESTS = 0x10000, + PC_PERM_SHOW_BOSS = 0x20000, + PC_PERM_DISABLE_PVM = 0x40000, + PC_PERM_DISABLE_PVP = 0x80000, }; #define pc_setdead(sd) ( (sd)->state.dead_sit = (sd)->vd.dead_sit = 1 ) |