mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-25 22:27:45 +00:00
Removed isExclusive as it is now loaded from gamedata. Cleaned up keys for retainer inventory.
This commit is contained in:
parent
3066efeebb
commit
163f240cf9
5 changed files with 5 additions and 14 deletions
|
@ -1227,7 +1227,6 @@ namespace FFXIVClassic_Map_Server
|
|||
itemId,
|
||||
server_items_modifiers.id AS modifierId,
|
||||
quantity,
|
||||
isExclusive,
|
||||
quality,
|
||||
|
||||
durability,
|
||||
|
@ -1379,7 +1378,6 @@ namespace FFXIVClassic_Map_Server
|
|||
itemId,
|
||||
server_items_modifiers.id AS modifierId,
|
||||
quantity,
|
||||
isExclusive,
|
||||
quality,
|
||||
|
||||
durability,
|
||||
|
@ -1448,7 +1446,6 @@ namespace FFXIVClassic_Map_Server
|
|||
itemId,
|
||||
server_items_modifiers.id AS modifierId,
|
||||
quantity,
|
||||
isExclusive,
|
||||
quality,
|
||||
|
||||
durability,
|
||||
|
@ -1548,7 +1545,6 @@ namespace FFXIVClassic_Map_Server
|
|||
itemId,
|
||||
server_items_modifiers.id AS modifierId,
|
||||
quantity,
|
||||
isExclusive,
|
||||
quality,
|
||||
|
||||
durability,
|
||||
|
|
|
@ -7,18 +7,14 @@ using FFXIVClassic_Map_Server.lua;
|
|||
using FFXIVClassic_Map_Server.packets.send;
|
||||
using FFXIVClassic_Map_Server.packets.send.actor;
|
||||
using FFXIVClassic_Map_Server.packets.send.events;
|
||||
using FFXIVClassic_Map_Server.packets.send.actor.events;
|
||||
using FFXIVClassic_Map_Server.packets.send.actor.inventory;
|
||||
using FFXIVClassic_Map_Server.packets.send.events;
|
||||
using FFXIVClassic_Map_Server.packets.send.player;
|
||||
using FFXIVClassic_Map_Server.utils;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using MoonSharp.Interpreter;
|
||||
using FFXIVClassic_Map_Server.packets.receive.events;
|
||||
using FFXIVClassic_Map_Server.packets.send.actor.inventory;
|
||||
using FFXIVClassic_Map_Server.actors.group;
|
||||
using FFXIVClassic_Map_Server.packets.send.group;
|
||||
using FFXIVClassic_Map_Server.packets.WorldPackets.Send.Group;
|
||||
using FFXIVClassic_Map_Server.actors.chara.npc;
|
||||
|
||||
|
|
|
@ -48,4 +48,4 @@ CREATE TABLE `characters` (
|
|||
`homepoint` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`homepointInn` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=166 DEFAULT CHARSET=utf8;
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;
|
||||
|
|
|
@ -12,12 +12,11 @@ SET FOREIGN_KEY_CHECKS=0;
|
|||
-- Table structure for retainers_inventory
|
||||
-- ----------------------------
|
||||
CREATE TABLE `retainers_inventory` (
|
||||
`id` int(10) unsigned zerofill NOT NULL AUTO_INCREMENT,
|
||||
`retainerId` int(10) unsigned NOT NULL,
|
||||
`itemPackage` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`serverItemId` int(10) unsigned NOT NULL,
|
||||
PRIMARY KEY (`id`,`retainerId`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=345 DEFAULT CHARSET=utf8;
|
||||
`itemPackage` mediumint(8) unsigned NOT NULL,
|
||||
PRIMARY KEY (`retainerId`,`serverItemId`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records
|
||||
|
|
|
@ -20,7 +20,7 @@ CREATE TABLE `server_items` (
|
|||
`isAttached` tinyint(1) unsigned DEFAULT '0',
|
||||
`isDealing` tinyint(1) unsigned DEFAULT '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=2659 DEFAULT CHARSET=utf8;
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records
|
||||
|
|
Loading…
Add table
Reference in a new issue