Addition of World Exchange system.

Contributed by Index.
This commit is contained in:
MobiusDevelopment
2022-09-07 21:14:19 +00:00
parent 8ed56a4f88
commit c9c4e2bf94
30 changed files with 2427 additions and 14 deletions

View File

@@ -0,0 +1,12 @@
DROP TABLE IF EXISTS `world_exchange_items`;
CREATE TABLE `world_exchange_items` (
`world_exchange_id` INT NOT NULL DEFAULT 0,
`item_object_id` INT NOT NULL DEFAULT 0,
`item_status` smallint(6) NOT NULL,
`category_id` smallint(6) NOT NULL,
`price` BIGINT UNSIGNED NOT NULL DEFAULT 0,
`old_owner_id` INT NOT NULL DEFAULT 0,
`start_time` bigint(13) unsigned NOT NULL DEFAULT '0',
`end_time` bigint(13) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`world_exchange_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;