summaryrefslogtreecommitdiff
path: root/src/map/status.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-07-10 16:22:29 +0300
committerAndrei Karas <akaras@inbox.ru>2016-07-10 16:22:29 +0300
commit5bdf402cff0d71b3791ee7782280b8889a51e10e (patch)
treef1a24cd5b9ee164aba624d0547a6d8ffbab6e186 /src/map/status.h
parent66618b60c096f98f2c849ff5f8ce02a3af580996 (diff)
downloadhercules-5bdf402cff0d71b3791ee7782280b8889a51e10e.tar.gz
hercules-5bdf402cff0d71b3791ee7782280b8889a51e10e.tar.bz2
hercules-5bdf402cff0d71b3791ee7782280b8889a51e10e.tar.xz
hercules-5bdf402cff0d71b3791ee7782280b8889a51e10e.zip
Add sc_config.txt flag for always visible effects.
Remove hardcoded visible effects from status.c and add visible flag into sc_config.txt
Diffstat (limited to 'src/map/status.h')
-rw-r--r--src/map/status.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/map/status.h b/src/map/status.h
index dbb507bd1..e4a326e88 100644
--- a/src/map/status.h
+++ b/src/map/status.h
@@ -74,14 +74,15 @@ enum refine_type {
* @see db/sc_config.txt for more information
**/
typedef enum sc_conf_type {
- SC_NO_REM_DEATH = 0x01,
- SC_NO_SAVE = 0x02,
- SC_NO_DISPELL = 0x04,
- SC_NO_CLEARANCE = 0x08,
- SC_BUFF = 0x10,
- SC_DEBUFF = 0x20,
- SC_MADO_NO_RESET = 0x40,
- SC_NO_CLEAR = 0x80,
+ SC_NO_REM_DEATH = 0x001,
+ SC_NO_SAVE = 0x002,
+ SC_NO_DISPELL = 0x004,
+ SC_NO_CLEARANCE = 0x008,
+ SC_BUFF = 0x010,
+ SC_DEBUFF = 0x020,
+ SC_MADO_NO_RESET = 0x040,
+ SC_NO_CLEAR = 0x080,
+ SC_VISIBLE = 0x100
} sc_conf_type;
/**