Permalink
1 comment
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
* Follow up to: 99098c1
-- 'bonus_script' is now by default will be store on 'bonus_script' table. CAUTION: Please import 'upgrade_20131111.sql' file or execute the query inside to make `bonus_script` table. -- Updated bonus_script documentation following flag &8 (BONUS_FLAG_REM_ON_LOGOUT) behavior. By default, bonus_script will be stored when player logs out and will be continued when player logs in. * And small changes.
- Loading branch information
Showing
with
282 additions
and 46 deletions.
- +1 −0 conf/inter_athena.conf
- +10 −9 doc/script_commands.txt
- +12 −0 sql-files/main.sql
- +11 −0 sql-files/upgrades/upgrade_20131111.sql
- +103 −1 src/char/char.c
- +2 −0 src/char/char.h
- +7 −0 src/common/mmo.h
- +113 −2 src/map/chrif.c
- +4 −0 src/map/chrif.h
- +0 −2 src/map/clif.c
- +6 −18 src/map/pc.c
- +2 −3 src/map/pc.h
- +1 −1 src/map/script.c
- +2 −2 src/map/skill.c
- +8 −8 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
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,11 @@ | ||
| -- | ||
| -- Table structure for table `bonus_script` | ||
| -- | ||
|
|
||
| CREATE TABLE IF NOT EXISTS `bonus_script` ( | ||
| `char_id` int(11) NOT NULL, | ||
| `script` varchar(1024) NOT NULL, | ||
| `tick` int(11) NOT NULL, | ||
| `flag` tinyint(3) unsigned NOT NULL DEFAULT '0', | ||
| `type` tinyint(1) unsigned NOT NULL DEFAULT '0' | ||
| ) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
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.
Typo here. "Save"