|
@@ -248,6 +248,7 @@ namespace XmdsCommonServer.Message
|
|
|
[MessageType((0xFFF0003))]
|
|
|
public class UnitBattleReportDetail : IExternalizable
|
|
|
{
|
|
|
+ public uint ID = 0;
|
|
|
|
|
|
|
|
|
|
|
@@ -257,6 +258,10 @@ namespace XmdsCommonServer.Message
|
|
|
|
|
|
public int TemplateID = 0;
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+ public int Force = 0;
|
|
|
+
|
|
|
|
|
|
|
|
|
public long TotalDamage = 0;
|
|
@@ -267,16 +272,20 @@ namespace XmdsCommonServer.Message
|
|
|
|
|
|
public void ReadExternal(IInputStream input)
|
|
|
{
|
|
|
+ ID = input.GetU32();
|
|
|
PlayerUUID = input.GetUTF();
|
|
|
TemplateID = input.GetS32();
|
|
|
+ Force = input.GetS32();
|
|
|
TotalDamage = input.GetS64();
|
|
|
TotalHealing = input.GetS64();
|
|
|
}
|
|
|
|
|
|
public void WriteExternal(IOutputStream output)
|
|
|
{
|
|
|
+ output.PutU32(ID);
|
|
|
output.PutUTF(PlayerUUID);
|
|
|
output.PutS32(TemplateID);
|
|
|
+ output.PutS32(Force);
|
|
|
output.PutS64(TotalDamage);
|
|
|
output.PutS64(TotalHealing);
|
|
|
}
|