mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 22:04:36 +01:00
Init enter game
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user