Files
BLHX.Server/BLHX.Server.Game/Handlers/P60.cs
2024-02-20 23:47:02 +07:00

36 lines
970 B
C#

using BLHX.Server.Common.Proto;
using BLHX.Server.Common.Proto.p60;
namespace BLHX.Server.Game.Handlers
{
internal static class P60
{
[PacketHandler(Command.Cs60037)]
static void GuildInfoHandler(Connection connection, Packet packet)
{
connection.Send(new Sc60000()
{
Guild = new()
{
DonateTasks = [1],
TechIds = [8, 0, 18, 6, 8, 0, 16, 0, 24, 0, 24, 0, 40, 0, 48, 0, 56, 0, 64, 0],
BenefitTime = 1,
WeeklyTaskFlag = 1
}
});
}
[PacketHandler(Command.Cs60102)]
static void GuildUserInfoHandler(Connection connection, Packet packet)
{
connection.Send(new Sc60103()
{
UserInfo = new()
{
DonateTasks = [1, 20, 4]
}
});
}
}
}