Init enter game

This commit is contained in:
Naruse
2025-06-14 11:15:32 +08:00
commit 6a03b39f07
568 changed files with 92872 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
using KianaBH.KcpSharp;
using KianaBH.Proto;
namespace KianaBH.GameServer.Server.Packet.Send.Adventure;
public class PacketGetAdventureGroupRsp : BasePacket
{
public PacketGetAdventureGroupRsp() : base(CmdIds.GetAdventureGroupRsp)
{
var proto = new GetAdventureGroupRsp
{
};
SetData(proto);
}
}

View File

@@ -0,0 +1,57 @@
using KianaBH.KcpSharp;
using KianaBH.Proto;
namespace KianaBH.GameServer.Server.Packet.Send.Adventure;
public class PacketGetAdventureStorySweepInfoRsp : BasePacket
{
public PacketGetAdventureStorySweepInfoRsp() : base(CmdIds.GetAdventureStorySweepInfoRsp)
{
// TODO: Hardcoded
var proto = new GetAdventureStorySweepInfoRsp
{
StorySweepList =
{
new IslandStorySweepData
{
AvatarIdList =
{
20401,
20301,
20201
},
IsFinished = true,
OverTime = 1719938652,
SweepId = 282
},
new IslandStorySweepData
{
AvatarIdList =
{
3701,
3601,
3501
},
IsFinished = true,
OverTime = 1719938654,
SweepId = 282
},
new IslandStorySweepData
{
AvatarIdList =
{
3301,
3201,
3101
},
IsFinished = true,
OverTime = 1719938655,
SweepId = 282
}
}
};
SetData(proto);
}
}

View File

@@ -0,0 +1,17 @@
using KianaBH.KcpSharp;
using KianaBH.Proto;
namespace KianaBH.GameServer.Server.Packet.Send.Adventure;
public class PacketGetConsignedOrderDataRsp : BasePacket
{
public PacketGetConsignedOrderDataRsp() : base(CmdIds.GetConsignedOrderDataRsp)
{
var proto = new GetConsignedOrderDataRsp
{
};
SetData(proto);
}
}