Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Added some official item packages!
- Added db/re/item_package.txt, imported file for item_group_db.txt - Added doc/item_group.txt for more details about item group - Added new IG_ids on db/const.txt, up to 300 additions - Added 'getgroupitem' script command to get item from specified item group (see doc/script_commands.txt) - Modified 'grouprandomitem', added an optional parameter: 'sub_group' (see doc/script_commands.txt) - Modified 'getrandgroupitem', added an optional parameter: 'sub_group' (see doc/script_commands.txt) - Updated db/re/item_db.txt - Updated sql-files/item_db_re.sql, so for MySQL user, please udate your item db NOTE: - I ocmmented some lines because some items aren't exist yet on rAthena db (or maybe have different name?) - For pre-re, maybe I can do it later, or will someone do it? - If there's something I forget to tell you, it's habit Signed-off-by: Cydh Ramdh <house.bad@gmail.com>
- Loading branch information
Showing
with
4,529 additions
and 705 deletions.
- +4 −1 conf/msg_conf/map_msg.conf
- +4 −1 conf/msg_conf/map_msg_idn.conf
- +316 −0 db/const.txt
- +3 −1 db/pre-re/item_misc.txt
- +313 −302 db/re/item_db.txt
- +1 −0 db/re/item_group_db.txt
- +3 −1 db/re/item_misc.txt
- +3,100 −0 db/re/item_package.txt
- +132 −0 doc/item_group.txt
- +46 −2 doc/script_commands.txt
- +313 −302 sql-files/item_db_re.sql
- +3 −0 src/map/clif.c
- +7 −5 src/map/clif.h
- +192 −41 src/map/itemdb.c
- +39 −21 src/map/itemdb.h
- +2 −2 src/map/mob.c
- +1 −2 src/map/pc.c
- +50 −24 src/map/script.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
| @@ -1,5 +1,7 @@ | ||
| // | ||
| // Structure of Database: | ||
| // GroupID,ItemID,Rate | ||
| // | ||
| // Cookie Bag | ||
| 7,529,5 //Candy | ||
| 7,530,5 //Candy Cane | ||
Oops, something went wrong.