Adaptation of Hunt Pass for main version.

Contributed by Fakee.
This commit is contained in:
MobiusDevelopment
2022-10-29 21:51:33 +00:00
parent 4e62d0e920
commit 7bd978118d
22 changed files with 1241 additions and 5 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;