Adaptation of Hunt Pass for main version.
Contributed by Fakee.
This commit is contained in:
13
L2J_Mobius_10.3_MasterClass/dist/db_installer/sql/game/huntpass.sql
vendored
Normal file
13
L2J_Mobius_10.3_MasterClass/dist/db_installer/sql/game/huntpass.sql
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
DROP TABLE IF EXISTS `huntpass`;
|
||||
CREATE TABLE IF NOT EXISTS `huntpass` (
|
||||
`account_name` VARCHAR(45) NOT NULL DEFAULT '',
|
||||
`current_step` INT NOT NULL DEFAULT 0,
|
||||
`points` INT NOT NULL DEFAULT 0,
|
||||
`reward_step` INT NOT NULL DEFAULT 0,
|
||||
`is_paytowin` BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
`premium_reward_step` INT NOT NULL DEFAULT 0,
|
||||
`sayha_points_available` INT NOT NULL DEFAULT 0,
|
||||
`sayha_points_used` INT NOT NULL DEFAULT 0,
|
||||
`unclaimed_reward` BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
PRIMARY KEY (`account_name`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
Reference in New Issue
Block a user