Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merged Monster Transformation update from Hercules (9692bc0) - Merge …
…credits to Aleos & Cydh -> Applied follow-up for using monster IDs with the commands (ead2a83) Merged revert of r15787 where character must face north (5188b69) Merged bug fix for visual effects on relog (f304c36) -> This fixes the Warlock Sphere issue on relog as well as many other visual effects Applied a possible map crash fix - Credits ivanyan http://rathena.org/board/tracker/issue-8212-server-crash-guild-retrieveitembound/ Started working on some source code documentation Renamed bank update SQL file to upgrade_20131105.sql
- Loading branch information
Showing
with
351 additions
and 111 deletions.
- +4 −0 conf/battle/misc.conf
- +6 −0 conf/msg_conf/map_msg.conf
- +6 −1 db/const.txt
- +7 −7 db/re/item_db.txt
- +8 −0 db/re/item_delay.txt
- +7 −7 sql-files/item_db_re.sql
- 0 sql-files/upgrades/{upgrade_svn17600.sql → upgrade_20131105.sql}
- +1 −2 src/common/mmo.h
- +5 −0 src/map/atcommand.c
- +12 −1 src/map/battle.c
- +1 −0 src/map/battle.h
- +25 −5 src/map/clif.c
- +1 −1 src/map/guild.c
- +78 −0 src/map/script.c
- +4 −0 src/map/skill.c
- +180 −87 src/map/status.c
- +6 −0 src/map/status.h
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
File renamed without changes.
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
| @@ -47,8 +47,7 @@ | ||
| // 20120307 - 2012-03-07aRagexeRE+ - 0x970 | ||
|
|
||
| #ifndef PACKETVER | ||
| #define PACKETVER 20130807 | ||
| //#define PACKETVER 20120410 | ||
| #endif | ||
|
|
||
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
| @@ -495,6 +495,7 @@ extern struct Battle_Config | ||
| int bowling_bash_area; | ||
| int drop_rateincrease; | ||
| int feature_banking; | ||
| int mon_trans_disable_in_gvg; | ||
|
|
||
| } battle_config; | ||
|
|
||
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.