@rlsdk/steam 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +166 -0
- package/classes/AkAudio.ts +620 -0
- package/classes/Core.ts +1489 -0
- package/classes/Engine.ts +25512 -0
- package/classes/GFxUI.ts +480 -0
- package/classes/IpDrv.ts +2146 -0
- package/classes/OnlineSubsystemEOS.ts +954 -0
- package/classes/OnlineSubsystemSteamworks.ts +933 -0
- package/classes/ProjectX.ts +14003 -0
- package/classes/TAGame.ts +54138 -0
- package/classes/WinDrv.ts +116 -0
- package/classes/XAudio2.ts +13 -0
- package/classes/index.ts +20 -0
- package/constants/AkAudio.ts +6 -0
- package/constants/Core.ts +28 -0
- package/constants/Engine.ts +109 -0
- package/constants/GFxUI.ts +6 -0
- package/constants/IpDrv.ts +13 -0
- package/constants/OnlineSubsystemEOS.ts +6 -0
- package/constants/OnlineSubsystemSteamworks.ts +6 -0
- package/constants/ProjectX.ts +19 -0
- package/constants/TAGame.ts +79 -0
- package/constants/WinDrv.ts +6 -0
- package/constants/XAudio2.ts +6 -0
- package/constants/index.ts +14 -0
- package/enums/AkAudio.ts +121 -0
- package/enums/Core.ts +1646 -0
- package/enums/Engine.ts +3782 -0
- package/enums/GFxUI.ts +111 -0
- package/enums/IpDrv.ts +321 -0
- package/enums/OnlineSubsystemEOS.ts +25 -0
- package/enums/OnlineSubsystemSteamworks.ts +62 -0
- package/enums/ProjectX.ts +624 -0
- package/enums/TAGame.ts +2637 -0
- package/enums/WinDrv.ts +6 -0
- package/enums/XAudio2.ts +6 -0
- package/enums/index.ts +18 -0
- package/index.ts +11 -0
- package/offsets/AkAudio.ts +1049 -0
- package/offsets/Core.ts +1765 -0
- package/offsets/Engine.ts +26914 -0
- package/offsets/GFxUI.ts +525 -0
- package/offsets/IpDrv.ts +2259 -0
- package/offsets/OnlineSubsystemEOS.ts +602 -0
- package/offsets/OnlineSubsystemSteamworks.ts +1283 -0
- package/offsets/ProjectX.ts +14375 -0
- package/offsets/TAGame.ts +47649 -0
- package/offsets/WinDrv.ts +180 -0
- package/offsets/XAudio2.ts +102 -0
- package/offsets/globals.ts +13 -0
- package/offsets/index.ts +21 -0
- package/package.json +134 -0
- package/parameters/AkAudio.ts +780 -0
- package/parameters/Core.ts +4839 -0
- package/parameters/Engine.ts +37953 -0
- package/parameters/GFxUI.ts +1450 -0
- package/parameters/IpDrv.ts +7591 -0
- package/parameters/OnlineSubsystemEOS.ts +4309 -0
- package/parameters/OnlineSubsystemSteamworks.ts +4391 -0
- package/parameters/ProjectX.ts +31213 -0
- package/parameters/TAGame.ts +129564 -0
- package/parameters/WinDrv.ts +276 -0
- package/parameters/XAudio2.ts +4 -0
- package/parameters/index.ts +19 -0
- package/structs/AkAudio.ts +132 -0
- package/structs/Core.ts +750 -0
- package/structs/Engine.ts +5968 -0
- package/structs/GFxUI.ts +136 -0
- package/structs/IpDrv.ts +681 -0
- package/structs/OnlineSubsystemEOS.ts +23 -0
- package/structs/OnlineSubsystemSteamworks.ts +306 -0
- package/structs/ProjectX.ts +2527 -0
- package/structs/TAGame.ts +7487 -0
- package/structs/WinDrv.ts +6 -0
- package/structs/XAudio2.ts +6 -0
- package/structs/index.ts +18 -0
- package/types/GameDefines.ts +35 -0
- package/types/index.ts +9 -0
|
@@ -0,0 +1,602 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OnlineSubsystemEOS Package - Offsets
|
|
3
|
+
* Auto-generated by Stev Peifer <stev.p@outlook.com> (https://github.com/ObscuritySRL)
|
|
4
|
+
*
|
|
5
|
+
* Contains runtime offset constants for classes and structs.
|
|
6
|
+
* Import these to read/write memory at the correct locations.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Core.Object Offsets
|
|
11
|
+
* Size: 0x0060
|
|
12
|
+
*/
|
|
13
|
+
export const Object_ = {
|
|
14
|
+
VfTableObject: 0x0000n, // 0x0000 (0x0008) [FPointer]
|
|
15
|
+
HashNext: 0x0008n, // 0x0008 (0x0008) [FPointer]
|
|
16
|
+
ObjectFlags: 0x0010n, // 0x0010 (0x0008) [uint64]
|
|
17
|
+
HashOuterNext: 0x0018n, // 0x0018 (0x0008) [FPointer]
|
|
18
|
+
StateFrame: 0x0020n, // 0x0020 (0x0008) [FPointer]
|
|
19
|
+
Linker: 0x0028n, // 0x0028 (0x0008) [UObject*]
|
|
20
|
+
LinkerIndex: 0x0030n, // 0x0030 (0x0008) [FPointer]
|
|
21
|
+
ObjectInternalInteger: 0x0038n, // 0x0038 (0x0004) [int32]
|
|
22
|
+
NetIndex: 0x003cn, // 0x003c (0x0004) [int32]
|
|
23
|
+
Outer: 0x0040n, // 0x0040 (0x0008) [UObject*]
|
|
24
|
+
Name: 0x0048n, // 0x0048 (0x0008) [FName]
|
|
25
|
+
Class: 0x0050n, // 0x0050 (0x0008) [UObject*]
|
|
26
|
+
ObjectArchetype: 0x0058n, // 0x0058 (0x0008) [UObject*]
|
|
27
|
+
} as const;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* OnlineSubsystemEOS.__OnlinePlayerInterfaceEOS__LinkedAccount_0x1 Offsets
|
|
31
|
+
* Size: 0x0064
|
|
32
|
+
* Extends: Object_
|
|
33
|
+
*/
|
|
34
|
+
export const __OnlinePlayerInterfaceEOS__LinkedAccount_0x1 = {
|
|
35
|
+
LocalUserNum: 0x0060n, // 0x0060 (0x0004) [int32]
|
|
36
|
+
...Object_,
|
|
37
|
+
} as const;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* OnlineSubsystemEOS.__OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1 Offsets
|
|
41
|
+
* Size: 0x0080
|
|
42
|
+
* Extends: Object_
|
|
43
|
+
*/
|
|
44
|
+
export const __OnlinePlayerInterfaceEOS__RequestNativePlatformAuthTicket_0x1 = {
|
|
45
|
+
LocalUserNum: 0x0060n, // 0x0060 (0x0004) [int32]
|
|
46
|
+
Callback: 0x0068n, // 0x0068 (0x0018) [FScriptDelegate]
|
|
47
|
+
...Object_,
|
|
48
|
+
} as const;
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* OnlineSubsystemEOS.AudioDevicesChangedEvent Offsets
|
|
52
|
+
* Size: 0x0060
|
|
53
|
+
* Extends: Object_
|
|
54
|
+
*/
|
|
55
|
+
export const AudioDevicesChangedEvent = {
|
|
56
|
+
...Object_,
|
|
57
|
+
} as const;
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Core.ErrorList Offsets
|
|
61
|
+
* Size: 0x0080
|
|
62
|
+
* Extends: Object_
|
|
63
|
+
*/
|
|
64
|
+
export const ErrorList = {
|
|
65
|
+
LocalizationPackage: 0x0060n, // 0x0060 (0x0010) [FString]
|
|
66
|
+
LocalizationSection: 0x0070n, // 0x0070 (0x0010) [FString]
|
|
67
|
+
...Object_,
|
|
68
|
+
} as const;
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* OnlineSubsystemEOS.EOSErrors Offsets
|
|
72
|
+
* Size: 0x00f8
|
|
73
|
+
* Extends: ErrorList
|
|
74
|
+
*/
|
|
75
|
+
export const EOSErrors = {
|
|
76
|
+
EpicUnknownError: 0x0080n, // 0x0080 (0x0008) [UErrorType*]
|
|
77
|
+
BlockedListNotFound: 0x0088n, // 0x0088 (0x0008) [UErrorType*]
|
|
78
|
+
AcceptFriendRequestFailed: 0x0090n, // 0x0090 (0x0008) [UErrorType*]
|
|
79
|
+
RejectFriendRequestFailed: 0x0098n, // 0x0098 (0x0008) [UErrorType*]
|
|
80
|
+
GameClipsActivationFailed: 0x00a0n, // 0x00a0 (0x0008) [UErrorType*]
|
|
81
|
+
GameClipsCleanAudioFailed: 0x00a8n, // 0x00a8 (0x0008) [UErrorType*]
|
|
82
|
+
GameClipsRecorderInitFailed: 0x00b0n, // 0x00b0 (0x0008) [UErrorType*]
|
|
83
|
+
GameClipsStartRecordingFailed: 0x00b8n, // 0x00b8 (0x0008) [UErrorType*]
|
|
84
|
+
GameClipsMaskAreaInvalid: 0x00c0n, // 0x00c0 (0x0008) [UErrorType*]
|
|
85
|
+
GameClipsStatusListenerFailed: 0x00c8n, // 0x00c8 (0x0008) [UErrorType*]
|
|
86
|
+
GameClipsUserStatusListenerFailed: 0x00d0n, // 0x00d0 (0x0008) [UErrorType*]
|
|
87
|
+
GameClipsNotAvailable: 0x00d8n, // 0x00d8 (0x0008) [UErrorType*]
|
|
88
|
+
GameClipsFailedToUpload: 0x00e0n, // 0x00e0 (0x0008) [UErrorType*]
|
|
89
|
+
GameClipsCoolingDown: 0x00e8n, // 0x00e8 (0x0008) [UErrorType*]
|
|
90
|
+
GameClipsUploadLimitReached: 0x00f0n, // 0x00f0 (0x0008) [UErrorType*]
|
|
91
|
+
...ErrorList,
|
|
92
|
+
} as const;
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* OnlineSubsystemEOS.OnlinePlayerInterfaceEOS.LoginDelegates Offsets
|
|
96
|
+
* Size: 0x0010
|
|
97
|
+
*/
|
|
98
|
+
export const FLoginDelegates = {
|
|
99
|
+
Delegates: 0x0000n, // 0x0000 (0x0010) [TArray<FScriptDelegate>]
|
|
100
|
+
} as const;
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* OnlineSubsystemEOS.OnlinePlayerInterfaceEOS.OnlineStatusMappingEOS Offsets
|
|
104
|
+
* Size: 0x0018
|
|
105
|
+
*/
|
|
106
|
+
export const FOnlineStatusMappingEOS = {
|
|
107
|
+
StatusId: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
108
|
+
StatusString: 0x0008n, // 0x0008 (0x0010) [FString]
|
|
109
|
+
} as const;
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* IpDrv.OnlineAuthInterfaceImpl Offsets
|
|
113
|
+
* Size: 0x03c8
|
|
114
|
+
* Extends: Object_
|
|
115
|
+
*/
|
|
116
|
+
export const OnlineAuthInterfaceImpl = {
|
|
117
|
+
VfTable_IOnlineAuthInterface: 0x0060n, // 0x0060 (0x0008) [FPointer]
|
|
118
|
+
AuthCodeRequests: 0x0068n, // 0x0068 (0x0010) [TArray<FAuthCodeRequest>]
|
|
119
|
+
NextAuthCodeID: 0x0078n, // 0x0078 (0x0004) [int32]
|
|
120
|
+
OwningSubsystem: 0x0080n, // 0x0080 (0x0008) [UOnlineSubsystemCommonImpl*]
|
|
121
|
+
bAuthReady: 0x0088n, // 0x0088 (0x0004) [bool : 0x1]
|
|
122
|
+
ClientAuthSessions: 0x0090n, // 0x0090 (0x0038) [FSparseArray_Mirror]
|
|
123
|
+
ServerAuthSessions: 0x00c8n, // 0x00c8 (0x0038) [FSparseArray_Mirror]
|
|
124
|
+
PeerAuthSessions: 0x0100n, // 0x0100 (0x0038) [FSparseArray_Mirror]
|
|
125
|
+
LocalClientAuthSessions: 0x0138n, // 0x0138 (0x0038) [FSparseArray_Mirror]
|
|
126
|
+
LocalServerAuthSessions: 0x0170n, // 0x0170 (0x0038) [FSparseArray_Mirror]
|
|
127
|
+
LocalPeerAuthSessions: 0x01a8n, // 0x01a8 (0x0038) [FSparseArray_Mirror]
|
|
128
|
+
AuthReadyDelegates: 0x01e0n, // 0x01e0 (0x0010) [TArray<FScriptDelegate>]
|
|
129
|
+
ClientAuthRequestDelegates: 0x01f0n, // 0x01f0 (0x0010) [TArray<FScriptDelegate>]
|
|
130
|
+
ServerAuthRequestDelegates: 0x0200n, // 0x0200 (0x0010) [TArray<FScriptDelegate>]
|
|
131
|
+
ClientAuthResponseDelegates: 0x0210n, // 0x0210 (0x0010) [TArray<FScriptDelegate>]
|
|
132
|
+
ServerAuthResponseDelegates: 0x0220n, // 0x0220 (0x0010) [TArray<FScriptDelegate>]
|
|
133
|
+
ClientAuthCompleteDelegates: 0x0230n, // 0x0230 (0x0010) [TArray<FScriptDelegate>]
|
|
134
|
+
ServerAuthCompleteDelegates: 0x0240n, // 0x0240 (0x0010) [TArray<FScriptDelegate>]
|
|
135
|
+
ClientAuthEndSessionRequestDelegates: 0x0250n, // 0x0250 (0x0010) [TArray<FScriptDelegate>]
|
|
136
|
+
ServerAuthRetryRequestDelegates: 0x0260n, // 0x0260 (0x0010) [TArray<FScriptDelegate>]
|
|
137
|
+
ClientConnectionCloseDelegates: 0x0270n, // 0x0270 (0x0010) [TArray<FScriptDelegate>]
|
|
138
|
+
ServerConnectionCloseDelegates: 0x0280n, // 0x0280 (0x0010) [TArray<FScriptDelegate>]
|
|
139
|
+
__OnAuthReady__Delegate: 0x0290n, // 0x0290 (0x0018) [FScriptDelegate]
|
|
140
|
+
__OnClientAuthRequest__Delegate: 0x02a8n, // 0x02a8 (0x0018) [FScriptDelegate]
|
|
141
|
+
__OnServerAuthRequest__Delegate: 0x02c0n, // 0x02c0 (0x0018) [FScriptDelegate]
|
|
142
|
+
__OnClientAuthResponse__Delegate: 0x02d8n, // 0x02d8 (0x0018) [FScriptDelegate]
|
|
143
|
+
__OnServerAuthResponse__Delegate: 0x02f0n, // 0x02f0 (0x0018) [FScriptDelegate]
|
|
144
|
+
__OnClientAuthComplete__Delegate: 0x0308n, // 0x0308 (0x0018) [FScriptDelegate]
|
|
145
|
+
__OnServerAuthComplete__Delegate: 0x0320n, // 0x0320 (0x0018) [FScriptDelegate]
|
|
146
|
+
__OnClientAuthEndSessionRequest__Delegate: 0x0338n, // 0x0338 (0x0018) [FScriptDelegate]
|
|
147
|
+
__OnServerAuthRetryRequest__Delegate: 0x0350n, // 0x0350 (0x0018) [FScriptDelegate]
|
|
148
|
+
__OnClientConnectionClose__Delegate: 0x0368n, // 0x0368 (0x0018) [FScriptDelegate]
|
|
149
|
+
__OnServerConnectionClose__Delegate: 0x0380n, // 0x0380 (0x0018) [FScriptDelegate]
|
|
150
|
+
__OnReceivedAuthCode__Delegate: 0x0398n, // 0x0398 (0x0018) [FScriptDelegate]
|
|
151
|
+
__OnAccountAuthorization__Delegate: 0x03b0n, // 0x03b0 (0x0018) [FScriptDelegate]
|
|
152
|
+
...Object_,
|
|
153
|
+
} as const;
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* OnlineSubsystemEOS.OnlineAuthInterfaceEOS Offsets
|
|
157
|
+
* Size: 0x03d0
|
|
158
|
+
* Extends: OnlineAuthInterfaceImpl
|
|
159
|
+
*/
|
|
160
|
+
export const OnlineAuthInterfaceEOS = {
|
|
161
|
+
PlayerInterfaceEOS: 0x03c8n, // 0x03c8 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
162
|
+
...OnlineAuthInterfaceImpl,
|
|
163
|
+
} as const;
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* IpDrv.OnlineFriendsInterfaceImpl Offsets
|
|
167
|
+
* Size: 0x0080
|
|
168
|
+
* Extends: Object_
|
|
169
|
+
*/
|
|
170
|
+
export const OnlineFriendsInterfaceImpl = {
|
|
171
|
+
VfTable_IOnlineFriendsInterface: 0x0060n, // 0x0060 (0x0008) [FPointer]
|
|
172
|
+
__OnReceivedLinkedAccount__Delegate: 0x0068n, // 0x0068 (0x0018) [FScriptDelegate]
|
|
173
|
+
...Object_,
|
|
174
|
+
} as const;
|
|
175
|
+
|
|
176
|
+
/**
|
|
177
|
+
* OnlineSubsystemEOS.OnlineFriendsInterfaceEOS Offsets
|
|
178
|
+
* Size: 0x0088
|
|
179
|
+
* Extends: OnlineFriendsInterfaceImpl
|
|
180
|
+
*/
|
|
181
|
+
export const OnlineFriendsInterfaceEOS = {
|
|
182
|
+
PlayerInterfaceEOS: 0x0080n, // 0x0080 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
183
|
+
...OnlineFriendsInterfaceImpl,
|
|
184
|
+
} as const;
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS Offsets
|
|
188
|
+
* Size: 0x0110
|
|
189
|
+
* Extends: Object_
|
|
190
|
+
*/
|
|
191
|
+
export const OnlineGameClipsInterfaceEOS = {
|
|
192
|
+
GameClipsHandle: 0x0060n, // 0x0060 (0x0008) [FPointer]
|
|
193
|
+
__EventAvailabilityChanged__Delegate: 0x0068n, // 0x0068 (0x0018) [FScriptDelegate]
|
|
194
|
+
__EventRecordingChanged__Delegate: 0x0080n, // 0x0080 (0x0018) [FScriptDelegate]
|
|
195
|
+
__EventConnectionStatusChanged__Delegate: 0x0098n, // 0x0098 (0x0018) [FScriptDelegate]
|
|
196
|
+
__EventClipStatusChanged__Delegate: 0x00b0n, // 0x00b0 (0x0018) [FScriptDelegate]
|
|
197
|
+
__EventMaskStatusChanged__Delegate: 0x00c8n, // 0x00c8 (0x0018) [FScriptDelegate]
|
|
198
|
+
__EventGeneralErrorOccurred__Delegate: 0x00e0n, // 0x00e0 (0x0018) [FScriptDelegate]
|
|
199
|
+
__EventClipErrorOccurred__Delegate: 0x00f8n, // 0x00f8 (0x0018) [FScriptDelegate]
|
|
200
|
+
...Object_,
|
|
201
|
+
} as const;
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* IpDrv.OnlineGameInterfaceImpl Offsets
|
|
205
|
+
* Size: 0x0318
|
|
206
|
+
* Extends: Object_
|
|
207
|
+
*/
|
|
208
|
+
export const OnlineGameInterfaceImpl = {
|
|
209
|
+
OwningSubsystem: 0x0060n, // 0x0060 (0x0008) [UOnlineSubsystemCommonImpl*]
|
|
210
|
+
GameSettings: 0x0068n, // 0x0068 (0x0008) [UOnlineGameSettings*]
|
|
211
|
+
GameSearch: 0x0070n, // 0x0070 (0x0008) [UOnlineGameSearch*]
|
|
212
|
+
CreateOnlineGameCompleteDelegates: 0x0078n, // 0x0078 (0x0010) [TArray<FScriptDelegate>]
|
|
213
|
+
UpdateOnlineGameCompleteDelegates: 0x0088n, // 0x0088 (0x0010) [TArray<FScriptDelegate>]
|
|
214
|
+
DestroyOnlineGameCompleteDelegates: 0x0098n, // 0x0098 (0x0010) [TArray<FScriptDelegate>]
|
|
215
|
+
JoinOnlineGameCompleteDelegates: 0x00a8n, // 0x00a8 (0x0010) [TArray<FScriptDelegate>]
|
|
216
|
+
MigrateOnlineGameCompleteDelegates: 0x00b8n, // 0x00b8 (0x0010) [TArray<FScriptDelegate>]
|
|
217
|
+
JoinMigratedOnlineGameCompleteDelegates: 0x00c8n, // 0x00c8 (0x0010) [TArray<FScriptDelegate>]
|
|
218
|
+
RecalculateSkillRatingCompleteDelegates: 0x00d8n, // 0x00d8 (0x0010) [TArray<FScriptDelegate>]
|
|
219
|
+
StartOnlineGameCompleteDelegates: 0x00e8n, // 0x00e8 (0x0010) [TArray<FScriptDelegate>]
|
|
220
|
+
EndOnlineGameCompleteDelegates: 0x00f8n, // 0x00f8 (0x0010) [TArray<FScriptDelegate>]
|
|
221
|
+
FindOnlineGamesCompleteDelegates: 0x0108n, // 0x0108 (0x0010) [TArray<FScriptDelegate>]
|
|
222
|
+
CancelFindOnlineGamesCompleteDelegates: 0x0118n, // 0x0118 (0x0010) [TArray<FScriptDelegate>]
|
|
223
|
+
LanBeaconState: 0x0128n, // 0x0128 (0x0001) [ELanBeaconState]
|
|
224
|
+
LanNonce: 0x0129n, // 0x0129 (0x0008) [uint8]
|
|
225
|
+
LanAnnouncePort: 0x0134n, // 0x0134 (0x0004) [int32]
|
|
226
|
+
LanGameUniqueId: 0x0138n, // 0x0138 (0x0004) [int32]
|
|
227
|
+
LanPacketPlatformMask: 0x013cn, // 0x013c (0x0004) [int32]
|
|
228
|
+
LanQueryTimeLeft: 0x0140n, // 0x0140 (0x0004) [float]
|
|
229
|
+
LanQueryTimeout: 0x0144n, // 0x0144 (0x0004) [float]
|
|
230
|
+
LanBeacon: 0x0148n, // 0x0148 (0x0008) [FPointer]
|
|
231
|
+
SessionInfo: 0x0150n, // 0x0150 (0x0008) [FPointer]
|
|
232
|
+
GameInviteAcceptedDelegates: 0x0158n, // 0x0158 (0x0010) [TArray<FScriptDelegate>]
|
|
233
|
+
__OnFindOnlineGamesComplete__Delegate: 0x0168n, // 0x0168 (0x0018) [FScriptDelegate]
|
|
234
|
+
__OnCreateOnlineGameComplete__Delegate: 0x0180n, // 0x0180 (0x0018) [FScriptDelegate]
|
|
235
|
+
__OnUpdateOnlineGameComplete__Delegate: 0x0198n, // 0x0198 (0x0018) [FScriptDelegate]
|
|
236
|
+
__OnDestroyOnlineGameComplete__Delegate: 0x01b0n, // 0x01b0 (0x0018) [FScriptDelegate]
|
|
237
|
+
__OnCancelFindOnlineGamesComplete__Delegate: 0x01c8n, // 0x01c8 (0x0018) [FScriptDelegate]
|
|
238
|
+
__OnJoinOnlineGameComplete__Delegate: 0x01e0n, // 0x01e0 (0x0018) [FScriptDelegate]
|
|
239
|
+
__OnRegisterPlayerComplete__Delegate: 0x01f8n, // 0x01f8 (0x0018) [FScriptDelegate]
|
|
240
|
+
__OnUnregisterPlayerComplete__Delegate: 0x0210n, // 0x0210 (0x0018) [FScriptDelegate]
|
|
241
|
+
__OnStartOnlineGameComplete__Delegate: 0x0228n, // 0x0228 (0x0018) [FScriptDelegate]
|
|
242
|
+
__OnEndOnlineGameComplete__Delegate: 0x0240n, // 0x0240 (0x0018) [FScriptDelegate]
|
|
243
|
+
__OnArbitrationRegistrationComplete__Delegate: 0x0258n, // 0x0258 (0x0018) [FScriptDelegate]
|
|
244
|
+
__OnGameInviteAccepted__Delegate: 0x0270n, // 0x0270 (0x0018) [FScriptDelegate]
|
|
245
|
+
__OnRecalculateSkillRatingComplete__Delegate: 0x0288n, // 0x0288 (0x0018) [FScriptDelegate]
|
|
246
|
+
__OnMigrateOnlineGameComplete__Delegate: 0x02a0n, // 0x02a0 (0x0018) [FScriptDelegate]
|
|
247
|
+
__OnJoinMigratedOnlineGameComplete__Delegate: 0x02b8n, // 0x02b8 (0x0018) [FScriptDelegate]
|
|
248
|
+
__OnQosStatusChanged__Delegate: 0x02d0n, // 0x02d0 (0x0018) [FScriptDelegate]
|
|
249
|
+
__EventReportMatchmakingInfo__Delegate: 0x02e8n, // 0x02e8 (0x0018) [FScriptDelegate]
|
|
250
|
+
__OnGamePlayersChanged__Delegate: 0x0300n, // 0x0300 (0x0018) [FScriptDelegate]
|
|
251
|
+
...Object_,
|
|
252
|
+
} as const;
|
|
253
|
+
|
|
254
|
+
/**
|
|
255
|
+
* OnlineSubsystemEOS.OnlineGameInterfaceEOS Offsets
|
|
256
|
+
* Size: 0x0334
|
|
257
|
+
* Extends: OnlineGameInterfaceImpl
|
|
258
|
+
*/
|
|
259
|
+
export const OnlineGameInterfaceEOS = {
|
|
260
|
+
SessionsHandle: 0x0318n, // 0x0318 (0x0008) [FPointer]
|
|
261
|
+
CurrentSearchHandle: 0x0320n, // 0x0320 (0x0008) [FPointer]
|
|
262
|
+
PlayerInterfaceEOS: 0x0328n, // 0x0328 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
263
|
+
bGameSessionUpdateInProgress: 0x0330n, // 0x0330 (0x0004) [bool : 0x1]
|
|
264
|
+
...OnlineGameInterfaceImpl,
|
|
265
|
+
} as const;
|
|
266
|
+
|
|
267
|
+
/**
|
|
268
|
+
* IpDrv.OnlinePersistentAuthInterfaceImpl Offsets
|
|
269
|
+
* Size: 0x00b8
|
|
270
|
+
* Extends: Object_
|
|
271
|
+
*/
|
|
272
|
+
export const OnlinePersistentAuthInterfaceImpl = {
|
|
273
|
+
VfTable_IOnlinePersistentAuthInterface: 0x0060n, // 0x0060 (0x0008) [FPointer]
|
|
274
|
+
RequestPinGrantCodeDelegates: 0x0068n, // 0x0068 (0x0010) [TArray<FScriptDelegate>]
|
|
275
|
+
UnderageUserDetectedDelegates: 0x0078n, // 0x0078 (0x0010) [TArray<FScriptDelegate>]
|
|
276
|
+
__OnReceievedPinGrantCode__Delegate: 0x0088n, // 0x0088 (0x0018) [FScriptDelegate]
|
|
277
|
+
__OnUnderageUserDetected__Delegate: 0x00a0n, // 0x00a0 (0x0018) [FScriptDelegate]
|
|
278
|
+
...Object_,
|
|
279
|
+
} as const;
|
|
280
|
+
|
|
281
|
+
/**
|
|
282
|
+
* OnlineSubsystemEOS.OnlinePersistentAuthInterfaceEOS Offsets
|
|
283
|
+
* Size: 0x00c0
|
|
284
|
+
* Extends: OnlinePersistentAuthInterfaceImpl
|
|
285
|
+
*/
|
|
286
|
+
export const OnlinePersistentAuthInterfaceEOS = {
|
|
287
|
+
PlayerInterfaceEOS: 0x00b8n, // 0x00b8 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
288
|
+
...OnlinePersistentAuthInterfaceImpl,
|
|
289
|
+
} as const;
|
|
290
|
+
|
|
291
|
+
/**
|
|
292
|
+
* OnlineSubsystemEOS.OnlinePlayerInterfaceEOS Offsets
|
|
293
|
+
* Size: 0x06b0
|
|
294
|
+
* Extends: Object_
|
|
295
|
+
*/
|
|
296
|
+
export const OnlinePlayerInterfaceEOS = {
|
|
297
|
+
AuthHandle: 0x0060n, // 0x0060 (0x0008) [FPointer]
|
|
298
|
+
FriendsHandle: 0x0068n, // 0x0068 (0x0008) [FPointer]
|
|
299
|
+
UserInfoHandle: 0x0070n, // 0x0070 (0x0008) [FPointer]
|
|
300
|
+
PresenceHandle: 0x0078n, // 0x0078 (0x0008) [FPointer]
|
|
301
|
+
ConnectHandle: 0x0080n, // 0x0080 (0x0008) [FPointer]
|
|
302
|
+
PDSHandle: 0x0088n, // 0x0088 (0x0008) [FPointer]
|
|
303
|
+
EcomHandle: 0x0090n, // 0x0090 (0x0008) [FPointer]
|
|
304
|
+
OwningSubsystem: 0x0098n, // 0x0098 (0x0008) [UOnlineSubsystemCommonImpl*]
|
|
305
|
+
GameInterfaceEOS: 0x00a0n, // 0x00a0 (0x0008) [UOnlineGameInterfaceEOS*]
|
|
306
|
+
PersistentAuthInterfaceEOS: 0x00a8n, // 0x00a8 (0x0008) [UOnlinePersistentAuthInterfaceEOS*]
|
|
307
|
+
VoiceInterfaceEOS: 0x00b0n, // 0x00b0 (0x0008) [UOnlineVoiceInterfaceEOS*]
|
|
308
|
+
DefaultLocalUser: 0x00b8n, // 0x00b8 (0x0004) [int32]
|
|
309
|
+
ProfileDataDirectory: 0x00c0n, // 0x00c0 (0x0010) [FString]
|
|
310
|
+
ProfileDataExtension: 0x00d0n, // 0x00d0 (0x0010) [FString]
|
|
311
|
+
ReadProfileSettingsDelegates: 0x00e0n, // 0x00e0 (0x0010) [TArray<FScriptDelegate>]
|
|
312
|
+
WriteProfileSettingsDelegates: 0x00f0n, // 0x00f0 (0x0010) [TArray<FScriptDelegate>]
|
|
313
|
+
CachedProfile: 0x0100n, // 0x0100 (0x0008) [UOnlineProfileSettings*]
|
|
314
|
+
LastProfileSettings: 0x0108n, // 0x0108 (0x0010) [TArray<FOnlineProfileSetting>]
|
|
315
|
+
ReadFriendsDelegates: 0x0118n, // 0x0118 (0x0010) [TArray<FScriptDelegate>]
|
|
316
|
+
FriendsReadState: 0x0128n, // 0x0128 (0x0001) [EOnlineEnumerationReadState]
|
|
317
|
+
FriendsChangeDelegates: 0x0130n, // 0x0130 (0x0010) [TArray<FScriptDelegate>]
|
|
318
|
+
LoginFailedDelegates: 0x0140n, // 0x0140 (0x0010) [TArray<FScriptDelegate>]
|
|
319
|
+
LoginCancelledDelegates: 0x0150n, // 0x0150 (0x0010) [TArray<FScriptDelegate>]
|
|
320
|
+
LogoutCompletedDelegates: 0x0160n, // 0x0160 (0x0010) [TArray<FScriptDelegate>]
|
|
321
|
+
MutingChangeDelegates: 0x0170n, // 0x0170 (0x0010) [TArray<FScriptDelegate>]
|
|
322
|
+
StatusMappings: 0x0180n, // 0x0180 (0x0010) [TArray<FOnlineStatusMappingEOS>]
|
|
323
|
+
DefaultStatus: 0x0190n, // 0x0190 (0x0010) [FString]
|
|
324
|
+
ReceivedGameInviteDelegates: 0x01a0n, // 0x01a0 (0x0010) [TArray<FScriptDelegate>]
|
|
325
|
+
CachedFriendMessages: 0x01b0n, // 0x01b0 (0x0010) [TArray<FOnlineFriendMessage>]
|
|
326
|
+
JoinFriendGameCompleteDelegates: 0x01c0n, // 0x01c0 (0x0010) [TArray<FScriptDelegate>]
|
|
327
|
+
AchievementDelegates: 0x01d0n, // 0x01d0 (0x0010) [TArray<FScriptDelegate>]
|
|
328
|
+
AchievementReadDelegates: 0x01e0n, // 0x01e0 (0x0010) [TArray<FScriptDelegate>]
|
|
329
|
+
AchievementsHandle: 0x01f0n, // 0x01f0 (0x0008) [FPointer]
|
|
330
|
+
LoginChangeDelegates: 0x01f8n, // 0x01f8 (0x0010) [TArray<FScriptDelegate>]
|
|
331
|
+
ReceivedPinGrantDelegates: 0x0208n, // 0x0208 (0x0010) [TArray<FScriptDelegate>]
|
|
332
|
+
BlockListUpdatedDelegates: 0x0218n, // 0x0218 (0x0010) [TArray<FScriptDelegate>]
|
|
333
|
+
PlayerBlockedDelegates: 0x0228n, // 0x0228 (0x0010) [TArray<FScriptDelegate>]
|
|
334
|
+
PlayerUnblockedDelegates: 0x0238n, // 0x0238 (0x0010) [TArray<FScriptDelegate>]
|
|
335
|
+
__OnBlockListUpdated__Delegate: 0x0248n, // 0x0248 (0x0018) [FScriptDelegate]
|
|
336
|
+
__OnPlayerBlocked__Delegate: 0x0260n, // 0x0260 (0x0018) [FScriptDelegate]
|
|
337
|
+
__OnPlayerUnblocked__Delegate: 0x0278n, // 0x0278 (0x0018) [FScriptDelegate]
|
|
338
|
+
__OnLoginChange__Delegate: 0x0290n, // 0x0290 (0x0018) [FScriptDelegate]
|
|
339
|
+
__OnLoginCancelled__Delegate: 0x02a8n, // 0x02a8 (0x0018) [FScriptDelegate]
|
|
340
|
+
__OnMutingChange__Delegate: 0x02c0n, // 0x02c0 (0x0018) [FScriptDelegate]
|
|
341
|
+
__OnFriendsChange__Delegate: 0x02d8n, // 0x02d8 (0x0018) [FScriptDelegate]
|
|
342
|
+
__OnLoginFailed__Delegate: 0x02f0n, // 0x02f0 (0x0018) [FScriptDelegate]
|
|
343
|
+
__OnReceievedPinGrantCode__Delegate: 0x0308n, // 0x0308 (0x0018) [FScriptDelegate]
|
|
344
|
+
__OnLogoutCompleted__Delegate: 0x0320n, // 0x0320 (0x0018) [FScriptDelegate]
|
|
345
|
+
__OnReadProfileSettingsComplete__Delegate: 0x0338n, // 0x0338 (0x0018) [FScriptDelegate]
|
|
346
|
+
__OnWriteProfileSettingsComplete__Delegate: 0x0350n, // 0x0350 (0x0018) [FScriptDelegate]
|
|
347
|
+
__OnReadFriendsComplete__Delegate: 0x0368n, // 0x0368 (0x0018) [FScriptDelegate]
|
|
348
|
+
__OnKeyboardInputComplete__Delegate: 0x0380n, // 0x0380 (0x0018) [FScriptDelegate]
|
|
349
|
+
__OnAddFriendComplete__Delegate: 0x0398n, // 0x0398 (0x0018) [FScriptDelegate]
|
|
350
|
+
__OnQueryUserByDisplayName__Delegate: 0x03b0n, // 0x03b0 (0x0018) [FScriptDelegate]
|
|
351
|
+
__OnAddFriendByNameComplete__Delegate: 0x03c8n, // 0x03c8 (0x0018) [FScriptDelegate]
|
|
352
|
+
__OnAcceptFriendInviteComplete__Delegate: 0x03e0n, // 0x03e0 (0x0018) [FScriptDelegate]
|
|
353
|
+
__OnDenyFriendInviteComplete__Delegate: 0x03f8n, // 0x03f8 (0x0018) [FScriptDelegate]
|
|
354
|
+
__OnRemoveFriendComplete__Delegate: 0x0410n, // 0x0410 (0x0018) [FScriptDelegate]
|
|
355
|
+
__OnFriendInviteReceived__Delegate: 0x0428n, // 0x0428 (0x0018) [FScriptDelegate]
|
|
356
|
+
__OnFriendInviteCanceled__Delegate: 0x0440n, // 0x0440 (0x0018) [FScriptDelegate]
|
|
357
|
+
__OnReceivedGameInvite__Delegate: 0x0458n, // 0x0458 (0x0018) [FScriptDelegate]
|
|
358
|
+
__OnJoinFriendGameComplete__Delegate: 0x0470n, // 0x0470 (0x0018) [FScriptDelegate]
|
|
359
|
+
__OnFriendMessageReceived__Delegate: 0x0488n, // 0x0488 (0x0018) [FScriptDelegate]
|
|
360
|
+
__OnRequestNativePlatformAuthTicketComplete__Delegate: 0x04a0n, // 0x04a0 (0x0018) [FScriptDelegate]
|
|
361
|
+
__OnReadPlayerStorageComplete__Delegate: 0x04b8n, // 0x04b8 (0x0018) [FScriptDelegate]
|
|
362
|
+
__OnReadPlayerStorageForNetIdComplete__Delegate: 0x04d0n, // 0x04d0 (0x0018) [FScriptDelegate]
|
|
363
|
+
__OnWritePlayerStorageComplete__Delegate: 0x04e8n, // 0x04e8 (0x0018) [FScriptDelegate]
|
|
364
|
+
__OnReadCrossTitleProfileSettingsComplete__Delegate: 0x0500n, // 0x0500 (0x0018) [FScriptDelegate]
|
|
365
|
+
__OnUserSignInComplete__Delegate: 0x0518n, // 0x0518 (0x0018) [FScriptDelegate]
|
|
366
|
+
__CanPlayOnlineChanged__Delegate: 0x0530n, // 0x0530 (0x0018) [FScriptDelegate]
|
|
367
|
+
__OnSaveDataNoSpaceDialogComplete__Delegate: 0x0548n, // 0x0548 (0x0018) [FScriptDelegate]
|
|
368
|
+
__OnRegisteredController__Delegate: 0x0560n, // 0x0560 (0x0018) [FScriptDelegate]
|
|
369
|
+
__OnUnregisteredController__Delegate: 0x0578n, // 0x0578 (0x0018) [FScriptDelegate]
|
|
370
|
+
__OnInputAPIChanged__Delegate: 0x0590n, // 0x0590 (0x0018) [FScriptDelegate]
|
|
371
|
+
__OnLoginStatusChange__Delegate: 0x05a8n, // 0x05a8 (0x0018) [FScriptDelegate]
|
|
372
|
+
__OnUserSwitchComplete__Delegate: 0x05c0n, // 0x05c0 (0x0018) [FScriptDelegate]
|
|
373
|
+
__OnDeviceSelectionComplete__Delegate: 0x05d8n, // 0x05d8 (0x0018) [FScriptDelegate]
|
|
374
|
+
__OnProfileDataChanged__Delegate: 0x05f0n, // 0x05f0 (0x0018) [FScriptDelegate]
|
|
375
|
+
__OnUnlockAchievementComplete__Delegate: 0x0608n, // 0x0608 (0x0018) [FScriptDelegate]
|
|
376
|
+
__OnReadAchievementsComplete__Delegate: 0x0620n, // 0x0620 (0x0018) [FScriptDelegate]
|
|
377
|
+
__OnAvatarChange__Delegate: 0x0638n, // 0x0638 (0x0018) [FScriptDelegate]
|
|
378
|
+
__FriendPresenceChange__Delegate: 0x0650n, // 0x0650 (0x0018) [FScriptDelegate]
|
|
379
|
+
__OnSanitizeStringComplete__Delegate: 0x0668n, // 0x0668 (0x0018) [FScriptDelegate]
|
|
380
|
+
__EpicIDToPlatformIDCallback__Delegate: 0x0680n, // 0x0680 (0x0018) [FScriptDelegate]
|
|
381
|
+
__OnFriendInviteAccepted__Delegate: 0x0698n, // 0x0698 (0x0018) [FScriptDelegate]
|
|
382
|
+
...Object_,
|
|
383
|
+
} as const;
|
|
384
|
+
|
|
385
|
+
/**
|
|
386
|
+
* OnlineSubsystemEOS.OnlineStatsInterfaceEOS Offsets
|
|
387
|
+
* Size: 0x00c8
|
|
388
|
+
* Extends: Object_
|
|
389
|
+
*/
|
|
390
|
+
export const OnlineStatsInterfaceEOS = {
|
|
391
|
+
StatsHandle: 0x0060n, // 0x0060 (0x0008) [FPointer]
|
|
392
|
+
PlayerInterfaceEOS: 0x0068n, // 0x0068 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
393
|
+
ReadStatsDelegates: 0x0070n, // 0x0070 (0x0010) [TArray<FScriptDelegate>]
|
|
394
|
+
__OnReadOnlineStatsComplete__Delegate: 0x0080n, // 0x0080 (0x0018) [FScriptDelegate]
|
|
395
|
+
__OnFlushOnlineStatsComplete__Delegate: 0x0098n, // 0x0098 (0x0018) [FScriptDelegate]
|
|
396
|
+
__OnRegisterHostStatGuidComplete__Delegate: 0x00b0n, // 0x00b0 (0x0018) [FScriptDelegate]
|
|
397
|
+
...Object_,
|
|
398
|
+
} as const;
|
|
399
|
+
|
|
400
|
+
/**
|
|
401
|
+
* Engine.OnlineSubsystem Offsets
|
|
402
|
+
* Size: 0x0378
|
|
403
|
+
* Extends: Object_
|
|
404
|
+
*/
|
|
405
|
+
export const OnlineSubsystem = {
|
|
406
|
+
VfTable_FTickableObject: 0x0060n, // 0x0060 (0x0008) [FPointer]
|
|
407
|
+
AccountInterface: 0x0068n, // 0x0068 (0x0010) [UOnlineAccountInterface*]
|
|
408
|
+
PlayerInterface: 0x0078n, // 0x0078 (0x0010) [UOnlinePlayerInterface*]
|
|
409
|
+
PlayerInterfaceEx: 0x0088n, // 0x0088 (0x0010) [UOnlinePlayerInterfaceEx*]
|
|
410
|
+
MarketplaceInterface: 0x0098n, // 0x0098 (0x0010) [UOnlineMarketplaceInterface*]
|
|
411
|
+
SystemInterface: 0x00a8n, // 0x00a8 (0x0010) [UOnlineSystemInterface*]
|
|
412
|
+
GameInterface: 0x00b8n, // 0x00b8 (0x0010) [UOnlineGameInterface*]
|
|
413
|
+
ContentInterface: 0x00c8n, // 0x00c8 (0x0010) [UOnlineContentInterface*]
|
|
414
|
+
VoiceInterface: 0x00d8n, // 0x00d8 (0x0010) [UOnlineVoiceInterface*]
|
|
415
|
+
StatsInterface: 0x00e8n, // 0x00e8 (0x0010) [UOnlineStatsInterface*]
|
|
416
|
+
NewsInterface: 0x00f8n, // 0x00f8 (0x0010) [UOnlineNewsInterface*]
|
|
417
|
+
PartyChatInterface: 0x0108n, // 0x0108 (0x0010) [UOnlinePartyChatInterface*]
|
|
418
|
+
TitleFileInterface: 0x0118n, // 0x0118 (0x0010) [UOnlineTitleFileInterface*]
|
|
419
|
+
TitleFileCacheInterface: 0x0128n, // 0x0128 (0x0010) [UOnlineTitleFileCacheInterface*]
|
|
420
|
+
UserCloudInterface: 0x0138n, // 0x0138 (0x0010) [UUserCloudFileInterface*]
|
|
421
|
+
SharedCloudInterface: 0x0148n, // 0x0148 (0x0010) [USharedCloudFileInterface*]
|
|
422
|
+
SocialInterface: 0x0158n, // 0x0158 (0x0010) [UOnlineSocialInterface*]
|
|
423
|
+
AuthInterface: 0x0168n, // 0x0168 (0x0010) [UOnlineAuthInterface*]
|
|
424
|
+
PersistentAuthInterface: 0x0178n, // 0x0178 (0x0010) [UOnlinePersistentAuthInterface*]
|
|
425
|
+
GameDVRInterface: 0x0188n, // 0x0188 (0x0010) [UOnlineGameDVRInterface*]
|
|
426
|
+
CommunityContentInterface: 0x0198n, // 0x0198 (0x0010) [UOnlineCommunityContentInterface*]
|
|
427
|
+
PurchaseInterface: 0x01a8n, // 0x01a8 (0x0010) [UOnlinePurchaseInterface*]
|
|
428
|
+
LobbyInterface: 0x01b8n, // 0x01b8 (0x0010) [UOnlineLobbyInterface*]
|
|
429
|
+
FriendsInterface: 0x01c8n, // 0x01c8 (0x0010) [UOnlineFriendsInterface*]
|
|
430
|
+
GameClipsInterface: 0x01d8n, // 0x01d8 (0x0010) [UOnlineGameClipsInterface*]
|
|
431
|
+
SearchClass: 0x01e8n, // 0x01e8 (0x0008) [UOnlineGameSearch*]
|
|
432
|
+
bSupportsMultiSignin: 0x01f0n, // 0x01f0 (0x0004) [bool : 0x1]
|
|
433
|
+
bSupportsMultiVoice: 0x01f0n, // 0x01f0 (0x0004) [bool : 0x2]
|
|
434
|
+
bShowPrivilegeCheckErrors: 0x01f0n, // 0x01f0 (0x0004) [bool : 0x4]
|
|
435
|
+
AccountSettings: 0x01f8n, // 0x01f8 (0x0010) [TArray<UPlatformAccountSettings*>]
|
|
436
|
+
BlockListStatuses: 0x0208n, // 0x0208 (0x0010) [TArray<UPlatformBlockListStatus*>]
|
|
437
|
+
UnsupportedCorrectiveActionURLs: 0x0218n, // 0x0218 (0x0010) [TArray<UPlatformURL*>]
|
|
438
|
+
SessionManager: 0x0228n, // 0x0228 (0x0008) [UOnlineSessionManager*]
|
|
439
|
+
SteamDLC: 0x0230n, // 0x0230 (0x0010) [TArray<FSteamDLCInfo>]
|
|
440
|
+
PS4DLC: 0x0240n, // 0x0240 (0x0010) [TArray<FPS4DLCInfo>]
|
|
441
|
+
XboxOneDLC: 0x0250n, // 0x0250 (0x0010) [TArray<FXboxOneDLCInfo>]
|
|
442
|
+
SwitchDLC: 0x0260n, // 0x0260 (0x0010) [TArray<FSwitchDLCInfo>]
|
|
443
|
+
EpicDLC: 0x0270n, // 0x0270 (0x0010) [TArray<FEpicDLCInfo>]
|
|
444
|
+
OnlinePlatformType: 0x0280n, // 0x0280 (0x0001) [OnlinePlatform]
|
|
445
|
+
CurrentConnectionStatus: 0x0281n, // 0x0281 (0x0001) [EOnlineServerConnectionStatus]
|
|
446
|
+
OnlineSubsystemNames: 0x0288n, // 0x0288 (0x0010) [TArray<FString>]
|
|
447
|
+
NamedInterfaces: 0x0298n, // 0x0298 (0x0010) [TArray<FNamedInterface>]
|
|
448
|
+
NamedInterfaceDefs: 0x02a8n, // 0x02a8 (0x0010) [TArray<FNamedInterfaceDef>]
|
|
449
|
+
Sessions: 0x02b8n, // 0x02b8 (0x0010) [TArray<FNamedSession>]
|
|
450
|
+
IniLocPatcherClassName: 0x02c8n, // 0x02c8 (0x0010) [FString]
|
|
451
|
+
Patcher: 0x02d8n, // 0x02d8 (0x0008) [UIniLocPatcher*]
|
|
452
|
+
AsyncMinCompletionTime: 0x02e0n, // 0x02e0 (0x0004) [float]
|
|
453
|
+
__FeaturePrivilegeLevelUpdated__Delegate: 0x02e8n, // 0x02e8 (0x0018) [FScriptDelegate]
|
|
454
|
+
__EventPlatformAccountSettingsCreated__Delegate: 0x0300n, // 0x0300 (0x0018) [FScriptDelegate]
|
|
455
|
+
__EventPlatformBlockListStatusCreated__Delegate: 0x0318n, // 0x0318 (0x0018) [FScriptDelegate]
|
|
456
|
+
__OnDeviceSuspend__Delegate: 0x0330n, // 0x0330 (0x0018) [FScriptDelegate]
|
|
457
|
+
__OnReadOnlineAvatarComplete__Delegate: 0x0348n, // 0x0348 (0x0018) [FScriptDelegate]
|
|
458
|
+
__OnSystemUserControllerPairingChanged__Delegate: 0x0360n, // 0x0360 (0x0018) [FScriptDelegate]
|
|
459
|
+
...Object_,
|
|
460
|
+
} as const;
|
|
461
|
+
|
|
462
|
+
/**
|
|
463
|
+
* IpDrv.OnlineSubsystemCommonImpl Offsets
|
|
464
|
+
* Size: 0x03c0
|
|
465
|
+
* Extends: OnlineSubsystem
|
|
466
|
+
*/
|
|
467
|
+
export const OnlineSubsystemCommonImpl = {
|
|
468
|
+
VoiceEngine: 0x0378n, // 0x0378 (0x0008) [FPointer]
|
|
469
|
+
MaxLocalTalkers: 0x0380n, // 0x0380 (0x0004) [int32]
|
|
470
|
+
MaxRemoteTalkers: 0x0384n, // 0x0384 (0x0004) [int32]
|
|
471
|
+
bIsUsingSpeechRecognition: 0x0388n, // 0x0388 (0x0004) [bool : 0x1]
|
|
472
|
+
GameInterfaceImpl: 0x0390n, // 0x0390 (0x0008) [UOnlineGameInterfaceImpl*]
|
|
473
|
+
AuthInterfaceImpl: 0x0398n, // 0x0398 (0x0008) [UOnlineAuthInterfaceImpl*]
|
|
474
|
+
PurchaseInterfaceImpl: 0x03a0n, // 0x03a0 (0x0008) [UOnlinePurchaseInterfaceImpl*]
|
|
475
|
+
__OnSanitizeStringComplete__Delegate: 0x03a8n, // 0x03a8 (0x0018) [FScriptDelegate]
|
|
476
|
+
...OnlineSubsystem,
|
|
477
|
+
} as const;
|
|
478
|
+
|
|
479
|
+
/**
|
|
480
|
+
* OnlineSubsystemEOS.OnlineSubsystemEOS Offsets
|
|
481
|
+
* Size: 0x0740
|
|
482
|
+
* Extends: OnlineSubsystemCommonImpl
|
|
483
|
+
*/
|
|
484
|
+
export const OnlineSubsystemEOS = {
|
|
485
|
+
PlayerInterfaceEOS: 0x03c0n, // 0x03c0 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
486
|
+
GameInterfaceEOS: 0x03c8n, // 0x03c8 (0x0008) [UOnlineGameInterfaceEOS*]
|
|
487
|
+
StatsInterfaceEOS: 0x03d0n, // 0x03d0 (0x0008) [UOnlineStatsInterfaceEOS*]
|
|
488
|
+
AuthInterfaceEOS: 0x03d8n, // 0x03d8 (0x0008) [UOnlineAuthInterfaceEOS*]
|
|
489
|
+
PersistentAuthInterfaceEOS: 0x03e0n, // 0x03e0 (0x0008) [UOnlinePersistentAuthInterfaceEOS*]
|
|
490
|
+
FriendsInterfaceEOS: 0x03e8n, // 0x03e8 (0x0008) [UOnlineFriendsInterfaceEOS*]
|
|
491
|
+
UserCloudFileInterfaceEOS: 0x03f0n, // 0x03f0 (0x0008) [UOnlineUserCloudFileInterfaceEOS*]
|
|
492
|
+
VoiceInterfaceEOS: 0x03f8n, // 0x03f8 (0x0008) [UOnlineVoiceInterfaceEOS*]
|
|
493
|
+
GameClipsInterfaceEOS: 0x0400n, // 0x0400 (0x0008) [UOnlineGameClipsInterfaceEOS*]
|
|
494
|
+
SpeechRecognitionCompleteDelegates: 0x0408n, // 0x0408 (0x0010) [TArray<FScriptDelegate>]
|
|
495
|
+
AuthHandle: 0x0418n, // 0x0418 (0x0008) [FPointer]
|
|
496
|
+
FriendsHandle: 0x0420n, // 0x0420 (0x0008) [FPointer]
|
|
497
|
+
UserInfoHandle: 0x0428n, // 0x0428 (0x0008) [FPointer]
|
|
498
|
+
PresenceHandle: 0x0430n, // 0x0430 (0x0008) [FPointer]
|
|
499
|
+
ConnectHandle: 0x0438n, // 0x0438 (0x0008) [FPointer]
|
|
500
|
+
SessionsHandle: 0x0440n, // 0x0440 (0x0008) [FPointer]
|
|
501
|
+
PDSHandle: 0x0448n, // 0x0448 (0x0008) [FPointer]
|
|
502
|
+
StatsHandle: 0x0450n, // 0x0450 (0x0008) [FPointer]
|
|
503
|
+
AchievementsHandle: 0x0458n, // 0x0458 (0x0008) [FPointer]
|
|
504
|
+
EcomHandle: 0x0460n, // 0x0460 (0x0008) [FPointer]
|
|
505
|
+
UIHandle: 0x0468n, // 0x0468 (0x0008) [FPointer]
|
|
506
|
+
RTCHandle: 0x0470n, // 0x0470 (0x0008) [FPointer]
|
|
507
|
+
RTCAudioHandle: 0x0478n, // 0x0478 (0x0008) [FPointer]
|
|
508
|
+
RTCAdminHandle: 0x0480n, // 0x0480 (0x0008) [FPointer]
|
|
509
|
+
GameClipsHandle: 0x0488n, // 0x0488 (0x0008) [FPointer]
|
|
510
|
+
EULATrackingHandle: 0x0490n, // 0x0490 (0x0008) [FPointer]
|
|
511
|
+
bLastTickShouldRecordAudioVal: 0x0498n, // 0x0498 (0x0004) [bool : 0x1]
|
|
512
|
+
UnlockedDLC: 0x04a0n, // 0x04a0 (0x0010) [TArray<FName>]
|
|
513
|
+
UnlockedDLCDelegates: 0x04b0n, // 0x04b0 (0x0010) [TArray<FScriptDelegate>]
|
|
514
|
+
ExternalUIChangeDelegates: 0x04c0n, // 0x04c0 (0x0010) [TArray<FScriptDelegate>]
|
|
515
|
+
__OnMicroTxnResponse__Delegate: 0x04d0n, // 0x04d0 (0x0018) [FScriptDelegate]
|
|
516
|
+
__EventGetAppPriceInfoComplete__Delegate: 0x04e8n, // 0x04e8 (0x0018) [FScriptDelegate]
|
|
517
|
+
__OnPlayerTalking__Delegate: 0x0500n, // 0x0500 (0x0018) [FScriptDelegate]
|
|
518
|
+
__OnRecognitionComplete__Delegate: 0x0518n, // 0x0518 (0x0018) [FScriptDelegate]
|
|
519
|
+
__OnReadOnlineStatsComplete__Delegate: 0x0530n, // 0x0530 (0x0018) [FScriptDelegate]
|
|
520
|
+
__OnRegisterHostStatGuidComplete__Delegate: 0x0548n, // 0x0548 (0x0018) [FScriptDelegate]
|
|
521
|
+
__OnFlushOnlineStatsComplete__Delegate: 0x0560n, // 0x0560 (0x0018) [FScriptDelegate]
|
|
522
|
+
__OnLinkStatusChange__Delegate: 0x0578n, // 0x0578 (0x0018) [FScriptDelegate]
|
|
523
|
+
__OnExternalUIChange__Delegate: 0x0590n, // 0x0590 (0x0018) [FScriptDelegate]
|
|
524
|
+
__OnControllerChange__Delegate: 0x05a8n, // 0x05a8 (0x0018) [FScriptDelegate]
|
|
525
|
+
__OnConnectionStatusChange__Delegate: 0x05c0n, // 0x05c0 (0x0018) [FScriptDelegate]
|
|
526
|
+
__OnStorageDeviceChange__Delegate: 0x05d8n, // 0x05d8 (0x0018) [FScriptDelegate]
|
|
527
|
+
__OnCreateOnlineAccountCompleted__Delegate: 0x05f0n, // 0x05f0 (0x0018) [FScriptDelegate]
|
|
528
|
+
__OnPlayerTalkingStateChange__Delegate: 0x0608n, // 0x0608 (0x0018) [FScriptDelegate]
|
|
529
|
+
__OnCloseKickPlayerDialog__Delegate: 0x0620n, // 0x0620 (0x0018) [FScriptDelegate]
|
|
530
|
+
__OnCommerceDialogClosed__Delegate: 0x0638n, // 0x0638 (0x0018) [FScriptDelegate]
|
|
531
|
+
__OnErrorDialogClosed__Delegate: 0x0650n, // 0x0650 (0x0018) [FScriptDelegate]
|
|
532
|
+
__OnUnlockedDLCChange__Delegate: 0x0668n, // 0x0668 (0x0018) [FScriptDelegate]
|
|
533
|
+
__OnStorePurchaseCompleteDelegate__Delegate: 0x0680n, // 0x0680 (0x0018) [FScriptDelegate]
|
|
534
|
+
__OnUserOrphaned__Delegate: 0x0698n, // 0x0698 (0x0018) [FScriptDelegate]
|
|
535
|
+
__OnUserRestored__Delegate: 0x06b0n, // 0x06b0 (0x0018) [FScriptDelegate]
|
|
536
|
+
__OnPlayerSigningOut__Delegate: 0x06c8n, // 0x06c8 (0x0018) [FScriptDelegate]
|
|
537
|
+
__EventCryptoKeyCreated__Delegate: 0x06e0n, // 0x06e0 (0x0018) [FScriptDelegate]
|
|
538
|
+
__EventTextMessageSigned__Delegate: 0x06f8n, // 0x06f8 (0x0018) [FScriptDelegate]
|
|
539
|
+
__EventTextMessageValidated__Delegate: 0x0710n, // 0x0710 (0x0018) [FScriptDelegate]
|
|
540
|
+
__OnCaptureAvailabilityChange__Delegate: 0x0728n, // 0x0728 (0x0018) [FScriptDelegate]
|
|
541
|
+
...OnlineSubsystemCommonImpl,
|
|
542
|
+
} as const;
|
|
543
|
+
|
|
544
|
+
/**
|
|
545
|
+
* OnlineSubsystemEOS.OnlineUserCloudFileInterfaceEOS Offsets
|
|
546
|
+
* Size: 0x0118
|
|
547
|
+
* Extends: Object_
|
|
548
|
+
*/
|
|
549
|
+
export const OnlineUserCloudFileInterfaceEOS = {
|
|
550
|
+
PDSHandle: 0x0060n, // 0x0060 (0x0008) [FPointer]
|
|
551
|
+
LastReadFileErrorCode: 0x0068n, // 0x0068 (0x0004) [int32]
|
|
552
|
+
PlayerInterfaceEOS: 0x0070n, // 0x0070 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
553
|
+
EnumerateUserFileCompleteDelegates: 0x0078n, // 0x0078 (0x0010) [TArray<FScriptDelegate>]
|
|
554
|
+
ReadUserFileCompleteDelegates: 0x0088n, // 0x0088 (0x0010) [TArray<FScriptDelegate>]
|
|
555
|
+
WriteUserFileCompleteDelegates: 0x0098n, // 0x0098 (0x0010) [TArray<FScriptDelegate>]
|
|
556
|
+
DeleteUserFileCompleteDelegates: 0x00a8n, // 0x00a8 (0x0010) [TArray<FScriptDelegate>]
|
|
557
|
+
__OnEnumerateUserFilesComplete__Delegate: 0x00b8n, // 0x00b8 (0x0018) [FScriptDelegate]
|
|
558
|
+
__OnReadUserFileComplete__Delegate: 0x00d0n, // 0x00d0 (0x0018) [FScriptDelegate]
|
|
559
|
+
__OnWriteUserFileComplete__Delegate: 0x00e8n, // 0x00e8 (0x0018) [FScriptDelegate]
|
|
560
|
+
__OnDeleteUserFileComplete__Delegate: 0x0100n, // 0x0100 (0x0018) [FScriptDelegate]
|
|
561
|
+
...Object_,
|
|
562
|
+
} as const;
|
|
563
|
+
|
|
564
|
+
/**
|
|
565
|
+
* OnlineSubsystemEOS.OnlineVoiceInterfaceEOS Offsets
|
|
566
|
+
* Size: 0x0298
|
|
567
|
+
* Extends: Object_
|
|
568
|
+
*/
|
|
569
|
+
export const OnlineVoiceInterfaceEOS = {
|
|
570
|
+
RTCHandle: 0x0060n, // 0x0060 (0x0008) [FPointer]
|
|
571
|
+
RTCAudioHandle: 0x0068n, // 0x0068 (0x0008) [FPointer]
|
|
572
|
+
RTCAdminHandle: 0x0070n, // 0x0070 (0x0008) [FPointer]
|
|
573
|
+
EULATrackingHandle: 0x0078n, // 0x0078 (0x0008) [FPointer]
|
|
574
|
+
PlayerInterfaceEOS: 0x0080n, // 0x0080 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
575
|
+
InputAudioDevices: 0x0088n, // 0x0088 (0x0010) [TArray<FVoiceAudioDevice>]
|
|
576
|
+
OutputAudioDevices: 0x0098n, // 0x0098 (0x0010) [TArray<FVoiceAudioDevice>]
|
|
577
|
+
AccountsAcceptedVoiceModerationEULAMap: 0x00a8n, // 0x00a8 (0x0050) [FMap_Mirror]
|
|
578
|
+
AccountsWithAgreementResponse: 0x00f8n, // 0x00f8 (0x0010) [TArray<FString>]
|
|
579
|
+
ProductUserIdToEpicUserIdMap: 0x0108n, // 0x0108 (0x0050) [FMap_Mirror]
|
|
580
|
+
PendingEpicIdQueries: 0x0158n, // 0x0158 (0x0050) [FMap_Mirror]
|
|
581
|
+
__EventLeftVoiceRoom__Delegate: 0x01a8n, // 0x01a8 (0x0018) [FScriptDelegate]
|
|
582
|
+
__EventJoinedVoiceRoom__Delegate: 0x01c0n, // 0x01c0 (0x0018) [FScriptDelegate]
|
|
583
|
+
__EventRemovedFromVoiceRoom__Delegate: 0x01d8n, // 0x01d8 (0x0018) [FScriptDelegate]
|
|
584
|
+
__EventPlayerJoinedVoiceRoom__Delegate: 0x01f0n, // 0x01f0 (0x0018) [FScriptDelegate]
|
|
585
|
+
__EventPlayerLeftVoiceRoom__Delegate: 0x0208n, // 0x0208 (0x0018) [FScriptDelegate]
|
|
586
|
+
__EventPlayerStatusChanged__Delegate: 0x0220n, // 0x0220 (0x0018) [FScriptDelegate]
|
|
587
|
+
__EventPlayerVoiceAgreementStatusChanged__Delegate: 0x0238n, // 0x0238 (0x0018) [FScriptDelegate]
|
|
588
|
+
__EventVoiceRecordingStatusChanged__Delegate: 0x0250n, // 0x0250 (0x0018) [FScriptDelegate]
|
|
589
|
+
__OnPlayerTalkingStateChange__Delegate: 0x0268n, // 0x0268 (0x0018) [FScriptDelegate]
|
|
590
|
+
__OnRecognitionComplete__Delegate: 0x0280n, // 0x0280 (0x0018) [FScriptDelegate]
|
|
591
|
+
...Object_,
|
|
592
|
+
} as const;
|
|
593
|
+
|
|
594
|
+
/**
|
|
595
|
+
* OnlineSubsystemEOS.VideoRecorderEOS Offsets
|
|
596
|
+
* Size: 0x0068
|
|
597
|
+
* Extends: Object_
|
|
598
|
+
*/
|
|
599
|
+
export const VideoRecorderEOS = {
|
|
600
|
+
VfTable_FTickableObject: 0x0060n, // 0x0060 (0x0008) [FPointer]
|
|
601
|
+
...Object_,
|
|
602
|
+
} as const;
|