mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
Fix Pet System (#43)
This commit is contained in:
@@ -138,6 +138,36 @@ public class CommandGiveall : ICommand
|
||||
I18NManager.Translate("Word.Material"), amount.ToString()));
|
||||
}
|
||||
|
||||
[CommandMethod("0 pet")]
|
||||
public async ValueTask GiveAllPet(CommandArg arg)
|
||||
{
|
||||
var player = arg.Target?.Player;
|
||||
if (player == null)
|
||||
{
|
||||
await arg.SendMsg(I18NManager.Translate("Game.Command.Notice.PlayerNotFound"));
|
||||
return;
|
||||
}
|
||||
arg.CharacterArgs.TryGetValue("x", out var amountStr);
|
||||
amountStr ??= "1";
|
||||
if (!int.TryParse(amountStr, out var amount))
|
||||
{
|
||||
await arg.SendMsg(I18NManager.Translate("Game.Command.Notice.InvalidArguments"));
|
||||
return;
|
||||
}
|
||||
var petList = GameData.ItemConfigData.Values;
|
||||
var items = new List<ItemData>();
|
||||
foreach (var pet in petList)
|
||||
if (pet.ItemMainType == ItemMainTypeEnum.Pet)
|
||||
items.Add(new ItemData
|
||||
{
|
||||
ItemId = pet.ID,
|
||||
Count = amount
|
||||
});
|
||||
await player.InventoryManager!.AddItems(items, true);
|
||||
await arg.SendMsg(I18NManager.Translate("Game.Command.GiveAll.GiveAllItems",
|
||||
I18NManager.Translate("Word.Pet"), "1"));
|
||||
}
|
||||
|
||||
[CommandMethod("0 relic")]
|
||||
public async ValueTask GiveAllRelic(CommandArg arg)
|
||||
{
|
||||
|
||||
17
Common/Data/Excel/PetExcel.cs
Normal file
17
Common/Data/Excel/PetExcel.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace EggLink.DanhengServer.Data.Excel;
|
||||
|
||||
[ResourceEntity("PetConfig.json")]
|
||||
public class PetExcel : ExcelResource
|
||||
{
|
||||
public int PetID { get; set; }
|
||||
public int PetItemID { get; set; }
|
||||
public int SummonUnitID { get; set; }
|
||||
public override int GetId()
|
||||
{
|
||||
return PetID;
|
||||
}
|
||||
public override void Loaded()
|
||||
{
|
||||
GameData.PetData.Add(PetID, this);
|
||||
}
|
||||
}
|
||||
@@ -131,6 +131,7 @@ public static class GameData
|
||||
public static Dictionary<int, RelicConfigExcel> RelicConfigData { get; private set; } = [];
|
||||
public static Dictionary<int, RelicExpItemExcel> RelicExpItemData { get; private set; } = [];
|
||||
public static Dictionary<int, RelicExpTypeExcel> RelicExpTypeData { get; private set; } = [];
|
||||
public static Dictionary<int, PetExcel> PetData { get; private set; } = [];
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
@@ -27,6 +27,8 @@ public class PlayerData : BaseDatabaseDataHelper
|
||||
public int Mcoin { get; set; } = 0; // Crystals
|
||||
public int TalentPoints { get; set; } = 0; // Rogue talent points
|
||||
|
||||
public int Pet { get; set; } = 0;
|
||||
|
||||
public int Stamina { get; set; } = 240;
|
||||
public double StaminaReserve { get; set; } = 0;
|
||||
public long NextStaminaRecover { get; set; } = 0;
|
||||
|
||||
@@ -38,6 +38,7 @@ public class WordTextCHS
|
||||
public string Rank => "星魂";
|
||||
public string Avatar => "角色";
|
||||
public string Material => "材料";
|
||||
public string Pet => "宠物";
|
||||
public string Relic => "遗器";
|
||||
public string Equipment => "光锥";
|
||||
public string Talent => "行迹";
|
||||
|
||||
@@ -38,6 +38,7 @@ public class WordTextCHT
|
||||
public string Rank => "星魂";
|
||||
public string Avatar => "角色";
|
||||
public string Material => "材料";
|
||||
public string Pet => "寵物";
|
||||
public string Relic => "遺器";
|
||||
public string Equipment => "光錐";
|
||||
public string Talent => "行跡";
|
||||
|
||||
@@ -38,6 +38,7 @@ public class WordTextEN
|
||||
public string Rank => "Rank";
|
||||
public string Avatar => "Avatar";
|
||||
public string Material => "Material";
|
||||
public string Pet => "Pet";
|
||||
public string Relic => "Relic";
|
||||
public string Equipment => "Light Cone";
|
||||
public string Talent => "Talent";
|
||||
|
||||
@@ -203,6 +203,7 @@ public class InventoryManager(PlayerInstance player) : BasePlayerManager(player)
|
||||
switch (GameData.ItemConfigData[itemId].ItemMainType)
|
||||
{
|
||||
case ItemMainTypeEnum.Material:
|
||||
case ItemMainTypeEnum.Pet:
|
||||
case ItemMainTypeEnum.Virtual:
|
||||
case ItemMainTypeEnum.Usable:
|
||||
case ItemMainTypeEnum.Mission:
|
||||
@@ -263,6 +264,7 @@ public class InventoryManager(PlayerInstance player) : BasePlayerManager(player)
|
||||
switch (itemConfig.ItemMainType)
|
||||
{
|
||||
case ItemMainTypeEnum.Material:
|
||||
case ItemMainTypeEnum.Pet:
|
||||
case ItemMainTypeEnum.Mission:
|
||||
case ItemMainTypeEnum.Usable:
|
||||
var item = Data.MaterialItems.Find(x => x.ItemId == itemId);
|
||||
@@ -341,6 +343,7 @@ public class InventoryManager(PlayerInstance player) : BasePlayerManager(player)
|
||||
switch (mainType)
|
||||
{
|
||||
case ItemMainTypeEnum.Material:
|
||||
case ItemMainTypeEnum.Pet:
|
||||
return Data.MaterialItems.Find(x => x.ItemId == itemId);
|
||||
case ItemMainTypeEnum.Equipment:
|
||||
return uniqueId > 0
|
||||
|
||||
15
GameServer/Server/Packet/Recv/Pet/HandlerGetPetDataCsReq.cs
Normal file
15
GameServer/Server/Packet/Recv/Pet/HandlerGetPetDataCsReq.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using EggLink.DanhengServer.GameServer.Server.Packet.Send.Pet;
|
||||
using EggLink.DanhengServer.Kcp;
|
||||
|
||||
namespace EggLink.DanhengServer.GameServer.Server.Packet.Recv.Pet;
|
||||
|
||||
[Opcode(CmdIds.GetPetDataCsReq)]
|
||||
public class HandlerGetPetDataCsReq : Handler
|
||||
{
|
||||
public override async Task OnHandle(Connection connection, byte[] header, byte[] data)
|
||||
{
|
||||
var player = connection.Player!;
|
||||
|
||||
await connection.SendPacket(new PacketGetPetDataScRsp(player));
|
||||
}
|
||||
}
|
||||
18
GameServer/Server/Packet/Recv/Pet/HandlerRecallPetCsReq.cs
Normal file
18
GameServer/Server/Packet/Recv/Pet/HandlerRecallPetCsReq.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using EggLink.DanhengServer.GameServer.Server.Packet.Send.Pet;
|
||||
using EggLink.DanhengServer.Kcp;
|
||||
using EggLink.DanhengServer.Proto;
|
||||
|
||||
namespace EggLink.DanhengServer.GameServer.Server.Packet.Recv.Pet;
|
||||
|
||||
[Opcode(CmdIds.RecallPetCsReq)]
|
||||
public class HandlerRecallPetCsReq : Handler
|
||||
{
|
||||
public override async Task OnHandle(Connection connection, byte[] header, byte[] data)
|
||||
{
|
||||
var req = RecallPetCsReq.Parser.ParseFrom(data);
|
||||
|
||||
connection.Player!.Data.Pet = 0;
|
||||
|
||||
await connection.SendPacket(new PacketRecallPetScRsp(req.SummonedPetId));
|
||||
}
|
||||
}
|
||||
23
GameServer/Server/Packet/Recv/Pet/HandlerSummonPetCsReq.cs
Normal file
23
GameServer/Server/Packet/Recv/Pet/HandlerSummonPetCsReq.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using EggLink.DanhengServer.GameServer.Server.Packet.Send.Pet;
|
||||
using EggLink.DanhengServer.Kcp;
|
||||
using EggLink.DanhengServer.Proto;
|
||||
|
||||
namespace EggLink.DanhengServer.GameServer.Server.Packet.Recv.Pet;
|
||||
|
||||
[Opcode(CmdIds.SummonPetCsReq)]
|
||||
public class HandlerSummonPetCsReq : Handler
|
||||
{
|
||||
public override async Task OnHandle(Connection connection, byte[] header, byte[] data)
|
||||
{
|
||||
var req = SummonPetCsReq.Parser.ParseFrom(data);
|
||||
|
||||
int curPetId = connection.Player!.Data.Pet;
|
||||
if (curPetId != req.SummonedPetId && curPetId != 0) {
|
||||
await connection.SendPacket(new PacketCurPetChangedScNotify(req.SummonedPetId));
|
||||
}
|
||||
|
||||
connection.Player!.Data.Pet = (int)req.SummonedPetId;
|
||||
|
||||
await connection.SendPacket(new PacketSummonPetScRsp(curPetId, req.SummonedPetId));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using EggLink.DanhengServer.Kcp;
|
||||
using EggLink.DanhengServer.Proto;
|
||||
|
||||
namespace EggLink.DanhengServer.GameServer.Server.Packet.Send.Pet;
|
||||
|
||||
public class PacketCurPetChangedScNotify : BasePacket
|
||||
{
|
||||
public PacketCurPetChangedScNotify(uint newPetId) : base(CmdIds.CurPetChangedScNotify)
|
||||
{
|
||||
|
||||
var proto = new CurPetChangedScNotify
|
||||
{
|
||||
CurPetId = newPetId,
|
||||
};
|
||||
|
||||
SetData(proto);
|
||||
}
|
||||
}
|
||||
26
GameServer/Server/Packet/Send/Pet/PacketGetPetDataScRsp.cs
Normal file
26
GameServer/Server/Packet/Send/Pet/PacketGetPetDataScRsp.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using EggLink.DanhengServer.Data;
|
||||
using EggLink.DanhengServer.GameServer.Game.Player;
|
||||
using EggLink.DanhengServer.Kcp;
|
||||
using EggLink.DanhengServer.Proto;
|
||||
|
||||
namespace EggLink.DanhengServer.GameServer.Server.Packet.Send.Pet;
|
||||
|
||||
public class PacketGetPetDataScRsp : BasePacket
|
||||
{
|
||||
public PacketGetPetDataScRsp(PlayerInstance player) : base(CmdIds.GetPetDataScRsp)
|
||||
{
|
||||
|
||||
var proto = new GetPetDataScRsp
|
||||
{
|
||||
CurPetId = (uint)player.Data.Pet,
|
||||
};
|
||||
|
||||
foreach (var pet in GameData.PetData.Values)
|
||||
{
|
||||
|
||||
proto.PetIdList.Add((uint)pet.PetID);
|
||||
}
|
||||
|
||||
SetData(proto);
|
||||
}
|
||||
}
|
||||
19
GameServer/Server/Packet/Send/Pet/PacketRecallPetScRsp.cs
Normal file
19
GameServer/Server/Packet/Send/Pet/PacketRecallPetScRsp.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using EggLink.DanhengServer.Kcp;
|
||||
using EggLink.DanhengServer.Proto;
|
||||
|
||||
namespace EggLink.DanhengServer.GameServer.Server.Packet.Send.Pet;
|
||||
|
||||
public class PacketRecallPetScRsp : BasePacket
|
||||
{
|
||||
public PacketRecallPetScRsp(uint newPetId) : base(CmdIds.RecallPetScRsp)
|
||||
{
|
||||
|
||||
var proto = new RecallPetScRsp
|
||||
{
|
||||
CurPetId = newPetId,
|
||||
NewPetId = 0
|
||||
};
|
||||
|
||||
SetData(proto);
|
||||
}
|
||||
}
|
||||
19
GameServer/Server/Packet/Send/Pet/PacketSummonPetScRsp.cs
Normal file
19
GameServer/Server/Packet/Send/Pet/PacketSummonPetScRsp.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using EggLink.DanhengServer.Kcp;
|
||||
using EggLink.DanhengServer.Proto;
|
||||
|
||||
namespace EggLink.DanhengServer.GameServer.Server.Packet.Send.Pet;
|
||||
|
||||
public class PacketSummonPetScRsp : BasePacket
|
||||
{
|
||||
public PacketSummonPetScRsp(int curPetId, uint newPetId) : base(CmdIds.SummonPetScRsp)
|
||||
{
|
||||
|
||||
var proto = new SummonPetScRsp
|
||||
{
|
||||
CurPetId = (uint)curPetId,
|
||||
NewPetId = newPetId
|
||||
};
|
||||
|
||||
SetData(proto);
|
||||
}
|
||||
}
|
||||
@@ -160,6 +160,7 @@ public class PacketPlayerSyncScNotify : BasePacket
|
||||
break;
|
||||
case ItemMainTypeEnum.Mission:
|
||||
case ItemMainTypeEnum.Material:
|
||||
case ItemMainTypeEnum.Pet:
|
||||
case ItemMainTypeEnum.Usable:
|
||||
notify.MaterialList.Add(item.ToMaterialProto());
|
||||
break;
|
||||
|
||||
@@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static CurPetChangedScNotifyReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChtDdXJQZXRDaGFuZ2VkU2NOb3RpZnkucHJvdG8iLAoVQ3VyUGV0Q2hhbmdl",
|
||||
"ZFNjTm90aWZ5EhMKC0ZNUEtMSUVIQ0ZPGAggASgNQh6qAhtFZ2dMaW5rLkRh",
|
||||
"bmhlbmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
|
||||
"ChtDdXJQZXRDaGFuZ2VkU2NOb3RpZnkucHJvdG8iKwoVQ3VyUGV0Q2hhbmdl",
|
||||
"ZFNjTm90aWZ5EhIKCmN1cl9wZXRfaWQYCCABKA1CHqoCG0VnZ0xpbmsuRGFu",
|
||||
"aGVuZ1NlcnZlci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CurPetChangedScNotify), global::EggLink.DanhengServer.Proto.CurPetChangedScNotify.Parser, new[]{ "FMPKLIEHCFO" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.CurPetChangedScNotify), global::EggLink.DanhengServer.Proto.CurPetChangedScNotify.Parser, new[]{ "CurPetId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -72,7 +72,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public CurPetChangedScNotify(CurPetChangedScNotify other) : this() {
|
||||
fMPKLIEHCFO_ = other.fMPKLIEHCFO_;
|
||||
curPetId_ = other.curPetId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -82,15 +82,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new CurPetChangedScNotify(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "FMPKLIEHCFO" field.</summary>
|
||||
public const int FMPKLIEHCFOFieldNumber = 8;
|
||||
private uint fMPKLIEHCFO_;
|
||||
/// <summary>Field number for the "cur_pet_id" field.</summary>
|
||||
public const int CurPetIdFieldNumber = 8;
|
||||
private uint curPetId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint FMPKLIEHCFO {
|
||||
get { return fMPKLIEHCFO_; }
|
||||
public uint CurPetId {
|
||||
get { return curPetId_; }
|
||||
set {
|
||||
fMPKLIEHCFO_ = value;
|
||||
curPetId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,7 +109,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (FMPKLIEHCFO != other.FMPKLIEHCFO) return false;
|
||||
if (CurPetId != other.CurPetId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -117,7 +117,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (FMPKLIEHCFO != 0) hash ^= FMPKLIEHCFO.GetHashCode();
|
||||
if (CurPetId != 0) hash ^= CurPetId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -136,9 +136,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (FMPKLIEHCFO != 0) {
|
||||
if (CurPetId != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteUInt32(FMPKLIEHCFO);
|
||||
output.WriteUInt32(CurPetId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -150,9 +150,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (FMPKLIEHCFO != 0) {
|
||||
if (CurPetId != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteUInt32(FMPKLIEHCFO);
|
||||
output.WriteUInt32(CurPetId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -164,8 +164,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (FMPKLIEHCFO != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(FMPKLIEHCFO);
|
||||
if (CurPetId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CurPetId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -179,8 +179,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.FMPKLIEHCFO != 0) {
|
||||
FMPKLIEHCFO = other.FMPKLIEHCFO;
|
||||
if (other.CurPetId != 0) {
|
||||
CurPetId = other.CurPetId;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -198,7 +198,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 64: {
|
||||
FMPKLIEHCFO = input.ReadUInt32();
|
||||
CurPetId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -217,7 +217,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 64: {
|
||||
FMPKLIEHCFO = input.ReadUInt32();
|
||||
CurPetId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static GetPetDataScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChVHZXRQZXREYXRhU2NSc3AucHJvdG8iTAoPR2V0UGV0RGF0YVNjUnNwEhMK",
|
||||
"C01MTkJFSEpPSk1FGAogAygNEg8KB3JldGNvZGUYBiABKA0SEwoLRk1QS0xJ",
|
||||
"RUhDRk8YBSABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZlci5Qcm90b2IG",
|
||||
"cHJvdG8z"));
|
||||
"ChVHZXRQZXREYXRhU2NSc3AucHJvdG8iSwoPR2V0UGV0RGF0YVNjUnNwEhMK",
|
||||
"C3BldF9pZF9saXN0GAogAygNEg8KB3JldGNvZGUYBiABKA0SEgoKY3VyX3Bl",
|
||||
"dF9pZBgFIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZw",
|
||||
"cm90bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetPetDataScRsp), global::EggLink.DanhengServer.Proto.GetPetDataScRsp.Parser, new[]{ "MLNBEHJOJME", "Retcode", "FMPKLIEHCFO" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.GetPetDataScRsp), global::EggLink.DanhengServer.Proto.GetPetDataScRsp.Parser, new[]{ "PetIdList", "Retcode", "CurPetId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -73,9 +73,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public GetPetDataScRsp(GetPetDataScRsp other) : this() {
|
||||
mLNBEHJOJME_ = other.mLNBEHJOJME_.Clone();
|
||||
petIdList_ = other.petIdList_.Clone();
|
||||
retcode_ = other.retcode_;
|
||||
fMPKLIEHCFO_ = other.fMPKLIEHCFO_;
|
||||
curPetId_ = other.curPetId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -85,15 +85,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new GetPetDataScRsp(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "MLNBEHJOJME" field.</summary>
|
||||
public const int MLNBEHJOJMEFieldNumber = 10;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_mLNBEHJOJME_codec
|
||||
/// <summary>Field number for the "pet_id_list" field.</summary>
|
||||
public const int PetIdListFieldNumber = 10;
|
||||
private static readonly pb::FieldCodec<uint> _repeated_petIdList_codec
|
||||
= pb::FieldCodec.ForUInt32(82);
|
||||
private readonly pbc::RepeatedField<uint> mLNBEHJOJME_ = new pbc::RepeatedField<uint>();
|
||||
private readonly pbc::RepeatedField<uint> petIdList_ = new pbc::RepeatedField<uint>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<uint> MLNBEHJOJME {
|
||||
get { return mLNBEHJOJME_; }
|
||||
public pbc::RepeatedField<uint> PetIdList {
|
||||
get { return petIdList_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "retcode" field.</summary>
|
||||
@@ -108,15 +108,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "FMPKLIEHCFO" field.</summary>
|
||||
public const int FMPKLIEHCFOFieldNumber = 5;
|
||||
private uint fMPKLIEHCFO_;
|
||||
/// <summary>Field number for the "cur_pet_id" field.</summary>
|
||||
public const int CurPetIdFieldNumber = 5;
|
||||
private uint curPetId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint FMPKLIEHCFO {
|
||||
get { return fMPKLIEHCFO_; }
|
||||
public uint CurPetId {
|
||||
get { return curPetId_; }
|
||||
set {
|
||||
fMPKLIEHCFO_ = value;
|
||||
curPetId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -135,9 +135,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if(!mLNBEHJOJME_.Equals(other.mLNBEHJOJME_)) return false;
|
||||
if(!petIdList_.Equals(other.petIdList_)) return false;
|
||||
if (Retcode != other.Retcode) return false;
|
||||
if (FMPKLIEHCFO != other.FMPKLIEHCFO) return false;
|
||||
if (CurPetId != other.CurPetId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -145,9 +145,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
hash ^= mLNBEHJOJME_.GetHashCode();
|
||||
hash ^= petIdList_.GetHashCode();
|
||||
if (Retcode != 0) hash ^= Retcode.GetHashCode();
|
||||
if (FMPKLIEHCFO != 0) hash ^= FMPKLIEHCFO.GetHashCode();
|
||||
if (CurPetId != 0) hash ^= CurPetId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -166,15 +166,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (FMPKLIEHCFO != 0) {
|
||||
if (CurPetId != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteUInt32(FMPKLIEHCFO);
|
||||
output.WriteUInt32(CurPetId);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
mLNBEHJOJME_.WriteTo(output, _repeated_mLNBEHJOJME_codec);
|
||||
petIdList_.WriteTo(output, _repeated_petIdList_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -185,15 +185,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (FMPKLIEHCFO != 0) {
|
||||
if (CurPetId != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteUInt32(FMPKLIEHCFO);
|
||||
output.WriteUInt32(CurPetId);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(Retcode);
|
||||
}
|
||||
mLNBEHJOJME_.WriteTo(ref output, _repeated_mLNBEHJOJME_codec);
|
||||
petIdList_.WriteTo(ref output, _repeated_petIdList_codec);
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
@@ -204,12 +204,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
size += mLNBEHJOJME_.CalculateSize(_repeated_mLNBEHJOJME_codec);
|
||||
size += petIdList_.CalculateSize(_repeated_petIdList_codec);
|
||||
if (Retcode != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode);
|
||||
}
|
||||
if (FMPKLIEHCFO != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(FMPKLIEHCFO);
|
||||
if (CurPetId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CurPetId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -223,12 +223,12 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
mLNBEHJOJME_.Add(other.mLNBEHJOJME_);
|
||||
petIdList_.Add(other.petIdList_);
|
||||
if (other.Retcode != 0) {
|
||||
Retcode = other.Retcode;
|
||||
}
|
||||
if (other.FMPKLIEHCFO != 0) {
|
||||
FMPKLIEHCFO = other.FMPKLIEHCFO;
|
||||
if (other.CurPetId != 0) {
|
||||
CurPetId = other.CurPetId;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -246,7 +246,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 40: {
|
||||
FMPKLIEHCFO = input.ReadUInt32();
|
||||
CurPetId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 48: {
|
||||
@@ -255,7 +255,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
case 82:
|
||||
case 80: {
|
||||
mLNBEHJOJME_.AddEntriesFrom(input, _repeated_mLNBEHJOJME_codec);
|
||||
petIdList_.AddEntriesFrom(input, _repeated_petIdList_codec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -274,7 +274,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 40: {
|
||||
FMPKLIEHCFO = input.ReadUInt32();
|
||||
CurPetId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 48: {
|
||||
@@ -283,7 +283,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
case 82:
|
||||
case 80: {
|
||||
mLNBEHJOJME_.AddEntriesFrom(ref input, _repeated_mLNBEHJOJME_codec);
|
||||
petIdList_.AddEntriesFrom(ref input, _repeated_petIdList_codec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static RecallPetCsReqReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChRSZWNhbGxQZXRDc1JlcS5wcm90byIlCg5SZWNhbGxQZXRDc1JlcRITCgtP",
|
||||
"TUVLUEdPSUxLQRgIIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlBy",
|
||||
"b3RvYgZwcm90bzM="));
|
||||
"ChRSZWNhbGxQZXRDc1JlcS5wcm90byIpCg5SZWNhbGxQZXRDc1JlcRIXCg9z",
|
||||
"dW1tb25lZF9wZXRfaWQYCCABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZl",
|
||||
"ci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.RecallPetCsReq), global::EggLink.DanhengServer.Proto.RecallPetCsReq.Parser, new[]{ "OMEKPGOILKA" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.RecallPetCsReq), global::EggLink.DanhengServer.Proto.RecallPetCsReq.Parser, new[]{ "SummonedPetId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -72,7 +72,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public RecallPetCsReq(RecallPetCsReq other) : this() {
|
||||
oMEKPGOILKA_ = other.oMEKPGOILKA_;
|
||||
summonedPetId_ = other.summonedPetId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -82,15 +82,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new RecallPetCsReq(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "OMEKPGOILKA" field.</summary>
|
||||
public const int OMEKPGOILKAFieldNumber = 8;
|
||||
private uint oMEKPGOILKA_;
|
||||
/// <summary>Field number for the "summoned_pet_id" field.</summary>
|
||||
public const int SummonedPetIdFieldNumber = 8;
|
||||
private uint summonedPetId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint OMEKPGOILKA {
|
||||
get { return oMEKPGOILKA_; }
|
||||
public uint SummonedPetId {
|
||||
get { return summonedPetId_; }
|
||||
set {
|
||||
oMEKPGOILKA_ = value;
|
||||
summonedPetId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,7 +109,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (OMEKPGOILKA != other.OMEKPGOILKA) return false;
|
||||
if (SummonedPetId != other.SummonedPetId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -117,7 +117,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (OMEKPGOILKA != 0) hash ^= OMEKPGOILKA.GetHashCode();
|
||||
if (SummonedPetId != 0) hash ^= SummonedPetId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -136,9 +136,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (OMEKPGOILKA != 0) {
|
||||
if (SummonedPetId != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteUInt32(OMEKPGOILKA);
|
||||
output.WriteUInt32(SummonedPetId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -150,9 +150,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (OMEKPGOILKA != 0) {
|
||||
if (SummonedPetId != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteUInt32(OMEKPGOILKA);
|
||||
output.WriteUInt32(SummonedPetId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -164,8 +164,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (OMEKPGOILKA != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OMEKPGOILKA);
|
||||
if (SummonedPetId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SummonedPetId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -179,8 +179,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.OMEKPGOILKA != 0) {
|
||||
OMEKPGOILKA = other.OMEKPGOILKA;
|
||||
if (other.SummonedPetId != 0) {
|
||||
SummonedPetId = other.SummonedPetId;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -198,7 +198,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 64: {
|
||||
OMEKPGOILKA = input.ReadUInt32();
|
||||
SummonedPetId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -217,7 +217,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 64: {
|
||||
OMEKPGOILKA = input.ReadUInt32();
|
||||
SummonedPetId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static RecallPetScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChRSZWNhbGxQZXRTY1JzcC5wcm90byJLCg5SZWNhbGxQZXRTY1JzcBIPCgdy",
|
||||
"ZXRjb2RlGA4gASgNEhMKC0VHQUZQTURJRklPGAcgASgNEhMKC0ZNUEtMSUVI",
|
||||
"Q0ZPGA0gASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnBy",
|
||||
"b3RvMw=="));
|
||||
"ChRSZWNhbGxQZXRTY1JzcC5wcm90byJJCg5SZWNhbGxQZXRTY1JzcBIPCgdy",
|
||||
"ZXRjb2RlGA4gASgNEhIKCm5ld19wZXRfaWQYByABKA0SEgoKY3VyX3BldF9p",
|
||||
"ZBgNIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90",
|
||||
"bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.RecallPetScRsp), global::EggLink.DanhengServer.Proto.RecallPetScRsp.Parser, new[]{ "Retcode", "EGAFPMDIFIO", "FMPKLIEHCFO" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.RecallPetScRsp), global::EggLink.DanhengServer.Proto.RecallPetScRsp.Parser, new[]{ "Retcode", "NewPetId", "CurPetId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -74,8 +74,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public RecallPetScRsp(RecallPetScRsp other) : this() {
|
||||
retcode_ = other.retcode_;
|
||||
eGAFPMDIFIO_ = other.eGAFPMDIFIO_;
|
||||
fMPKLIEHCFO_ = other.fMPKLIEHCFO_;
|
||||
newPetId_ = other.newPetId_;
|
||||
curPetId_ = other.curPetId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -97,27 +97,27 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "EGAFPMDIFIO" field.</summary>
|
||||
public const int EGAFPMDIFIOFieldNumber = 7;
|
||||
private uint eGAFPMDIFIO_;
|
||||
/// <summary>Field number for the "new_pet_id" field.</summary>
|
||||
public const int NewPetIdFieldNumber = 7;
|
||||
private uint newPetId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint EGAFPMDIFIO {
|
||||
get { return eGAFPMDIFIO_; }
|
||||
public uint NewPetId {
|
||||
get { return newPetId_; }
|
||||
set {
|
||||
eGAFPMDIFIO_ = value;
|
||||
newPetId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "FMPKLIEHCFO" field.</summary>
|
||||
public const int FMPKLIEHCFOFieldNumber = 13;
|
||||
private uint fMPKLIEHCFO_;
|
||||
/// <summary>Field number for the "cur_pet_id" field.</summary>
|
||||
public const int CurPetIdFieldNumber = 13;
|
||||
private uint curPetId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint FMPKLIEHCFO {
|
||||
get { return fMPKLIEHCFO_; }
|
||||
public uint CurPetId {
|
||||
get { return curPetId_; }
|
||||
set {
|
||||
fMPKLIEHCFO_ = value;
|
||||
curPetId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -137,8 +137,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return true;
|
||||
}
|
||||
if (Retcode != other.Retcode) return false;
|
||||
if (EGAFPMDIFIO != other.EGAFPMDIFIO) return false;
|
||||
if (FMPKLIEHCFO != other.FMPKLIEHCFO) return false;
|
||||
if (NewPetId != other.NewPetId) return false;
|
||||
if (CurPetId != other.CurPetId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -147,8 +147,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Retcode != 0) hash ^= Retcode.GetHashCode();
|
||||
if (EGAFPMDIFIO != 0) hash ^= EGAFPMDIFIO.GetHashCode();
|
||||
if (FMPKLIEHCFO != 0) hash ^= FMPKLIEHCFO.GetHashCode();
|
||||
if (NewPetId != 0) hash ^= NewPetId.GetHashCode();
|
||||
if (CurPetId != 0) hash ^= CurPetId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -167,13 +167,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (EGAFPMDIFIO != 0) {
|
||||
if (NewPetId != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(EGAFPMDIFIO);
|
||||
output.WriteUInt32(NewPetId);
|
||||
}
|
||||
if (FMPKLIEHCFO != 0) {
|
||||
if (CurPetId != 0) {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(FMPKLIEHCFO);
|
||||
output.WriteUInt32(CurPetId);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(112);
|
||||
@@ -189,13 +189,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (EGAFPMDIFIO != 0) {
|
||||
if (NewPetId != 0) {
|
||||
output.WriteRawTag(56);
|
||||
output.WriteUInt32(EGAFPMDIFIO);
|
||||
output.WriteUInt32(NewPetId);
|
||||
}
|
||||
if (FMPKLIEHCFO != 0) {
|
||||
if (CurPetId != 0) {
|
||||
output.WriteRawTag(104);
|
||||
output.WriteUInt32(FMPKLIEHCFO);
|
||||
output.WriteUInt32(CurPetId);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(112);
|
||||
@@ -214,11 +214,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (Retcode != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode);
|
||||
}
|
||||
if (EGAFPMDIFIO != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(EGAFPMDIFIO);
|
||||
if (NewPetId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(NewPetId);
|
||||
}
|
||||
if (FMPKLIEHCFO != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(FMPKLIEHCFO);
|
||||
if (CurPetId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CurPetId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -235,11 +235,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other.Retcode != 0) {
|
||||
Retcode = other.Retcode;
|
||||
}
|
||||
if (other.EGAFPMDIFIO != 0) {
|
||||
EGAFPMDIFIO = other.EGAFPMDIFIO;
|
||||
if (other.NewPetId != 0) {
|
||||
NewPetId = other.NewPetId;
|
||||
}
|
||||
if (other.FMPKLIEHCFO != 0) {
|
||||
FMPKLIEHCFO = other.FMPKLIEHCFO;
|
||||
if (other.CurPetId != 0) {
|
||||
CurPetId = other.CurPetId;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -257,11 +257,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 56: {
|
||||
EGAFPMDIFIO = input.ReadUInt32();
|
||||
NewPetId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 104: {
|
||||
FMPKLIEHCFO = input.ReadUInt32();
|
||||
CurPetId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
@@ -284,11 +284,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 56: {
|
||||
EGAFPMDIFIO = input.ReadUInt32();
|
||||
NewPetId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 104: {
|
||||
FMPKLIEHCFO = input.ReadUInt32();
|
||||
CurPetId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
|
||||
@@ -24,13 +24,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static SummonPetCsReqReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChRTdW1tb25QZXRDc1JlcS5wcm90byIlCg5TdW1tb25QZXRDc1JlcRITCgtP",
|
||||
"TUVLUEdPSUxLQRgKIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlBy",
|
||||
"b3RvYgZwcm90bzM="));
|
||||
"ChRTdW1tb25QZXRDc1JlcS5wcm90byIpCg5TdW1tb25QZXRDc1JlcRIXCg9z",
|
||||
"dW1tb25lZF9wZXRfaWQYCiABKA1CHqoCG0VnZ0xpbmsuRGFuaGVuZ1NlcnZl",
|
||||
"ci5Qcm90b2IGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SummonPetCsReq), global::EggLink.DanhengServer.Proto.SummonPetCsReq.Parser, new[]{ "OMEKPGOILKA" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SummonPetCsReq), global::EggLink.DanhengServer.Proto.SummonPetCsReq.Parser, new[]{ "SummonedPetId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -72,7 +72,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public SummonPetCsReq(SummonPetCsReq other) : this() {
|
||||
oMEKPGOILKA_ = other.oMEKPGOILKA_;
|
||||
summonedPetId_ = other.summonedPetId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -82,15 +82,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new SummonPetCsReq(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "OMEKPGOILKA" field.</summary>
|
||||
public const int OMEKPGOILKAFieldNumber = 10;
|
||||
private uint oMEKPGOILKA_;
|
||||
/// <summary>Field number for the "summoned_pet_id" field.</summary>
|
||||
public const int SummonedPetIdFieldNumber = 10;
|
||||
private uint summonedPetId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint OMEKPGOILKA {
|
||||
get { return oMEKPGOILKA_; }
|
||||
public uint SummonedPetId {
|
||||
get { return summonedPetId_; }
|
||||
set {
|
||||
oMEKPGOILKA_ = value;
|
||||
summonedPetId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,7 +109,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (OMEKPGOILKA != other.OMEKPGOILKA) return false;
|
||||
if (SummonedPetId != other.SummonedPetId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -117,7 +117,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (OMEKPGOILKA != 0) hash ^= OMEKPGOILKA.GetHashCode();
|
||||
if (SummonedPetId != 0) hash ^= SummonedPetId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -136,9 +136,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (OMEKPGOILKA != 0) {
|
||||
if (SummonedPetId != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(OMEKPGOILKA);
|
||||
output.WriteUInt32(SummonedPetId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
@@ -150,9 +150,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (OMEKPGOILKA != 0) {
|
||||
if (SummonedPetId != 0) {
|
||||
output.WriteRawTag(80);
|
||||
output.WriteUInt32(OMEKPGOILKA);
|
||||
output.WriteUInt32(SummonedPetId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
@@ -164,8 +164,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (OMEKPGOILKA != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(OMEKPGOILKA);
|
||||
if (SummonedPetId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SummonedPetId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -179,8 +179,8 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.OMEKPGOILKA != 0) {
|
||||
OMEKPGOILKA = other.OMEKPGOILKA;
|
||||
if (other.SummonedPetId != 0) {
|
||||
SummonedPetId = other.SummonedPetId;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -198,7 +198,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 80: {
|
||||
OMEKPGOILKA = input.ReadUInt32();
|
||||
SummonedPetId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -217,7 +217,7 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 80: {
|
||||
OMEKPGOILKA = input.ReadUInt32();
|
||||
SummonedPetId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,14 +24,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
static SummonPetScRspReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChRTdW1tb25QZXRTY1JzcC5wcm90byJLCg5TdW1tb25QZXRTY1JzcBITCgtF",
|
||||
"R0FGUE1ESUZJTxgGIAEoDRIPCgdyZXRjb2RlGAsgASgNEhMKC0ZNUEtMSUVI",
|
||||
"Q0ZPGAIgASgNQh6qAhtFZ2dMaW5rLkRhbmhlbmdTZXJ2ZXIuUHJvdG9iBnBy",
|
||||
"b3RvMw=="));
|
||||
"ChRTdW1tb25QZXRTY1JzcC5wcm90byJJCg5TdW1tb25QZXRTY1JzcBISCgpu",
|
||||
"ZXdfcGV0X2lkGAYgASgNEg8KB3JldGNvZGUYCyABKA0SEgoKY3VyX3BldF9p",
|
||||
"ZBgCIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVyLlByb3RvYgZwcm90",
|
||||
"bzM="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SummonPetScRsp), global::EggLink.DanhengServer.Proto.SummonPetScRsp.Parser, new[]{ "EGAFPMDIFIO", "Retcode", "FMPKLIEHCFO" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.SummonPetScRsp), global::EggLink.DanhengServer.Proto.SummonPetScRsp.Parser, new[]{ "NewPetId", "Retcode", "CurPetId" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -73,9 +73,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public SummonPetScRsp(SummonPetScRsp other) : this() {
|
||||
eGAFPMDIFIO_ = other.eGAFPMDIFIO_;
|
||||
newPetId_ = other.newPetId_;
|
||||
retcode_ = other.retcode_;
|
||||
fMPKLIEHCFO_ = other.fMPKLIEHCFO_;
|
||||
curPetId_ = other.curPetId_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -85,15 +85,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
return new SummonPetScRsp(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "EGAFPMDIFIO" field.</summary>
|
||||
public const int EGAFPMDIFIOFieldNumber = 6;
|
||||
private uint eGAFPMDIFIO_;
|
||||
/// <summary>Field number for the "new_pet_id" field.</summary>
|
||||
public const int NewPetIdFieldNumber = 6;
|
||||
private uint newPetId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint EGAFPMDIFIO {
|
||||
get { return eGAFPMDIFIO_; }
|
||||
public uint NewPetId {
|
||||
get { return newPetId_; }
|
||||
set {
|
||||
eGAFPMDIFIO_ = value;
|
||||
newPetId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,15 +109,15 @@ namespace EggLink.DanhengServer.Proto {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "FMPKLIEHCFO" field.</summary>
|
||||
public const int FMPKLIEHCFOFieldNumber = 2;
|
||||
private uint fMPKLIEHCFO_;
|
||||
/// <summary>Field number for the "cur_pet_id" field.</summary>
|
||||
public const int CurPetIdFieldNumber = 2;
|
||||
private uint curPetId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public uint FMPKLIEHCFO {
|
||||
get { return fMPKLIEHCFO_; }
|
||||
public uint CurPetId {
|
||||
get { return curPetId_; }
|
||||
set {
|
||||
fMPKLIEHCFO_ = value;
|
||||
curPetId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -136,9 +136,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (EGAFPMDIFIO != other.EGAFPMDIFIO) return false;
|
||||
if (NewPetId != other.NewPetId) return false;
|
||||
if (Retcode != other.Retcode) return false;
|
||||
if (FMPKLIEHCFO != other.FMPKLIEHCFO) return false;
|
||||
if (CurPetId != other.CurPetId) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -146,9 +146,9 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (EGAFPMDIFIO != 0) hash ^= EGAFPMDIFIO.GetHashCode();
|
||||
if (NewPetId != 0) hash ^= NewPetId.GetHashCode();
|
||||
if (Retcode != 0) hash ^= Retcode.GetHashCode();
|
||||
if (FMPKLIEHCFO != 0) hash ^= FMPKLIEHCFO.GetHashCode();
|
||||
if (CurPetId != 0) hash ^= CurPetId.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -167,13 +167,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (FMPKLIEHCFO != 0) {
|
||||
if (CurPetId != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(FMPKLIEHCFO);
|
||||
output.WriteUInt32(CurPetId);
|
||||
}
|
||||
if (EGAFPMDIFIO != 0) {
|
||||
if (NewPetId != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(EGAFPMDIFIO);
|
||||
output.WriteUInt32(NewPetId);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(88);
|
||||
@@ -189,13 +189,13 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (FMPKLIEHCFO != 0) {
|
||||
if (CurPetId != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteUInt32(FMPKLIEHCFO);
|
||||
output.WriteUInt32(CurPetId);
|
||||
}
|
||||
if (EGAFPMDIFIO != 0) {
|
||||
if (NewPetId != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteUInt32(EGAFPMDIFIO);
|
||||
output.WriteUInt32(NewPetId);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
output.WriteRawTag(88);
|
||||
@@ -211,14 +211,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (EGAFPMDIFIO != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(EGAFPMDIFIO);
|
||||
if (NewPetId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(NewPetId);
|
||||
}
|
||||
if (Retcode != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode);
|
||||
}
|
||||
if (FMPKLIEHCFO != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(FMPKLIEHCFO);
|
||||
if (CurPetId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(CurPetId);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
@@ -232,14 +232,14 @@ namespace EggLink.DanhengServer.Proto {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.EGAFPMDIFIO != 0) {
|
||||
EGAFPMDIFIO = other.EGAFPMDIFIO;
|
||||
if (other.NewPetId != 0) {
|
||||
NewPetId = other.NewPetId;
|
||||
}
|
||||
if (other.Retcode != 0) {
|
||||
Retcode = other.Retcode;
|
||||
}
|
||||
if (other.FMPKLIEHCFO != 0) {
|
||||
FMPKLIEHCFO = other.FMPKLIEHCFO;
|
||||
if (other.CurPetId != 0) {
|
||||
CurPetId = other.CurPetId;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
@@ -257,11 +257,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 16: {
|
||||
FMPKLIEHCFO = input.ReadUInt32();
|
||||
CurPetId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 48: {
|
||||
EGAFPMDIFIO = input.ReadUInt32();
|
||||
NewPetId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
@@ -284,11 +284,11 @@ namespace EggLink.DanhengServer.Proto {
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 16: {
|
||||
FMPKLIEHCFO = input.ReadUInt32();
|
||||
CurPetId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 48: {
|
||||
EGAFPMDIFIO = input.ReadUInt32();
|
||||
NewPetId = input.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
case 88: {
|
||||
|
||||
Reference in New Issue
Block a user