Skip to content

Commit

Permalink
Fix CNetGamePlayerDataMsg (#170)
Browse files Browse the repository at this point in the history
* fix(network): update CNetGamePlayerDataMsg
  • Loading branch information
Mr-X-GTA authored May 10, 2024
1 parent f2f73a8 commit df0def7
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions network/CNetGamePlayerDataMsg.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,16 @@ namespace rage {
class CNetGamePlayerDataMsg : public rage::playerDataMsg
{
public:
uint32_t m_player_type; //0x0010
uint32_t m_matchmaking_group; //0x0014
uint32_t m_flags; //0x0018
uint32_t m_team; //0x001C
uint64_t m_crew_id; //0x0020
uint32_t m_aim_preference; //0x0028
uint16_t m_rank; //0x002C
uint16_t unk_002E; //0x002E
uint16_t unk_0030; //0x0030
}; //Size: 0x0038
static_assert(sizeof(CNetGamePlayerDataMsg) == 0x38);
int32_t m_account_id; //0x0010
uint32_t m_player_type; //0x0014
uint32_t m_matchmaking_group; //0x0018
uint32_t m_flags; //0x001C
int32_t m_team; //0x0020
int64_t m_crew_id; //0x0028
int32_t m_aim_preference; //0x0030
uint16_t m_rank; //0x0034
uint16_t m_rating; //0x0036
uint32_t m_region; //0x0038
}; //Size: 0x0040
static_assert(sizeof(CNetGamePlayerDataMsg) == 0x40);
#pragma pack(pop)

0 comments on commit df0def7

Please sign in to comment.