Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Bug fixes & Misc:
-- Map crashed because empty item_combo script (bugreport:8959) -- Wrong MATK calculation of Distort Crescent/Zangetsu effect (SC_ZANGETSU) (bugreport:8998) -- Wrong damage reduction of Sera's Pain Killer effect (SC_PAIN_KILLER) (bugreport:8994) -- Fixed Shape Shift (NC_SHAPESHIFT) wrong requirement (bugreport:9002) -- @itembound, getitembound usage. Not, now allowed for unspecified bound_type (thank Ceejay Abne! http://rathena.org/board/index.php?showtopic=94726) -- Change check behavior for skill requirement level-dependent check. -- Removed NC_REPAIR hardcoded requirement. -- Moved the required equipped item to 'RequiredEquipment' on skill_require_db.txt. -- Missing "Option_Ruwach" as contantan. -- Corrected Chasewalk STR bonus, it's SC_CHASEWALK2, different with SC_INCSTR. -- Corrected some Rebellion skill's effects. -- USESKILL_FAIL_MADOGEAR message for failed skill that needs player has Madogear. -- Changed skill name and description length to 31 chars. -- Some documentation updates. -- Follow up 0f2dd7f. (Well, using empty password in import file, won't works, if you want, empty the original conf file. Fix this later, related on 'sscanf' for those files) -- Follow up 28c90bb, thank @julia40124009 -- Misc. :P Signed-off-by: Cydh Ramdh <house.bad@gmail.com>
- Loading branch information
Showing
with
498 additions
and 495 deletions.
- +7 −1 db/const.txt
- +1 −0 db/import-tmpl/item_flag.txt
- +1 −0 db/pre-re/item_flag.txt
- +12 −12 db/pre-re/skill_require_db.txt
- +2 −2 db/re/item_combo_db.txt
- +1 −0 db/re/item_flag.txt
- +12 −12 db/re/skill_require_db.txt
- +6 −6 doc/script_commands.txt
- +1 −1 src/char/int_mail.c
- +1 −1 src/char/int_storage.c
- +10 −0 src/common/mmo.h
- +1 −6 src/config/core.h
- +1 −1 src/login/loginlog_sql.c
- +30 −25 src/map/atcommand.c
- +62 −50 src/map/battle.c
- +2 −2 src/map/clif.c
- +4 −4 src/map/elemental.c
- +1 −1 src/map/elemental.h
- +1 −1 src/map/guild.c
- +26 −56 src/map/itemdb.c
- +4 −4 src/map/itemdb.h
- +2 −1 src/map/map.c
- +40 −34 src/map/npc.c
- +17 −15 src/map/pc.c
- +3 −3 src/map/pc.h
- +34 −28 src/map/script.c
- +153 −175 src/map/skill.c
- +42 −38 src/map/skill.h
- +16 −12 src/map/status.c
- +2 −1 src/map/status.h
- +2 −2 src/map/storage.c
- +1 −1 src/map/trade.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
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
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
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
Oops, something went wrong.