Dye and Potential update.

Contributed by Serenitty.
This commit is contained in:
MobiusDevelopment
2022-08-24 22:39:29 +00:00
parent bbd0f7f911
commit 43e9fd8656
9 changed files with 120 additions and 89 deletions

View File

@@ -1,8 +1,9 @@
DROP TABLE IF EXISTS `character_potens`;
CREATE TABLE IF NOT EXISTS `character_potens` (
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
`slot_position` INT NOT NULL DEFAULT 0,
`poten_id` INT NOT NULL DEFAULT 0,
`enchant_level` INT NOT NULL DEFAULT 0,
`enchant_exp` INT NOT NULL DEFAULT 0,
`poten_id` INT NOT NULL DEFAULT 0,
PRIMARY KEY (`charId`,`poten_id`)
PRIMARY KEY (`charId`,`slot_position`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;