Example #1
0
 public FriendOnlineInformations(int accountId, string accountName, sbyte playerState, uint lastConnection, int achievementPoints, double playerId, string playerName, byte level, sbyte alignmentSide, sbyte breed, bool sex, GuildInformations guildInfo, uint moodSmileyId, PlayerStatus status) : base(accountId, accountName, playerState, lastConnection, achievementPoints)
 {
     this.playerId      = playerId;
     this.playerName    = playerName;
     this.level         = level;
     this.alignmentSide = alignmentSide;
     this.breed         = breed;
     this.sex           = sex;
     this.guildInfo     = guildInfo;
     this.moodSmileyId  = moodSmileyId;
     this.status        = status;
 }
 public override void Deserialize(IDataReader reader)
 {
     base.Deserialize(reader);
     this.guildInfo = new GuildInformations();
     this.guildInfo.Deserialize(reader);
 }
 public TaxCollectorStaticExtendedInformations(uint firstNameId, uint lastNameId, GuildInformations guildIdentity, AllianceInformations allianceIdentity) : base(firstNameId, lastNameId, guildIdentity)
 {
     this.allianceIdentity = allianceIdentity;
 }
 public PaddockPrivateInformations(uint maxOutdoorMount, uint maxItems, uint price, bool locked, int guildId, GuildInformations guildInfo) : base(maxOutdoorMount, maxItems, price, locked, guildId)
 {
     this.guildInfo = guildInfo;
 }
 public FriendSpouseOnlineInformations(int spouseAccountId, double spouseId, string spouseName, byte spouseLevel, sbyte breed, sbyte sex, EntityLook spouseEntityLook, GuildInformations guildInfo, sbyte alignmentSide, bool inFight, bool followSpouse, int mapId, uint subAreaId) : base(spouseAccountId, spouseId, spouseName, spouseLevel, breed, sex, spouseEntityLook, guildInfo, alignmentSide)
 {
     this.inFight      = inFight;
     this.followSpouse = followSpouse;
     this.mapId        = mapId;
     this.subAreaId    = subAreaId;
 }