mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Bunch of bugfixes and final tweaking to get inventory working.
This commit is contained in:
@@ -432,6 +432,7 @@ namespace FFXIVClassic_Map_Server.Actors
|
||||
queuePacket(InventoryBeginChangePacket.buildPacket(actorId));
|
||||
inventories[Inventory.NORMAL].sendFullInventory();
|
||||
inventories[Inventory.CURRANCY].sendFullInventory();
|
||||
inventories[Inventory.KEYITEMS].sendFullInventory();
|
||||
#region equipsetup
|
||||
// EquipmentListX08Packet initialEqupmentPacket = new EquipmentListX08Packet();
|
||||
// initialEqupmentPacket.setItem(EquipmentListX08Packet.SLOT_BODY, 5);
|
||||
@@ -634,6 +635,11 @@ namespace FFXIVClassic_Map_Server.Actors
|
||||
//zone.broadcastPacketAroundActor(this, worldMasterMessage);
|
||||
}
|
||||
|
||||
public Inventory getInventory(ushort type)
|
||||
{
|
||||
return inventories[type];
|
||||
}
|
||||
|
||||
public void runEventFunction(string functionName, params object[] parameters)
|
||||
{
|
||||
List<LuaParam> lParams = LuaUtils.createLuaParamList(parameters);
|
||||
|
Reference in New Issue
Block a user