diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-11-20 15:14:51 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-11-20 15:14:51 +0000 |
commit | ecfcb989bf2fd07a355714ce588a6ab7e890db76 (patch) | |
tree | fc1a64c5a65471328cf845f922c2ef5e26b75648 /src/map/pc.h | |
parent | 334f81bebe92b6014d4b21607de5539d99af0cf1 (diff) | |
download | hercules-ecfcb989bf2fd07a355714ce588a6ab7e890db76.tar.gz hercules-ecfcb989bf2fd07a355714ce588a6ab7e890db76.tar.bz2 hercules-ecfcb989bf2fd07a355714ce588a6ab7e890db76.tar.xz hercules-ecfcb989bf2fd07a355714ce588a6ab7e890db76.zip |
- Implemented SL_SUPERNOVICE erasing the death record 1% of the casts.
- Implemented current exp being capped to the exp required to level up from the previous level when we are at max level (required for some S. Novice buffs)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11764 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index 1c8b191d9..1af042b6e 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -205,7 +205,9 @@ int pc_checkbaselevelup(struct map_session_data *sd); int pc_checkjoblevelup(struct map_session_data *sd); int pc_gainexp(struct map_session_data*,struct block_list*,unsigned int,unsigned int); unsigned int pc_nextbaseexp(struct map_session_data *); +unsigned int pc_thisbaseexp(struct map_session_data *); unsigned int pc_nextjobexp(struct map_session_data *); +unsigned int pc_thisjobexp(struct map_session_data *); int pc_need_status_point(struct map_session_data *,int); int pc_statusup(struct map_session_data*,int); int pc_statusup2(struct map_session_data*,int,int); |