Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Initial Release of Equipment Switch
Thanks to everyone who contributed to this release in any way, be it donations, information or testing.
- Loading branch information
Showing
with
549 additions
and 64 deletions.
- +4 −0 conf/battle/feature.conf
- +3 −0 db/pre-re/skill_cast_db.txt
- +2 −0 db/pre-re/skill_castnodex_db.txt
- +2 −0 db/pre-re/skill_db.txt
- +2 −0 db/pre-re/skill_require_db.txt
- +4 −0 db/re/skill_cast_db.txt
- +2 −0 db/re/skill_castnodex_db.txt
- +2 −0 db/re/skill_db.txt
- +2 −0 db/re/skill_require_db.txt
- +1 −0 sql-files/main.sql
- +2 −0 sql-files/upgrades/upgrade_20181004.sql
- +25 −20 src/char/char.cpp
- +1 −0 src/common/mmo.hpp
- +2 −0 src/map/atcommand.cpp
- +8 −0 src/map/battle.cpp
- +1 −0 src/map/battle.hpp
- +236 −1 src/map/clif.cpp
- +9 −0 src/map/clif.hpp
- +13 −8 src/map/clif_packetdb.hpp
- +4 −0 src/map/mail.cpp
- +5 −2 src/map/mail.hpp
- +196 −32 src/map/pc.cpp
- +5 −1 src/map/pc.hpp
- +10 −0 src/map/skill.cpp
- +3 −0 src/map/skill.hpp
- +5 −0 src/map/trade.cpp
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
| @@ -56,6 +56,8 @@ | ||
| 2536,7,7 //ALL_GUARDIAN_RECALL | ||
| 2537,0,7 //ALL_ODINS_POWER | ||
|
|
||
| 5067,7,7 //ALL_EQSWITCH | ||
|
|
||
| // Mercenary Skills | ||
| 8214,7 //MA_CHARGEARROW | ||
| 8215,7 //MA_SHARPSHOOTING | ||
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
| @@ -61,6 +61,8 @@ | ||
| 2537,0,7 //ALL_ODINS_POWER | ||
| 3035,7,7 //ECLAGE_RECALL | ||
|
|
||
| 5067,7,7 //ALL_EQSWITCH | ||
|
|
||
| // Mercenary Skills | ||
| 8214,7 //MA_CHARGEARROW | ||
| 8215,7 //MA_SHARPSHOOTING | ||
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,2 @@ | ||
| alter table `inventory` | ||
| add column `equip_switch` int(11) unsigned NOT NULL default '0' after `unique_id`; |
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
| @@ -650,6 +650,7 @@ struct Battle_Config | ||
| int feature_attendance; | ||
| int feature_privateairship; | ||
| int rental_transaction; | ||
| int feature_equipswitch; | ||
|
|
||
| #include "../custom/battle_config_struct.inc" | ||
| }; | ||
Oops, something went wrong.