Addition of purge system.

Contributed by iDesy.
This commit is contained in:
MobiusDevelopment
2021-05-19 21:23:03 +00:00
parent 4024c3bbb5
commit 2dc01faa53
34 changed files with 1956 additions and 8 deletions

View File

@@ -0,0 +1,8 @@
DROP TABLE IF EXISTS `character_purge`;
CREATE TABLE IF NOT EXISTS `character_purge` (
`charId` int(10) unsigned NOT NULL DEFAULT 0,
`category` int(3) UNSIGNED NOT NULL DEFAULT 0,
`points` int(10) UNSIGNED NOT NULL DEFAULT 0,
`keys` int(10) UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`charId`,`category`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;