Jump to content

Bro

Members
  • Posts

    1
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Bro

  1. CREATE TABLE IF NOT EXISTS items ( `owner_id` INT, `object_id` INT NOT NULL DEFAULT 0, `item_id` INT, `count` INT, `enchant_level` INT, `loc` VARCHAR(10), `loc_data` INT, `price_sell` INT, `price_buy` INT, `time_of_use` INT, `custom_type1` INT DEFAULT 0, `custom_type2` INT DEFAULT 0, `mana_left` decimal(3,0) NOT NULL default -1, `bindId` INT NOT NULL DEFAULT 0, PRIMARY KEY (`object_id`), KEY `key_owner_id` (`owner_id`), KEY `key_loc` (`loc`), KEY `key_item_id` (`item_id`), KEY `key_time_of_use` (`time_of_use`) ); in items.sql
×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..