public override void Deserialize(IReader reader)
 {
     allianceInfo = new Types.AllianceInformations();
     allianceInfo.Deserialize(reader);
     enabled        = reader.ReadBoolean();
     leadingGuildId = reader.ReadVarUhInt();
 }
Exemple #2
0
 public override void Deserialize(IDataReader reader)
 {
     base.Deserialize(reader);
     allianceInformations = new Types.AllianceInformations();
     allianceInformations.Deserialize(reader);
     aggressable = reader.ReadSbyte();
 }
 public override void Deserialize(ICustomDataInput reader)
 {
     base.Deserialize(reader);
     allianceInformations = new Types.AllianceInformations();
     allianceInformations.Deserialize(reader);
     aggressable = reader.ReadSByte();
     if (aggressable < 0)
         throw new Exception("Forbidden value on aggressable = " + aggressable + ", it doesn't respect the following condition : aggressable < 0");
 }
 public override void Deserialize(IDataReader reader)
 {
     base.Deserialize(reader);
     allianceInformations = new Types.AllianceInformations();
     allianceInformations.Deserialize(reader);
     aggressable = reader.ReadSByte();
     if (aggressable < 0)
     {
         throw new System.Exception("Forbidden value on aggressable = " + aggressable + ", it doesn't respect the following condition : aggressable < 0");
     }
 }
 public override void Deserialize(IDataReader reader)
 {
     allianceInfo = new Types.AllianceInformations();
     allianceInfo.Deserialize(reader);
     enabled        = reader.ReadBoolean();
     leadingGuildId = reader.ReadVarInt();
     if (leadingGuildId < 0)
     {
         throw new Exception("Forbidden value on leadingGuildId = " + leadingGuildId + ", it doesn't respect the following condition : leadingGuildId < 0");
     }
 }
 public override void Deserialize(BigEndianReader reader)
 {
     base.Deserialize(reader);
     allianceIdentity = new Types.AllianceInformations();
     allianceIdentity.Deserialize(reader);
 }
 public override void Deserialize(IDataReader reader)
 {
     base.Deserialize(reader);
     alliance = new Types.AllianceInformations();
     alliance.Deserialize(reader);
 }
Exemple #8
0
 public override void Deserialize(ICustomDataInput reader)
 {
     base.Deserialize(reader);
     allianceIdentity = new Types.AllianceInformations();
     allianceIdentity.Deserialize(reader);
 }
Exemple #9
0
 public void Deserialize(IDataReader reader)
 {
     allianceInfo = new Types.AllianceInformations();
     allianceInfo.Deserialize(reader);
     enabled = reader.ReadBoolean();
 }
 public override void Deserialize(BigEndianReader reader)
 {
     allianceInfo = new Types.AllianceInformations();
     allianceInfo.Deserialize(reader);
     enabled = reader.ReadBoolean();
 }
 public override void Deserialize(ICustomDataInput reader)
 {
     base.Deserialize(reader);
     alliance = new Types.AllianceInformations();
     alliance.Deserialize(reader);
 }
Exemple #12
0
 public override void Deserialize(ICustomDataInput reader)
 {
     allianceInfo = new Types.AllianceInformations();
     allianceInfo.Deserialize(reader);
     enabled = reader.ReadBoolean();
 }
 public override void Deserialize(BigEndianReader reader)
 {
     base.Deserialize(reader);
     allianceIdentity = new Types.AllianceInformations();
     allianceIdentity.Deserialize(reader);
 }
 public override void Deserialize(BigEndianReader reader)
 {
     allianceInfo = new Types.AllianceInformations();
     allianceInfo.Deserialize(reader);
     enabled = reader.ReadBoolean();
 }