mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-23 11:05:56 +02:00
Merge branch 'develop'
This commit is contained in:
commit
e501d5b796
2 changed files with 11 additions and 22 deletions
|
@ -314,20 +314,7 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||
|
||||
subpackets.Add(SetAchievementPointsPacket.buildPacket(playerActorId, achievementPoints));
|
||||
subpackets.Add(Database.getLatestAchievements(this));
|
||||
subpackets.Add(Database.getAchievementsPacket(this));
|
||||
|
||||
/*
|
||||
if (isInn)
|
||||
{
|
||||
SetCutsceneBookPacket book = new SetCutsceneBookPacket();
|
||||
for (int i = 0; i < book.cutsceneFlags.Length; i++)
|
||||
book.cutsceneFlags[i] = true;
|
||||
client.queuePacket(book.buildPacket(player.actorID), true, false);
|
||||
|
||||
//
|
||||
//subpackets.Add(SetPlayerDreamPacket.buildPacket(playerActorId, );
|
||||
}
|
||||
*/
|
||||
subpackets.Add(Database.getAchievementsPacket(this));
|
||||
}
|
||||
|
||||
return subpackets;
|
||||
|
@ -547,10 +534,10 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||
if (zone.isInn)
|
||||
{
|
||||
SetCutsceneBookPacket cutsceneBookPacket = new SetCutsceneBookPacket();
|
||||
for (int i = 64; i < 1200; i++)
|
||||
for (int i = 0; i < 2048; i++)
|
||||
cutsceneBookPacket.cutsceneFlags[i] = true;
|
||||
|
||||
SubPacket packet = cutsceneBookPacket.buildPacket(actorId, "Test PathCompanion", 11, 1, 1);
|
||||
SubPacket packet = cutsceneBookPacket.buildPacket(actorId, "<Path Companion>", 11, 1, 1);
|
||||
|
||||
packet.debugPrintSubPacket();
|
||||
queuePacket(packet);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue