mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-22 10:36:06 +02:00
Added item storage packet for armoire.
This commit is contained in:
parent
ed5ee01ba6
commit
c1d67538f3
3 changed files with 32 additions and 1 deletions
|
@ -537,16 +537,17 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||
playerSession.QueuePacket(debugSpawn);
|
||||
playerSession.QueuePacket(worldMasterSpawn);
|
||||
|
||||
//Inn Packets (Dream, Cutscenes, Armoire)
|
||||
if (zone.isInn)
|
||||
{
|
||||
SetCutsceneBookPacket cutsceneBookPacket = new SetCutsceneBookPacket();
|
||||
for (int i = 0; i < 2048; i++)
|
||||
cutsceneBookPacket.cutsceneFlags[i] = true;
|
||||
|
||||
SubPacket packet = cutsceneBookPacket.BuildPacket(actorId, "<Path Companion>", 11, 1, 1);
|
||||
|
||||
packet.DebugPrintSubPacket();
|
||||
QueuePacket(packet);
|
||||
QueuePacket(SetPlayerItemStoragePacket.BuildPacket(actorId));
|
||||
}
|
||||
|
||||
if (zone.GetWeatherDirector() != null)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue