diff options
Diffstat (limited to 'NorthstarDLL/r2server.h')
-rw-r--r-- | NorthstarDLL/r2server.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/NorthstarDLL/r2server.h b/NorthstarDLL/r2server.h index 1abe822d..235dde7f 100644 --- a/NorthstarDLL/r2server.h +++ b/NorthstarDLL/r2server.h @@ -1,5 +1,7 @@ #pragma once +#include "vector.h" + // use the R2 namespace for game funcs namespace R2 { @@ -14,8 +16,13 @@ namespace R2 uint32_t m_nPlayerIndex; // +0x5C - char pad1[0x1C75]; - char m_communityClanTag[16]; + char pad1[0x1C34]; + bool m_hasBadReputation; // 0x1C90 + char m_communityName[64]; // 0x1C91 + char m_communityClanTag[16]; // 0x1CD1 + char m_factionName[16]; // 0x1CE1 + char m_hardwareIcon[16]; // 0x1CF1 + bool m_happyHourActive; // 0x1D01 }; #pragma pack(pop) |