mirror of
https://github.com/rafi1212122/BLHX.Server.git
synced 2025-12-12 22:44:36 +01:00
31 lines
1020 B
C#
31 lines
1020 B
C#
using BLHX.Server.Common.Proto;
|
|
using BLHX.Server.Common.Proto.p16;
|
|
using BLHX.Server.Common.Utils;
|
|
|
|
namespace BLHX.Server.Game.Handlers {
|
|
internal static class P16 {
|
|
[PacketHandler(Command.Cs16001, SaveDataAfterRun = true)]
|
|
static void DormTrainShoppingHandler(Connection connection, Packet packet) {
|
|
var req = packet.Decode<Cs16001>();
|
|
|
|
connection.Send(new Sc16002() { });
|
|
}
|
|
|
|
[PacketHandler(Command.Cs16104)]
|
|
static void GetChargeListHandler(Connection connection, Packet packet) {
|
|
connection.Send(new Sc16105());
|
|
}
|
|
|
|
[PacketHandler(Command.Cs16106)]
|
|
static void GetExchangeItemHandler(Connection connection, Packet packet) {
|
|
connection.Send(new Sc16107());
|
|
}
|
|
}
|
|
|
|
static class P16ConnectionNotifyExtensions {
|
|
public static void NotifyShopMonthData(this Connection connection) {
|
|
connection.Send(new Sc16200() { Month = (uint)DateTime.Now.Month });
|
|
}
|
|
}
|
|
}
|