Files
KianaBH3/GameServer/Server/Packet/Send/Dummy/PacketGetRewardLineActivityRsp.cs
2025-06-14 11:15:32 +08:00

28 lines
841 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using KianaBH.KcpSharp;
using KianaBH.Proto;
namespace KianaBH.GameServer.Server.Packet.Send.Dummy;
public class PacketGetRewardLineActivityRsp : BasePacket
{
public PacketGetRewardLineActivityRsp() : base(CmdIds.GetRewardLineActivityRsp)
{
// TODO: Hardcoded
var proto = new GetRewardLineActivityRsp
{
RewardLineActivityList =
{
Enumerable.Range(10, 4) // 1013
.Concat([14, 15, 16, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39])
.Concat(Enumerable.Range(45, 18)) // 4562
.Concat([64, 65, 66, 67, 68, 69, 70, 71, 72])
.Select(id => new RewardLineActivity { Id = (uint)id })
.ToList()
}
};
SetData(proto);
}
}