diff options
author | rud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-01 17:27:37 +0000 |
---|---|---|
committer | rud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-01 17:27:37 +0000 |
commit | 9755833db59badc0e1c890646db6dcc504a654a4 (patch) | |
tree | 109f0d1580fd8cbf6e2afb3ff1336de09aea0e25 /src/map/status.h | |
parent | bff5eb4080d3f376c13956ccfc9fe77a268656b9 (diff) | |
download | hercules-9755833db59badc0e1c890646db6dcc504a654a4.tar.gz hercules-9755833db59badc0e1c890646db6dcc504a654a4.tar.bz2 hercules-9755833db59badc0e1c890646db6dcc504a654a4.tar.xz hercules-9755833db59badc0e1c890646db6dcc504a654a4.zip |
Fixed bugreport:5788 WL_READING_SB should now work like official behavior(save preserved spell on relog, proper skill fail message, maximum number of spell that a char can hold)
Fixed bugreport:5657 WL_EARTHSTRAIN should now work like official behavior(total number of range [15x4+lv], layout when casted, interval)
Updated WL_IMPRISON duration, rate and proper skill fail message.
Special thanks to Yommy and his amazing tool...
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16365 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.h')
-rw-r--r-- | src/map/status.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/map/status.h b/src/map/status.h index 50eecec0d..117a71007 100644 --- a/src/map/status.h +++ b/src/map/status.h @@ -600,6 +600,18 @@ typedef enum sc_type { SC_EARTH_INSIGNIA, /* new pushcart */ SC_PUSH_CART, + /* Warlock Spell books */ + SC_SPELLBOOK1, + SC_SPELLBOOK2, + SC_SPELLBOOK3, + SC_SPELLBOOK4, + SC_SPELLBOOK5, + SC_SPELLBOOK6, +/** + * In official server there are only 7 maximum number of spell books that can be memorized + * To increase the maximum value just add another status type before SC_MAXSPELLBOOK (ex. SC_SPELLBOOK7, SC_SPELLBOOK8 and so on) + **/ + SC_MAXSPELLBOOK, SC_MAX, //Automatically updated max, used in for's to check we are within bounds. } sc_type; |