Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Added HP_SP_TABLES option in core.h which allows you to bypass the jo…
…b HP and SP tables - http://rathena.org/board/tracker/issue-8015-hp-sp-bugs-exp/ The long range attack rate bonus now effects damage, rather than ATK - http://rathena.org/board/tracker/issue-8109-long-range-attack-rate/ Fixed SP cost on Invisibility and removed time limit - http://rathena.org/board/tracker/issue-8102-invisibility/ Fixed some warnings that popped up recently - http://rathena.org/board/tracker/issue-8145-warning-in-skillc Some small changes for the double casted skills - http://rathena.org/board/tracker/issue-7382-aoe-bug-sometimes-it-hits-more-than-one/ Cleaned up some Masquerade Unlucky unused code
- Loading branch information
Showing
with
41 additions
and 25 deletions.
- +1 −1 db/re/skill_cast_db.txt
- +2 −2 db/re/skill_unit_db.txt
- +3 −0 src/config/core.h
- +1 −1 src/map/atcommand.c
- +3 −3 src/map/battle.c
- +24 −3 src/map/pc.c
- +3 −1 src/map/skill.c
- +4 −14 src/map/status.c
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -69,6 +69,9 @@ | ||
| #define MAX_SKILL_DAMAGE_RATE 100000 | ||
| #endif | ||
|
|
||
| /// Comment to disable the job HP/SP tables and use formulas instead | ||
| #define HP_SP_TABLES | ||
|
|
||
| /** | ||
| * No settings past this point | ||
| **/ | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters