Fixed Talking Island and Faeron Village scrolls of escape.
Dropped Batalion Zone due to lack of further development. Added Various missing syncs from L2jServer Ertheia.
This commit is contained in:
13
trunk/dist/tools/sql/game/auction_house.sql
vendored
13
trunk/dist/tools/sql/game/auction_house.sql
vendored
@ -1,13 +0,0 @@
|
||||
CREATE TABLE IF NOT EXISTS `auction_house` (
|
||||
`auctionID` int(11) NOT NULL DEFAULT '0',
|
||||
`sellerID` int(11) NOT NULL DEFAULT '0',
|
||||
`itemName` varchar(50) DEFAULT NULL,
|
||||
`itemOID` int(11) NOT NULL,
|
||||
`price` bigint(20) NOT NULL,
|
||||
`count` bigint(20) unsigned NOT NULL DEFAULT '0',
|
||||
`category` int(3) NOT NULL,
|
||||
`duration` int(11) NOT NULL,
|
||||
`finishTime` bigint(13) NOT NULL,
|
||||
`itemID` int(13) NOT NULL,
|
||||
PRIMARY KEY (`sellerID`,`auctionID`)
|
||||
);
|
8
trunk/dist/tools/sql/game/commission_items.sql
vendored
Normal file
8
trunk/dist/tools/sql/game/commission_items.sql
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
CREATE TABLE IF NOT EXISTS `commission_items` (
|
||||
`commission_id` BIGINT NOT NULL AUTO_INCREMENT,
|
||||
`item_object_id` INT NOT NULL,
|
||||
`price_per_unit` BIGINT NOT NULL,
|
||||
`start_time` TIMESTAMP NOT NULL,
|
||||
`duration_in_days` TINYINT NOT NULL,
|
||||
PRIMARY KEY (`commission_id`)
|
||||
) ENGINE=InnoDB;
|
2
trunk/dist/tools/sql/game/items.sql
vendored
2
trunk/dist/tools/sql/game/items.sql
vendored
@ -4,7 +4,7 @@ CREATE TABLE IF NOT EXISTS `items` (
|
||||
`item_id` INT,
|
||||
`count` BIGINT UNSIGNED NOT NULL DEFAULT 0,
|
||||
`enchant_level` INT,
|
||||
`loc` VARCHAR(13), -- inventory,paperdoll,npc,clan warehouse,pet,and so on
|
||||
`loc` VARCHAR(10), -- inventory,paperdoll,npc,clan warehouse,pet,and so on
|
||||
`loc_data` INT, -- depending on location: equiped slot,npc id,pet id,etc
|
||||
`time_of_use` INT, -- time of item use, for calculate of breackages
|
||||
`custom_type1` INT DEFAULT 0,
|
||||
|
Reference in New Issue
Block a user