// Token: 0x060040D9 RID: 16601 RVA: 0x00024F43 File Offset: 0x00023143
 private void InitRefTypes()
 {
     this.AccountSUID = 0UL;
     this.PlayerName  = string.Empty;
     this.Presence    = ePlayerPresence.PlayerPresence_None;
     base.RequestID   = uint.MaxValue;
 }
Exemplo n.º 2
0
 // Token: 0x0600403A RID: 16442 RVA: 0x0011CBA4 File Offset: 0x0011ADA4
 private void InitRefTypes()
 {
     this.AccountSUID     = 0UL;
     this.PlayerName      = string.Empty;
     this.GuildTag        = string.Empty;
     this.GuildName       = string.Empty;
     this.Level           = 0u;
     this.Avatar          = 0UL;
     this.Badge           = 0UL;
     this.Background      = 0UL;
     this.Title           = 0UL;
     this.IsRobotEmployee = false;
     this.Presence        = ePlayerPresence.PlayerPresence_None;
 }
        // Token: 0x060040D8 RID: 16600 RVA: 0x0011DC98 File Offset: 0x0011BE98
        public override void DeserializeMessage(byte[] data)
        {
            int num = 0;

            base.PacketType    = ArrayManager.ReadUInt32(data, ref num);
            base.SessionToken  = ArrayManager.ReadUInt64(data, ref num);
            base.SecurityToken = ArrayManager.ReadUInt64(data, ref num);
            base.RequestID     = ArrayManager.ReadUInt32(data, ref num);
            ArrayManager.ReadUInt32(data, ref num);
            ArrayManager.ReadUInt32(data, ref num);
            this.AccountSUID = ArrayManager.ReadUInt64(data, ref num);
            this.PlayerName  = ArrayManager.ReadString(data, ref num);
            this.Presence    = ArrayManager.ReadePlayerPresence(data, ref num);
        }
Exemplo n.º 4
0
        // Token: 0x06004039 RID: 16441 RVA: 0x0011CAF8 File Offset: 0x0011ACF8
        public void DeserializeMessage(byte[] data)
        {
            int num = 0;

            this.AccountSUID     = ArrayManager.ReadUInt64(data, ref num);
            this.PlayerName      = ArrayManager.ReadString(data, ref num);
            this.GuildTag        = ArrayManager.ReadString(data, ref num);
            this.GuildName       = ArrayManager.ReadString(data, ref num);
            this.Level           = ArrayManager.ReadUInt32(data, ref num);
            this.Avatar          = ArrayManager.ReadUInt64(data, ref num);
            this.Badge           = ArrayManager.ReadUInt64(data, ref num);
            this.Background      = ArrayManager.ReadUInt64(data, ref num);
            this.Title           = ArrayManager.ReadUInt64(data, ref num);
            this.IsRobotEmployee = ArrayManager.ReadBoolean(data, ref num);
            this.Presence        = ArrayManager.ReadePlayerPresence(data, ref num);
        }