Addition of Hunt Pass system.

Contributed by Serenitty.
This commit is contained in:
MobiusDevelopment
2022-05-02 00:10:00 +00:00
parent 56d3de98d4
commit 14de2b4f05
48 changed files with 2944 additions and 10 deletions

View 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;