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
Initial Release of Random Option System
* Added basic support for random option system * Don't forget to import upgrade_20160814.sql and upgrade_20160814_log.sql to make your existing rAthena installation functional!
- Loading branch information
Showing
with
1,033 additions
and 46 deletions.
- +194 −0 db/const.txt
- +4 −0 db/import-tmpl/item_randomopt_db.txt
- +200 −0 db/re/item_randomopt_db.txt
- +15 −0 sql-files/logs.sql
- +90 −0 sql-files/main.sql
- +101 −0 sql-files/upgrades/upgrade_20160814.sql
- +16 −0 sql-files/upgrades/upgrade_20160814_log.sql
- +97 −28 src/char/char.c
- +30 −1 src/char/int_auction.c
- +42 −1 src/char/int_mail.c
- +33 −4 src/char/int_storage.c
- +6 −0 src/common/mmo.h
- +1 −0 src/map/battle.c
- +8 −9 src/map/clif.c
- +99 −0 src/map/itemdb.c
- +10 −0 src/map/itemdb.h
- +1 −0 src/map/map.h
- +5 −0 src/map/pc.c
- +1 −0 src/map/pc.h
- +25 −0 src/map/script.c
- +4 −0 src/map/script.h
- +5 −0 src/map/script_constants.h
- +45 −3 src/map/status.c
- +1 −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
| @@ -0,0 +1,4 @@ | ||
| // Items Random Option Database | ||
| // | ||
| // Structure of Database: | ||
| // ID,{ Bonus Script } |
Oops, something went wrong.
f296409There 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.
Is this already on the latest git?
f296409There 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.
Yes