Permalink
2 comments
on commit
sign in to comment.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Add support body style implementation
* This feature require the client support before 2015-05-13 or newer Make sure you data&lub support for this note : read info to https://rathena.org/board/topic/104205-2015-client-support/ Special Thanks you to Rytech, @aleos89
- Loading branch information
Showing
with
305 additions
and 103 deletions.
- +7 −0 conf/battle/client.conf
- +6 −2 conf/msg_conf/map_msg.conf
- +22 −0 doc/script_commands.txt
- +2 −1 sql-files/main.sql
- +1 −0 sql-files/upgrades/upgrade_20160112.sql
- +51 −49 src/char/char.c
- +2 −2 src/common/mmo.h
- +37 −3 src/map/atcommand.c
- +3 −0 src/map/battle.c
- +5 −0 src/map/battle.h
- +41 −6 src/map/clif.c
- +1 −1 src/map/clif.h
- +2 −1 src/map/map.h
- +54 −37 src/map/pc.c
- +43 −0 src/map/script.c
- +1 −0 src/map/script_constants.h
- +25 −0 src/map/status.c
- +2 −1 src/map/unit.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
| @@ -0,0 +1 @@ | ||
| ALTER TABLE `char` ADD `body`smallint(5) unsigned NOT NULL default '0' AFTER `clothes_color`; |
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.
d70b173There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Ja.
d70b173There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wow , good !
thanks