
-- '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.
12 lines
328 B
SQL
12 lines
328 B
SQL
--
|
|
-- 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;
|