Adapting Appearance Stone system from L2jServer.
This commit is contained in:
6
trunk/dist/tools/sql/game/item_variables.sql
vendored
Normal file
6
trunk/dist/tools/sql/game/item_variables.sql
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
CREATE TABLE IF NOT EXISTS `item_variables` (
|
||||
`id` int(10) UNSIGNED NOT NULL,
|
||||
`var` varchar(255) NOT NULL,
|
||||
`val` text NOT NULL,
|
||||
KEY `charId` (`id`)
|
||||
);
|
2
trunk/dist/tools/sql/game/items.sql
vendored
2
trunk/dist/tools/sql/game/items.sql
vendored
@@ -11,8 +11,6 @@ CREATE TABLE IF NOT EXISTS `items` (
|
||||
`custom_type2` INT DEFAULT 0,
|
||||
`mana_left` decimal(5,0) NOT NULL DEFAULT -1,
|
||||
`time` decimal(13) NOT NULL DEFAULT 0,
|
||||
`appearance_id` int(11) NOT NULL DEFAULT 0,
|
||||
`appearance_time` decimal(13) NOT NULL DEFAULT -1,
|
||||
PRIMARY KEY (`object_id`),
|
||||
KEY `owner_id` (`owner_id`),
|
||||
KEY `item_id` (`item_id`),
|
||||
|
Reference in New Issue
Block a user