Permalink
2 comments
on commit
Please
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
* Merged from 3CeAM r689 & r690
- Removed OPTION_MOUNTING - Added SC_ALL_RIDING - Added new option in battle/player.conf for changing speed of players when mounted: 'rental_mount_speed_boost'
- Loading branch information
Showing
with
54 additions
and 44 deletions.
- +4 −0 conf/battle/player.conf
- +2 −0 db/const.txt
- +1 −1 db/re/item_db.txt
- +1 −1 sql-files/item_db_re.sql
- +3 −3 src/map/atcommand.c
- +1 −0 src/map/battle.c
- +1 −0 src/map/battle.h
- +4 −8 src/map/clif.c
- +9 −19 src/map/pc.c
- +5 −5 src/map/script.c
- +2 −2 src/map/skill.c
- +18 −3 src/map/status.c
- +3 −2 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
| @@ -1735,6 +1735,8 @@ SC_QUEST_BUFF2 590 | ||
| SC_QUEST_BUFF3 591 | ||
| SC_EXTREMITYFIST2 592 | ||
|
|
||
| SC_ALL_RIDING 951 | ||
|
|
||
| //Status Icon | ||
| SI_BLANK -1 | ||
| SI_PROVOKE 0 | ||
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
| @@ -531,6 +531,7 @@ extern struct Battle_Config | ||
| int warg_can_falcon; | ||
| int atcommand_enable_npc; | ||
| int path_blown_halt; | ||
| int rental_mount_speed_boost; | ||
| } battle_config; | ||
|
|
||
| void do_init_battle(void); | ||
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
| @@ -697,6 +697,8 @@ typedef enum sc_type { | ||
| SC_EXTREMITYFIST2, | ||
| #endif | ||
|
|
||
| SC_ALL_RIDING = 951, | ||
This comment has been minimized.
This comment has been minimized.
euphyy
Contributor
|
||
|
|
||
| SC_MAX, //Automatically updated max, used in for's to check we are within bounds. | ||
| } sc_type; | ||
|
|
||
| @@ -1597,8 +1599,7 @@ enum e_option { | ||
| OPTION_DRAGON4 = 0x02000000, | ||
| OPTION_DRAGON5 = 0x04000000, | ||
| OPTION_HANBOK = 0x08000000, | ||
| OPTION_OKTOBERFEST = 0x10000000, | ||
|
|
||
| #ifndef NEW_CARTS | ||
| OPTION_CART1 = 0x00000008, | ||
wow, don't be like this.