diff options
author | BobTheBob9 <for.oliver.kirkham@gmail.com> | 2022-10-21 00:17:48 +0100 |
---|---|---|
committer | BobTheBob9 <for.oliver.kirkham@gmail.com> | 2022-10-21 00:17:48 +0100 |
commit | 0c729c609cd052f4e720ce885c1d5322b63c9edd (patch) | |
tree | 1e9c47ab45d9d684a8c0994e6331a6311a2ceaed /NorthstarDLL/r2server.h | |
parent | 841881af9ea6ec73b1d505d5a8f7c1f766273724 (diff) | |
download | NorthstarLauncher-0c729c609cd052f4e720ce885c1d5322b63c9edd.tar.gz NorthstarLauncher-0c729c609cd052f4e720ce885c1d5322b63c9edd.zip |
fix up squirrel sq_getentity defs
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) |