Implemented countdowns.

This commit is contained in:
Filip Maj 2017-10-01 12:39:46 -04:00
parent 58334a0e5f
commit 441c1a6383
5 changed files with 42 additions and 5 deletions

View file

@ -210,6 +210,11 @@ namespace FFXIVClassic_Map_Server
case 0x00CE:
subpacket.DebugPrintSubPacket();
break;
//Countdown requested
case 0x00CF:
CountdownRequestPacket countdownPacket = new CountdownRequestPacket(subpacket.data);
session.GetActor().BroadcastCountdown(countdownPacket.countdownLength, countdownPacket.syncTime);
break;
//Event Result
case 0x012E:
subpacket.DebugPrintSubPacket();