@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,1283 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OnlineSubsystemSteamworks 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
|
+
* OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.AchievementMappingInfo Offsets
|
|
11
|
+
* Size: 0x001c
|
|
12
|
+
*/
|
|
13
|
+
export const FAchievementMappingInfo = {
|
|
14
|
+
AchievementId: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
15
|
+
AchievementName: 0x0004n, // 0x0004 (0x0008) [FName]
|
|
16
|
+
ViewId: 0x000cn, // 0x000c (0x0004) [int32]
|
|
17
|
+
ProgressCount: 0x0010n, // 0x0010 (0x0004) [int32]
|
|
18
|
+
MaxProgress: 0x0014n, // 0x0014 (0x0004) [int32]
|
|
19
|
+
bAutoUnlock: 0x0018n, // 0x0018 (0x0004) [bool : 0x1]
|
|
20
|
+
} as const;
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.AchievementProgressStat Offsets
|
|
24
|
+
* Size: 0x0010
|
|
25
|
+
*/
|
|
26
|
+
export const FAchievementProgressStat = {
|
|
27
|
+
AchievementId: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
28
|
+
Progress: 0x0004n, // 0x0004 (0x0004) [int32]
|
|
29
|
+
MaxProgress: 0x0008n, // 0x0008 (0x0004) [int32]
|
|
30
|
+
bUnlock: 0x000cn, // 0x000c (0x0004) [bool : 0x1]
|
|
31
|
+
} as const;
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* OnlineSubsystemSteamworks.OnlinePurchaseInterfaceSteamworks.AppPriceInfoRequest Offsets
|
|
35
|
+
* Size: 0x0030
|
|
36
|
+
*/
|
|
37
|
+
export const FAppPriceInfoRequest = {
|
|
38
|
+
HTTPRequest: 0x0000n, // 0x0000 (0x0008) [UHttpRequestInterface*]
|
|
39
|
+
AppNames: 0x0008n, // 0x0008 (0x0010) [TArray<FName>]
|
|
40
|
+
Callback: 0x0018n, // 0x0018 (0x0018) [FScriptDelegate]
|
|
41
|
+
} as const;
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* OnlineSubsystemSteamworks.OnlineGameInterfaceSteamworks.ClientFilterORClause Offsets
|
|
45
|
+
* Size: 0x0050
|
|
46
|
+
*/
|
|
47
|
+
export const FClientFilterORClause = {
|
|
48
|
+
OrParams: 0x0000n, // 0x0000 (0x0050) [FMultiMap_Mirror]
|
|
49
|
+
} as const;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.ControllerConnectionState Offsets
|
|
53
|
+
* Size: 0x0008
|
|
54
|
+
*/
|
|
55
|
+
export const FControllerConnectionState = {
|
|
56
|
+
bIsControllerConnected: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
57
|
+
bLastIsControllerConnected: 0x0004n, // 0x0004 (0x0004) [int32]
|
|
58
|
+
} as const;
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.DeferredLeaderboardRead Offsets
|
|
62
|
+
* Size: 0x0030
|
|
63
|
+
*/
|
|
64
|
+
export const FDeferredLeaderboardRead = {
|
|
65
|
+
LeaderboardName: 0x0000n, // 0x0000 (0x0010) [FString]
|
|
66
|
+
RequestType: 0x0010n, // 0x0010 (0x0001) [uint8]
|
|
67
|
+
Start: 0x0014n, // 0x0014 (0x0004) [int32]
|
|
68
|
+
End: 0x0018n, // 0x0018 (0x0004) [int32]
|
|
69
|
+
PlayerList: 0x0020n, // 0x0020 (0x0010) [TArray<FUniqueNetId>]
|
|
70
|
+
} as const;
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.DeferredLeaderboardWrite Offsets
|
|
74
|
+
* Size: 0x0028
|
|
75
|
+
*/
|
|
76
|
+
export const FDeferredLeaderboardWrite = {
|
|
77
|
+
LeaderboardName: 0x0000n, // 0x0000 (0x0010) [FString]
|
|
78
|
+
Score: 0x0010n, // 0x0010 (0x0004) [int32]
|
|
79
|
+
LeaderboardData: 0x0018n, // 0x0018 (0x0010) [TArray<int32>]
|
|
80
|
+
} as const;
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.DeviceIdCache Offsets
|
|
84
|
+
* Size: 0x0030
|
|
85
|
+
*/
|
|
86
|
+
export const FDeviceIdCache = {
|
|
87
|
+
DeviceID: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
88
|
+
DeviceSelectionMulticast: 0x0008n, // 0x0008 (0x0018) [FScriptDelegate]
|
|
89
|
+
DeviceSelectionDelegates: 0x0020n, // 0x0020 (0x0010) [TArray<FScriptDelegate>]
|
|
90
|
+
} as const;
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* OnlineSubsystemSteamworks.OnlineGameInterfaceSteamworks.FilterKeyToSteamKeyMapping Offsets
|
|
94
|
+
* Size: 0x0040
|
|
95
|
+
*/
|
|
96
|
+
export const FFilterKeyToSteamKeyMapping = {
|
|
97
|
+
KeyId: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
98
|
+
KeyType: 0x0004n, // 0x0004 (0x0001) [EOnlineGameSearchEntryType]
|
|
99
|
+
RawKey: 0x0008n, // 0x0008 (0x0010) [FString]
|
|
100
|
+
SteamKey: 0x0018n, // 0x0018 (0x0010) [FString]
|
|
101
|
+
bReverseFilter: 0x0028n, // 0x0028 (0x0004) [bool : 0x1]
|
|
102
|
+
IgnoreValue: 0x0030n, // 0x0030 (0x0010) [FString]
|
|
103
|
+
} as const;
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.LeaderboardEntry Offsets
|
|
107
|
+
* Size: 0x0060
|
|
108
|
+
*/
|
|
109
|
+
export const FLeaderboardEntry = {
|
|
110
|
+
PlayerUID: 0x0000n, // 0x0000 (0x0048) [FUniqueNetId]
|
|
111
|
+
Rank: 0x0048n, // 0x0048 (0x0004) [int32]
|
|
112
|
+
Score: 0x004cn, // 0x004c (0x0004) [int32]
|
|
113
|
+
LeaderboardData: 0x0050n, // 0x0050 (0x0010) [TArray<int32>]
|
|
114
|
+
} as const;
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.LeaderboardHandle Offsets
|
|
118
|
+
* Size: 0x0008
|
|
119
|
+
*/
|
|
120
|
+
export const FLeaderboardHandle = {
|
|
121
|
+
Dud: 0x0000n, // 0x0000 (0x0008) [uint64]
|
|
122
|
+
} as const;
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.LeaderboardTemplate Offsets
|
|
126
|
+
* Size: 0x002c
|
|
127
|
+
*/
|
|
128
|
+
export const FLeaderboardTemplate = {
|
|
129
|
+
LeaderboardName: 0x0000n, // 0x0000 (0x0010) [FString]
|
|
130
|
+
UpdateType: 0x0010n, // 0x0010 (0x0001) [ELeaderboardUpdateType]
|
|
131
|
+
LeaderboardSize: 0x0014n, // 0x0014 (0x0004) [int32]
|
|
132
|
+
SortType: 0x0018n, // 0x0018 (0x0001) [ELeaderboardSortType]
|
|
133
|
+
DisplayFormat: 0x0019n, // 0x0019 (0x0001) [ELeaderboardFormat]
|
|
134
|
+
LeaderboardRef: 0x0020n, // 0x0020 (0x0008) [FLeaderboardHandle]
|
|
135
|
+
bLeaderboardInitializing: 0x0028n, // 0x0028 (0x0004) [bool : 0x1]
|
|
136
|
+
bLeaderboardInitiated: 0x0028n, // 0x0028 (0x0004) [bool : 0x2]
|
|
137
|
+
} as const;
|
|
138
|
+
|
|
139
|
+
/**
|
|
140
|
+
* Engine.OnlineSubsystem.LocalTalker Offsets
|
|
141
|
+
* Size: 0x004c
|
|
142
|
+
*/
|
|
143
|
+
export const FLocalTalker = {
|
|
144
|
+
TalkerId: 0x0000n, // 0x0000 (0x0048) [FUniqueNetId]
|
|
145
|
+
bHasVoice: 0x0048n, // 0x0048 (0x0004) [bool : 0x1]
|
|
146
|
+
bHasNetworkedVoice: 0x0048n, // 0x0048 (0x0004) [bool : 0x2]
|
|
147
|
+
bIsRecognizingSpeech: 0x0048n, // 0x0048 (0x0004) [bool : 0x4]
|
|
148
|
+
bWasTalking: 0x0048n, // 0x0048 (0x0004) [bool : 0x8]
|
|
149
|
+
bIsTalking: 0x0048n, // 0x0048 (0x0004) [bool : 0x10]
|
|
150
|
+
bIsRegistered: 0x0048n, // 0x0048 (0x0004) [bool : 0x20]
|
|
151
|
+
} as const;
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.LocalTalkerSteam Offsets
|
|
155
|
+
* Size: 0x0051
|
|
156
|
+
* Extends: FLocalTalker
|
|
157
|
+
*/
|
|
158
|
+
export const FLocalTalkerSteam = {
|
|
159
|
+
MuteType: 0x0050n, // 0x0050 (0x0001) [EMuteType]
|
|
160
|
+
...FLocalTalker,
|
|
161
|
+
} as const;
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* OnlineSubsystemSteamworks.OnlineGameInterfaceSteamworks.MatchmakingQueryState Offsets
|
|
165
|
+
* Size: 0x0078
|
|
166
|
+
*/
|
|
167
|
+
export const FMatchmakingQueryState = {
|
|
168
|
+
GameSearch: 0x0000n, // 0x0000 (0x0008) [UOnlineGameSearch*]
|
|
169
|
+
QueryToRulesResponseMap: 0x0008n, // 0x0008 (0x0010) [TArray<FServerQueryToRulesResponseMapping>]
|
|
170
|
+
QueryToPingResponseMap: 0x0018n, // 0x0018 (0x0010) [TArray<FServerQueryToPingResponseMapping>]
|
|
171
|
+
ServerListResponse: 0x0028n, // 0x0028 (0x0008) [FPointer]
|
|
172
|
+
CurrentMatchmakingType: 0x0030n, // 0x0030 (0x0001) [ESteamMatchmakingType]
|
|
173
|
+
CurrentMatchmakingQuery: 0x0038n, // 0x0038 (0x0008) [FPointer]
|
|
174
|
+
ActiveClientsideFilters: 0x0040n, // 0x0040 (0x0010) [TArray<FClientFilterORClause>]
|
|
175
|
+
PendingRulesSearchSettings: 0x0050n, // 0x0050 (0x0010) [TArray<UOnlineGameSettings*>]
|
|
176
|
+
PendingPingSearchSettings: 0x0060n, // 0x0060 (0x0010) [TArray<UOnlineGameSettings*>]
|
|
177
|
+
bIgnoreRefreshComplete: 0x0070n, // 0x0070 (0x0004) [bool : 0x1]
|
|
178
|
+
LastActivityTimestamp: 0x0074n, // 0x0074 (0x0004) [float]
|
|
179
|
+
} as const;
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.OnlineStatusMapping Offsets
|
|
183
|
+
* Size: 0x0018
|
|
184
|
+
*/
|
|
185
|
+
export const FOnlineStatusMapping = {
|
|
186
|
+
StatusId: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
187
|
+
StatusString: 0x0008n, // 0x0008 (0x0010) [FString]
|
|
188
|
+
} as const;
|
|
189
|
+
|
|
190
|
+
/**
|
|
191
|
+
* OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.PendingPlayerStats Offsets
|
|
192
|
+
* Size: 0x00d8
|
|
193
|
+
*/
|
|
194
|
+
export const FPendingPlayerStats = {
|
|
195
|
+
Player: 0x0000n, // 0x0000 (0x0048) [FUniqueNetId]
|
|
196
|
+
PlayerName: 0x0048n, // 0x0048 (0x0010) [FString]
|
|
197
|
+
StatGuid: 0x0058n, // 0x0058 (0x0010) [FString]
|
|
198
|
+
Stats: 0x0068n, // 0x0068 (0x0010) [TArray<FPlayerStat>]
|
|
199
|
+
Score: 0x0078n, // 0x0078 (0x0050) [FOnlinePlayerScore]
|
|
200
|
+
Place: 0x00c8n, // 0x00c8 (0x0010) [FString]
|
|
201
|
+
} as const;
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.PlayerStat Offsets
|
|
205
|
+
* Size: 0x0018
|
|
206
|
+
*/
|
|
207
|
+
export const FPlayerStat = {
|
|
208
|
+
ViewId: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
209
|
+
ColumnId: 0x0004n, // 0x0004 (0x0004) [int32]
|
|
210
|
+
Data: 0x0008n, // 0x0008 (0x0010) [FSettingsData]
|
|
211
|
+
} as const;
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.ProfileSettingsCache Offsets
|
|
215
|
+
* Size: 0x0038
|
|
216
|
+
*/
|
|
217
|
+
export const FProfileSettingsCache = {
|
|
218
|
+
Profile: 0x0000n, // 0x0000 (0x0008) [UOnlineProfileSettings*]
|
|
219
|
+
ReadDelegates: 0x0008n, // 0x0008 (0x0010) [TArray<FScriptDelegate>]
|
|
220
|
+
WriteDelegates: 0x0018n, // 0x0018 (0x0010) [TArray<FScriptDelegate>]
|
|
221
|
+
ProfileDataChangedDelegates: 0x0028n, // 0x0028 (0x0010) [TArray<FScriptDelegate>]
|
|
222
|
+
} as const;
|
|
223
|
+
|
|
224
|
+
/**
|
|
225
|
+
* OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.QueuedAvatarRequest Offsets
|
|
226
|
+
* Size: 0x0070
|
|
227
|
+
*/
|
|
228
|
+
export const FQueuedAvatarRequest = {
|
|
229
|
+
CheckTime: 0x0000n, // 0x0000 (0x0004) [float]
|
|
230
|
+
NumberOfAttempts: 0x0004n, // 0x0004 (0x0004) [int32]
|
|
231
|
+
PlayerNetId: 0x0008n, // 0x0008 (0x0048) [FUniqueNetId]
|
|
232
|
+
Size: 0x0050n, // 0x0050 (0x0004) [int32]
|
|
233
|
+
ReadOnlineAvatarCompleteDelegate: 0x0058n, // 0x0058 (0x0018) [FScriptDelegate]
|
|
234
|
+
} as const;
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* OnlineSubsystemSteamworks.OnlineGameInterfaceSteamworks.ServerQueryToPingResponseMapping Offsets
|
|
238
|
+
* Size: 0x0010
|
|
239
|
+
*/
|
|
240
|
+
export const FServerQueryToPingResponseMapping = {
|
|
241
|
+
Query: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
242
|
+
Response: 0x0008n, // 0x0008 (0x0008) [FPointer]
|
|
243
|
+
} as const;
|
|
244
|
+
|
|
245
|
+
/**
|
|
246
|
+
* OnlineSubsystemSteamworks.OnlineGameInterfaceSteamworks.ServerQueryToRulesResponseMapping Offsets
|
|
247
|
+
* Size: 0x0010
|
|
248
|
+
*/
|
|
249
|
+
export const FServerQueryToRulesResponseMapping = {
|
|
250
|
+
Query: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
251
|
+
Response: 0x0008n, // 0x0008 (0x0008) [FPointer]
|
|
252
|
+
} as const;
|
|
253
|
+
|
|
254
|
+
/**
|
|
255
|
+
* OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.SteamPlayerClanData Offsets
|
|
256
|
+
* Size: 0x0020
|
|
257
|
+
*/
|
|
258
|
+
export const FSteamPlayerClanData = {
|
|
259
|
+
ClanName: 0x0000n, // 0x0000 (0x0010) [FString]
|
|
260
|
+
ClanTag: 0x0010n, // 0x0010 (0x0010) [FString]
|
|
261
|
+
} as const;
|
|
262
|
+
|
|
263
|
+
/**
|
|
264
|
+
* OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.SteamUserCloud Offsets
|
|
265
|
+
* Size: 0x0020
|
|
266
|
+
*/
|
|
267
|
+
export const FSteamUserCloud = {
|
|
268
|
+
UserId: 0x0000n, // 0x0000 (0x0010) [FString]
|
|
269
|
+
UserCloudFileData: 0x0010n, // 0x0010 (0x0010) [TArray<FTitleFile>]
|
|
270
|
+
} as const;
|
|
271
|
+
|
|
272
|
+
/**
|
|
273
|
+
* OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.SteamUserCloudMetadata Offsets
|
|
274
|
+
* Size: 0x0020
|
|
275
|
+
*/
|
|
276
|
+
export const FSteamUserCloudMetadata = {
|
|
277
|
+
UserId: 0x0000n, // 0x0000 (0x0010) [FString]
|
|
278
|
+
UserCloudMetadata: 0x0010n, // 0x0010 (0x0010) [TArray<FEmsFile>]
|
|
279
|
+
} as const;
|
|
280
|
+
|
|
281
|
+
/**
|
|
282
|
+
* OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.ViewIdToLeaderboardName Offsets
|
|
283
|
+
* Size: 0x0018
|
|
284
|
+
*/
|
|
285
|
+
export const FViewIdToLeaderboardName = {
|
|
286
|
+
ViewId: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
287
|
+
LeaderboardName: 0x0008n, // 0x0008 (0x0010) [FString]
|
|
288
|
+
} as const;
|
|
289
|
+
|
|
290
|
+
/**
|
|
291
|
+
* OnlineSubsystemSteamworks.OnlineCommunityContentInterfaceSteamworks.WorkshopItemData Offsets
|
|
292
|
+
* Size: 0x00a0
|
|
293
|
+
*/
|
|
294
|
+
export const FWorkshopItemData = {
|
|
295
|
+
Title: 0x0000n, // 0x0000 (0x0010) [FString]
|
|
296
|
+
Description: 0x0010n, // 0x0010 (0x0010) [FString]
|
|
297
|
+
MetaData: 0x0020n, // 0x0020 (0x0010) [FString]
|
|
298
|
+
Content: 0x0030n, // 0x0030 (0x0010) [FString]
|
|
299
|
+
Preview: 0x0040n, // 0x0040 (0x0010) [FString]
|
|
300
|
+
Tags: 0x0050n, // 0x0050 (0x0010) [FString]
|
|
301
|
+
AddPairs: 0x0060n, // 0x0060 (0x0010) [FString]
|
|
302
|
+
RemovePairs: 0x0070n, // 0x0070 (0x0010) [FString]
|
|
303
|
+
Visibility: 0x0080n, // 0x0080 (0x0004) [int32]
|
|
304
|
+
ItemID: 0x0088n, // 0x0088 (0x0008) [uint64]
|
|
305
|
+
bIsUploading: 0x0090n, // 0x0090 (0x0004) [bool : 0x1]
|
|
306
|
+
UpdateHandle: 0x0098n, // 0x0098 (0x0008) [uint64]
|
|
307
|
+
} as const;
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
* Core.Object Offsets
|
|
311
|
+
* Size: 0x0060
|
|
312
|
+
*/
|
|
313
|
+
export const Object_ = {
|
|
314
|
+
VfTableObject: 0x0000n, // 0x0000 (0x0008) [FPointer]
|
|
315
|
+
HashNext: 0x0008n, // 0x0008 (0x0008) [FPointer]
|
|
316
|
+
ObjectFlags: 0x0010n, // 0x0010 (0x0008) [uint64]
|
|
317
|
+
HashOuterNext: 0x0018n, // 0x0018 (0x0008) [FPointer]
|
|
318
|
+
StateFrame: 0x0020n, // 0x0020 (0x0008) [FPointer]
|
|
319
|
+
Linker: 0x0028n, // 0x0028 (0x0008) [UObject*]
|
|
320
|
+
LinkerIndex: 0x0030n, // 0x0030 (0x0008) [FPointer]
|
|
321
|
+
ObjectInternalInteger: 0x0038n, // 0x0038 (0x0004) [int32]
|
|
322
|
+
NetIndex: 0x003cn, // 0x003c (0x0004) [int32]
|
|
323
|
+
Outer: 0x0040n, // 0x0040 (0x0008) [UObject*]
|
|
324
|
+
Name: 0x0048n, // 0x0048 (0x0008) [FName]
|
|
325
|
+
Class: 0x0050n, // 0x0050 (0x0008) [UObject*]
|
|
326
|
+
ObjectArchetype: 0x0058n, // 0x0058 (0x0008) [UObject*]
|
|
327
|
+
} as const;
|
|
328
|
+
|
|
329
|
+
/**
|
|
330
|
+
* Engine.Player Offsets
|
|
331
|
+
* Size: 0x00b8
|
|
332
|
+
* Extends: Object_
|
|
333
|
+
*/
|
|
334
|
+
export const Player = {
|
|
335
|
+
VfTable_FExec: 0x0060n, // 0x0060 (0x0008) [FPointer]
|
|
336
|
+
ObjectProvider: 0x0068n, // 0x0068 (0x0008) [UObjectProvider*]
|
|
337
|
+
RegistryGroup: 0x0070n, // 0x0070 (0x0008) [UGroupComponent_ORS*]
|
|
338
|
+
Actor: 0x0078n, // 0x0078 (0x0008) [UPlayerController*]
|
|
339
|
+
CurrentNetSpeed: 0x0080n, // 0x0080 (0x0004) [int32]
|
|
340
|
+
ConfiguredInternetSpeed: 0x0084n, // 0x0084 (0x0004) [int32]
|
|
341
|
+
ConfiguredReplicationRate: 0x0088n, // 0x0088 (0x0004) [int32]
|
|
342
|
+
PP_DesaturationMultiplier: 0x008cn, // 0x008c (0x0004) [float]
|
|
343
|
+
PP_HighlightsMultiplier: 0x0090n, // 0x0090 (0x0004) [float]
|
|
344
|
+
PP_MidTonesMultiplier: 0x0094n, // 0x0094 (0x0004) [float]
|
|
345
|
+
PP_ShadowsMultiplier: 0x0098n, // 0x0098 (0x0004) [float]
|
|
346
|
+
__EventReceivedController__Delegate: 0x00a0n, // 0x00a0 (0x0018) [FScriptDelegate]
|
|
347
|
+
...Object_,
|
|
348
|
+
} as const;
|
|
349
|
+
|
|
350
|
+
/**
|
|
351
|
+
* Engine.NetConnection Offsets
|
|
352
|
+
* Size: 0xb1f0
|
|
353
|
+
* Extends: Player
|
|
354
|
+
*/
|
|
355
|
+
export const NetConnection = {
|
|
356
|
+
Children: 0xb1b0n, // 0xb1b0 (0x0010) [TArray<UChildConnection*>]
|
|
357
|
+
bUseSessionUID: 0xb1dcn, // 0xb1dc (0x0004) [bool : 0x1]
|
|
358
|
+
BadConnectionPingThreshold: 0xb1e8n, // 0xb1e8 (0x0004) [float]
|
|
359
|
+
BadConnectionReceiveTimeThreshold: 0xb1ecn, // 0xb1ec (0x0004) [float]
|
|
360
|
+
...Player,
|
|
361
|
+
} as const;
|
|
362
|
+
|
|
363
|
+
/**
|
|
364
|
+
* IpDrv.TcpipConnection Offsets
|
|
365
|
+
* Size: 0xb218
|
|
366
|
+
* Extends: NetConnection
|
|
367
|
+
*/
|
|
368
|
+
export const TcpipConnection = {
|
|
369
|
+
...NetConnection,
|
|
370
|
+
} as const;
|
|
371
|
+
|
|
372
|
+
/**
|
|
373
|
+
* OnlineSubsystemSteamworks.IpNetConnectionSteamworks Offsets
|
|
374
|
+
* Size: 0xb218
|
|
375
|
+
* Extends: TcpipConnection
|
|
376
|
+
*/
|
|
377
|
+
export const IpNetConnectionSteamworks = {
|
|
378
|
+
...TcpipConnection,
|
|
379
|
+
} as const;
|
|
380
|
+
|
|
381
|
+
/**
|
|
382
|
+
* Core.Subsystem Offsets
|
|
383
|
+
* Size: 0x0068
|
|
384
|
+
* Extends: Object_
|
|
385
|
+
*/
|
|
386
|
+
export const Subsystem = {
|
|
387
|
+
VfTable_FExec: 0x0060n, // 0x0060 (0x0008) [FPointer]
|
|
388
|
+
...Object_,
|
|
389
|
+
} as const;
|
|
390
|
+
|
|
391
|
+
/**
|
|
392
|
+
* Engine.NetDriver Offsets
|
|
393
|
+
* Size: 0x02a0
|
|
394
|
+
* Extends: Subsystem
|
|
395
|
+
*/
|
|
396
|
+
export const NetDriver = {
|
|
397
|
+
MatchFailureSeconds: 0x0070n, // 0x0070 (0x0004) [float]
|
|
398
|
+
ConnectionTimeout: 0x00ecn, // 0x00ec (0x0004) [float]
|
|
399
|
+
KeepAliveTime: 0x00f0n, // 0x00f0 (0x0004) [float]
|
|
400
|
+
RelevantTimeout: 0x00f4n, // 0x00f4 (0x0004) [float]
|
|
401
|
+
SpawnPrioritySeconds: 0x00f8n, // 0x00f8 (0x0004) [float]
|
|
402
|
+
ServerTravelPause: 0x00fcn, // 0x00fc (0x0004) [float]
|
|
403
|
+
MinClientRate: 0x0100n, // 0x0100 (0x0004) [int32]
|
|
404
|
+
MaxClientRate: 0x0104n, // 0x0104 (0x0004) [int32]
|
|
405
|
+
MedianClientRate: 0x0108n, // 0x0108 (0x0004) [int32]
|
|
406
|
+
MinReplicationRate: 0x010cn, // 0x010c (0x0004) [int32]
|
|
407
|
+
MaxReplicationRate: 0x0110n, // 0x0110 (0x0004) [int32]
|
|
408
|
+
MedianReplicationRate: 0x0114n, // 0x0114 (0x0004) [int32]
|
|
409
|
+
NetServerMaxTickRate: 0x0118n, // 0x0118 (0x0004) [int32]
|
|
410
|
+
bClampListenServerTickRate: 0x011cn, // 0x011c (0x0004) [bool : 0x1]
|
|
411
|
+
AllowDownloads: 0x0120n, // 0x0120 (0x0004) [bool : 0x1]
|
|
412
|
+
AllowPeerConnections: 0x0124n, // 0x0124 (0x0004) [bool : 0x1]
|
|
413
|
+
AllowPeerVoice: 0x0128n, // 0x0128 (0x0004) [bool : 0x1]
|
|
414
|
+
MaxDownloadSize: 0x0150n, // 0x0150 (0x0004) [int32]
|
|
415
|
+
DownloadManagers: 0x0158n, // 0x0158 (0x0010) [TArray<FString>]
|
|
416
|
+
NetConnectionClassName: 0x0210n, // 0x0210 (0x0010) [FString]
|
|
417
|
+
...Subsystem,
|
|
418
|
+
} as const;
|
|
419
|
+
|
|
420
|
+
/**
|
|
421
|
+
* IpDrv.TcpNetDriver Offsets
|
|
422
|
+
* Size: 0x0320
|
|
423
|
+
* Extends: NetDriver
|
|
424
|
+
*/
|
|
425
|
+
export const TcpNetDriver = {
|
|
426
|
+
AllowPlayerPortUnreach: 0x02f8n, // 0x02f8 (0x0004) [bool : 0x1]
|
|
427
|
+
LogPortUnreach: 0x02fcn, // 0x02fc (0x0004) [bool : 0x1]
|
|
428
|
+
...NetDriver,
|
|
429
|
+
} as const;
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* OnlineSubsystemSteamworks.IpNetDriverSteamworks Offsets
|
|
433
|
+
* Size: 0x0338
|
|
434
|
+
* Extends: TcpNetDriver
|
|
435
|
+
*/
|
|
436
|
+
export const IpNetDriverSteamworks = {
|
|
437
|
+
bSteamSocketsOnly: 0x0320n, // 0x0320 (0x0004) [bool : 0x1]
|
|
438
|
+
...TcpNetDriver,
|
|
439
|
+
} as const;
|
|
440
|
+
|
|
441
|
+
/**
|
|
442
|
+
* IpDrv.OnlineAuthInterfaceImpl Offsets
|
|
443
|
+
* Size: 0x03c8
|
|
444
|
+
* Extends: Object_
|
|
445
|
+
*/
|
|
446
|
+
export const OnlineAuthInterfaceImpl = {
|
|
447
|
+
VfTable_IOnlineAuthInterface: 0x0060n, // 0x0060 (0x0008) [FPointer]
|
|
448
|
+
AuthCodeRequests: 0x0068n, // 0x0068 (0x0010) [TArray<FAuthCodeRequest>]
|
|
449
|
+
NextAuthCodeID: 0x0078n, // 0x0078 (0x0004) [int32]
|
|
450
|
+
OwningSubsystem: 0x0080n, // 0x0080 (0x0008) [UOnlineSubsystemCommonImpl*]
|
|
451
|
+
bAuthReady: 0x0088n, // 0x0088 (0x0004) [bool : 0x1]
|
|
452
|
+
ClientAuthSessions: 0x0090n, // 0x0090 (0x0038) [FSparseArray_Mirror]
|
|
453
|
+
ServerAuthSessions: 0x00c8n, // 0x00c8 (0x0038) [FSparseArray_Mirror]
|
|
454
|
+
PeerAuthSessions: 0x0100n, // 0x0100 (0x0038) [FSparseArray_Mirror]
|
|
455
|
+
LocalClientAuthSessions: 0x0138n, // 0x0138 (0x0038) [FSparseArray_Mirror]
|
|
456
|
+
LocalServerAuthSessions: 0x0170n, // 0x0170 (0x0038) [FSparseArray_Mirror]
|
|
457
|
+
LocalPeerAuthSessions: 0x01a8n, // 0x01a8 (0x0038) [FSparseArray_Mirror]
|
|
458
|
+
AuthReadyDelegates: 0x01e0n, // 0x01e0 (0x0010) [TArray<FScriptDelegate>]
|
|
459
|
+
ClientAuthRequestDelegates: 0x01f0n, // 0x01f0 (0x0010) [TArray<FScriptDelegate>]
|
|
460
|
+
ServerAuthRequestDelegates: 0x0200n, // 0x0200 (0x0010) [TArray<FScriptDelegate>]
|
|
461
|
+
ClientAuthResponseDelegates: 0x0210n, // 0x0210 (0x0010) [TArray<FScriptDelegate>]
|
|
462
|
+
ServerAuthResponseDelegates: 0x0220n, // 0x0220 (0x0010) [TArray<FScriptDelegate>]
|
|
463
|
+
ClientAuthCompleteDelegates: 0x0230n, // 0x0230 (0x0010) [TArray<FScriptDelegate>]
|
|
464
|
+
ServerAuthCompleteDelegates: 0x0240n, // 0x0240 (0x0010) [TArray<FScriptDelegate>]
|
|
465
|
+
ClientAuthEndSessionRequestDelegates: 0x0250n, // 0x0250 (0x0010) [TArray<FScriptDelegate>]
|
|
466
|
+
ServerAuthRetryRequestDelegates: 0x0260n, // 0x0260 (0x0010) [TArray<FScriptDelegate>]
|
|
467
|
+
ClientConnectionCloseDelegates: 0x0270n, // 0x0270 (0x0010) [TArray<FScriptDelegate>]
|
|
468
|
+
ServerConnectionCloseDelegates: 0x0280n, // 0x0280 (0x0010) [TArray<FScriptDelegate>]
|
|
469
|
+
__OnAuthReady__Delegate: 0x0290n, // 0x0290 (0x0018) [FScriptDelegate]
|
|
470
|
+
__OnClientAuthRequest__Delegate: 0x02a8n, // 0x02a8 (0x0018) [FScriptDelegate]
|
|
471
|
+
__OnServerAuthRequest__Delegate: 0x02c0n, // 0x02c0 (0x0018) [FScriptDelegate]
|
|
472
|
+
__OnClientAuthResponse__Delegate: 0x02d8n, // 0x02d8 (0x0018) [FScriptDelegate]
|
|
473
|
+
__OnServerAuthResponse__Delegate: 0x02f0n, // 0x02f0 (0x0018) [FScriptDelegate]
|
|
474
|
+
__OnClientAuthComplete__Delegate: 0x0308n, // 0x0308 (0x0018) [FScriptDelegate]
|
|
475
|
+
__OnServerAuthComplete__Delegate: 0x0320n, // 0x0320 (0x0018) [FScriptDelegate]
|
|
476
|
+
__OnClientAuthEndSessionRequest__Delegate: 0x0338n, // 0x0338 (0x0018) [FScriptDelegate]
|
|
477
|
+
__OnServerAuthRetryRequest__Delegate: 0x0350n, // 0x0350 (0x0018) [FScriptDelegate]
|
|
478
|
+
__OnClientConnectionClose__Delegate: 0x0368n, // 0x0368 (0x0018) [FScriptDelegate]
|
|
479
|
+
__OnServerConnectionClose__Delegate: 0x0380n, // 0x0380 (0x0018) [FScriptDelegate]
|
|
480
|
+
__OnReceivedAuthCode__Delegate: 0x0398n, // 0x0398 (0x0018) [FScriptDelegate]
|
|
481
|
+
__OnAccountAuthorization__Delegate: 0x03b0n, // 0x03b0 (0x0018) [FScriptDelegate]
|
|
482
|
+
...Object_,
|
|
483
|
+
} as const;
|
|
484
|
+
|
|
485
|
+
/**
|
|
486
|
+
* OnlineSubsystemSteamworks.OnlineAuthInterfaceSteamworks Offsets
|
|
487
|
+
* Size: 0x03e0
|
|
488
|
+
* Extends: OnlineAuthInterfaceImpl
|
|
489
|
+
*/
|
|
490
|
+
export const OnlineAuthInterfaceSteamworks = {
|
|
491
|
+
EncryptedTicket: 0x03c8n, // 0x03c8 (0x0010) [TArray<uint8>]
|
|
492
|
+
EncryptedTicketHandle: 0x03d8n, // 0x03d8 (0x0008) [uint64]
|
|
493
|
+
...OnlineAuthInterfaceImpl,
|
|
494
|
+
} as const;
|
|
495
|
+
|
|
496
|
+
/**
|
|
497
|
+
* OnlineSubsystemSteamworks.OnlineCommunityContentInterfaceSteamworks Offsets
|
|
498
|
+
* Size: 0x0198
|
|
499
|
+
* Extends: Object_
|
|
500
|
+
*/
|
|
501
|
+
export const OnlineCommunityContentInterfaceSteamworks = {
|
|
502
|
+
OwningSubsystem: 0x0060n, // 0x0060 (0x0008) [UOnlineSubsystemSteamworks*]
|
|
503
|
+
WorkshopItem: 0x0068n, // 0x0068 (0x00a0) [FWorkshopItemData]
|
|
504
|
+
__OnDownloadedWorkshopData__Delegate: 0x0108n, // 0x0108 (0x0018) [FScriptDelegate]
|
|
505
|
+
__OnReadContentListComplete__Delegate: 0x0120n, // 0x0120 (0x0018) [FScriptDelegate]
|
|
506
|
+
__OnReadFriendsContentListComplete__Delegate: 0x0138n, // 0x0138 (0x0018) [FScriptDelegate]
|
|
507
|
+
__OnUploadContentComplete__Delegate: 0x0150n, // 0x0150 (0x0018) [FScriptDelegate]
|
|
508
|
+
__OnDownloadContentComplete__Delegate: 0x0168n, // 0x0168 (0x0018) [FScriptDelegate]
|
|
509
|
+
__OnGetContentPayloadComplete__Delegate: 0x0180n, // 0x0180 (0x0018) [FScriptDelegate]
|
|
510
|
+
...Object_,
|
|
511
|
+
} as const;
|
|
512
|
+
|
|
513
|
+
/**
|
|
514
|
+
* IpDrv.OnlineGameInterfaceImpl Offsets
|
|
515
|
+
* Size: 0x0318
|
|
516
|
+
* Extends: Object_
|
|
517
|
+
*/
|
|
518
|
+
export const OnlineGameInterfaceImpl = {
|
|
519
|
+
OwningSubsystem: 0x0060n, // 0x0060 (0x0008) [UOnlineSubsystemCommonImpl*]
|
|
520
|
+
GameSettings: 0x0068n, // 0x0068 (0x0008) [UOnlineGameSettings*]
|
|
521
|
+
GameSearch: 0x0070n, // 0x0070 (0x0008) [UOnlineGameSearch*]
|
|
522
|
+
CreateOnlineGameCompleteDelegates: 0x0078n, // 0x0078 (0x0010) [TArray<FScriptDelegate>]
|
|
523
|
+
UpdateOnlineGameCompleteDelegates: 0x0088n, // 0x0088 (0x0010) [TArray<FScriptDelegate>]
|
|
524
|
+
DestroyOnlineGameCompleteDelegates: 0x0098n, // 0x0098 (0x0010) [TArray<FScriptDelegate>]
|
|
525
|
+
JoinOnlineGameCompleteDelegates: 0x00a8n, // 0x00a8 (0x0010) [TArray<FScriptDelegate>]
|
|
526
|
+
MigrateOnlineGameCompleteDelegates: 0x00b8n, // 0x00b8 (0x0010) [TArray<FScriptDelegate>]
|
|
527
|
+
JoinMigratedOnlineGameCompleteDelegates: 0x00c8n, // 0x00c8 (0x0010) [TArray<FScriptDelegate>]
|
|
528
|
+
RecalculateSkillRatingCompleteDelegates: 0x00d8n, // 0x00d8 (0x0010) [TArray<FScriptDelegate>]
|
|
529
|
+
StartOnlineGameCompleteDelegates: 0x00e8n, // 0x00e8 (0x0010) [TArray<FScriptDelegate>]
|
|
530
|
+
EndOnlineGameCompleteDelegates: 0x00f8n, // 0x00f8 (0x0010) [TArray<FScriptDelegate>]
|
|
531
|
+
FindOnlineGamesCompleteDelegates: 0x0108n, // 0x0108 (0x0010) [TArray<FScriptDelegate>]
|
|
532
|
+
CancelFindOnlineGamesCompleteDelegates: 0x0118n, // 0x0118 (0x0010) [TArray<FScriptDelegate>]
|
|
533
|
+
LanBeaconState: 0x0128n, // 0x0128 (0x0001) [ELanBeaconState]
|
|
534
|
+
LanNonce: 0x0129n, // 0x0129 (0x0008) [uint8]
|
|
535
|
+
LanAnnouncePort: 0x0134n, // 0x0134 (0x0004) [int32]
|
|
536
|
+
LanGameUniqueId: 0x0138n, // 0x0138 (0x0004) [int32]
|
|
537
|
+
LanPacketPlatformMask: 0x013cn, // 0x013c (0x0004) [int32]
|
|
538
|
+
LanQueryTimeLeft: 0x0140n, // 0x0140 (0x0004) [float]
|
|
539
|
+
LanQueryTimeout: 0x0144n, // 0x0144 (0x0004) [float]
|
|
540
|
+
LanBeacon: 0x0148n, // 0x0148 (0x0008) [FPointer]
|
|
541
|
+
SessionInfo: 0x0150n, // 0x0150 (0x0008) [FPointer]
|
|
542
|
+
GameInviteAcceptedDelegates: 0x0158n, // 0x0158 (0x0010) [TArray<FScriptDelegate>]
|
|
543
|
+
__OnFindOnlineGamesComplete__Delegate: 0x0168n, // 0x0168 (0x0018) [FScriptDelegate]
|
|
544
|
+
__OnCreateOnlineGameComplete__Delegate: 0x0180n, // 0x0180 (0x0018) [FScriptDelegate]
|
|
545
|
+
__OnUpdateOnlineGameComplete__Delegate: 0x0198n, // 0x0198 (0x0018) [FScriptDelegate]
|
|
546
|
+
__OnDestroyOnlineGameComplete__Delegate: 0x01b0n, // 0x01b0 (0x0018) [FScriptDelegate]
|
|
547
|
+
__OnCancelFindOnlineGamesComplete__Delegate: 0x01c8n, // 0x01c8 (0x0018) [FScriptDelegate]
|
|
548
|
+
__OnJoinOnlineGameComplete__Delegate: 0x01e0n, // 0x01e0 (0x0018) [FScriptDelegate]
|
|
549
|
+
__OnRegisterPlayerComplete__Delegate: 0x01f8n, // 0x01f8 (0x0018) [FScriptDelegate]
|
|
550
|
+
__OnUnregisterPlayerComplete__Delegate: 0x0210n, // 0x0210 (0x0018) [FScriptDelegate]
|
|
551
|
+
__OnStartOnlineGameComplete__Delegate: 0x0228n, // 0x0228 (0x0018) [FScriptDelegate]
|
|
552
|
+
__OnEndOnlineGameComplete__Delegate: 0x0240n, // 0x0240 (0x0018) [FScriptDelegate]
|
|
553
|
+
__OnArbitrationRegistrationComplete__Delegate: 0x0258n, // 0x0258 (0x0018) [FScriptDelegate]
|
|
554
|
+
__OnGameInviteAccepted__Delegate: 0x0270n, // 0x0270 (0x0018) [FScriptDelegate]
|
|
555
|
+
__OnRecalculateSkillRatingComplete__Delegate: 0x0288n, // 0x0288 (0x0018) [FScriptDelegate]
|
|
556
|
+
__OnMigrateOnlineGameComplete__Delegate: 0x02a0n, // 0x02a0 (0x0018) [FScriptDelegate]
|
|
557
|
+
__OnJoinMigratedOnlineGameComplete__Delegate: 0x02b8n, // 0x02b8 (0x0018) [FScriptDelegate]
|
|
558
|
+
__OnQosStatusChanged__Delegate: 0x02d0n, // 0x02d0 (0x0018) [FScriptDelegate]
|
|
559
|
+
__EventReportMatchmakingInfo__Delegate: 0x02e8n, // 0x02e8 (0x0018) [FScriptDelegate]
|
|
560
|
+
__OnGamePlayersChanged__Delegate: 0x0300n, // 0x0300 (0x0018) [FScriptDelegate]
|
|
561
|
+
...Object_,
|
|
562
|
+
} as const;
|
|
563
|
+
|
|
564
|
+
/**
|
|
565
|
+
* OnlineSubsystemSteamworks.OnlineGameInterfaceSteamworks Offsets
|
|
566
|
+
* Size: 0x04a8
|
|
567
|
+
* Extends: OnlineGameInterfaceImpl
|
|
568
|
+
*/
|
|
569
|
+
export const OnlineGameInterfaceSteamworks = {
|
|
570
|
+
ServerBrowserSearchQuery: 0x0318n, // 0x0318 (0x0078) [FMatchmakingQueryState]
|
|
571
|
+
InviteSearchQuery: 0x0390n, // 0x0390 (0x0078) [FMatchmakingQueryState]
|
|
572
|
+
ServerBrowserTimeout: 0x0408n, // 0x0408 (0x0004) [float]
|
|
573
|
+
InviteTimeout: 0x040cn, // 0x040c (0x0004) [float]
|
|
574
|
+
InviteServerUID: 0x0410n, // 0x0410 (0x0048) [FUniqueNetId]
|
|
575
|
+
InviteGameSearch: 0x0458n, // 0x0458 (0x0008) [UOnlineGameSearch*]
|
|
576
|
+
InviteLocationUrl: 0x0460n, // 0x0460 (0x0010) [FString]
|
|
577
|
+
RegisterPlayerCompleteDelegates: 0x0470n, // 0x0470 (0x0010) [TArray<FScriptDelegate>]
|
|
578
|
+
UnregisterPlayerCompleteDelegates: 0x0480n, // 0x0480 (0x0010) [TArray<FScriptDelegate>]
|
|
579
|
+
bFilterEngineBuild: 0x0490n, // 0x0490 (0x0004) [bool : 0x1]
|
|
580
|
+
FilterKeyToSteamKeyMap: 0x0498n, // 0x0498 (0x0010) [TArray<FFilterKeyToSteamKeyMapping>]
|
|
581
|
+
...OnlineGameInterfaceImpl,
|
|
582
|
+
} as const;
|
|
583
|
+
|
|
584
|
+
/**
|
|
585
|
+
* OnlineSubsystemSteamworks.OnlineGameInterfaceSteamworks_PsyNet Offsets
|
|
586
|
+
* Size: 0x0338
|
|
587
|
+
* Extends: OnlineGameInterfaceImpl
|
|
588
|
+
*/
|
|
589
|
+
export const OnlineGameInterfaceSteamworks_PsyNet = {
|
|
590
|
+
RegisterPlayerCompleteDelegates: 0x0318n, // 0x0318 (0x0010) [TArray<FScriptDelegate>]
|
|
591
|
+
UnregisterPlayerCompleteDelegates: 0x0328n, // 0x0328 (0x0010) [TArray<FScriptDelegate>]
|
|
592
|
+
...OnlineGameInterfaceImpl,
|
|
593
|
+
} as const;
|
|
594
|
+
|
|
595
|
+
/**
|
|
596
|
+
* IpDrv.OnlineLobbyInterfaceImpl Offsets
|
|
597
|
+
* Size: 0x02c0
|
|
598
|
+
* Extends: Object_
|
|
599
|
+
*/
|
|
600
|
+
export const OnlineLobbyInterfaceImpl = {
|
|
601
|
+
CreateLobbyCompleteDelegates: 0x0060n, // 0x0060 (0x0010) [TArray<FScriptDelegate>]
|
|
602
|
+
FindLobbiesCompleteDelegates: 0x0070n, // 0x0070 (0x0010) [TArray<FScriptDelegate>]
|
|
603
|
+
JoinLobbyCompleteDelegates: 0x0080n, // 0x0080 (0x0010) [TArray<FScriptDelegate>]
|
|
604
|
+
LobbySettingsUpdateDelegates: 0x0090n, // 0x0090 (0x0010) [TArray<FScriptDelegate>]
|
|
605
|
+
LobbyMemberSettingsUpdateDelegates: 0x00a0n, // 0x00a0 (0x0010) [TArray<FScriptDelegate>]
|
|
606
|
+
LobbyMemberStatusUpdateDelegates: 0x00b0n, // 0x00b0 (0x0010) [TArray<FScriptDelegate>]
|
|
607
|
+
LobbyReceiveMessageDelegates: 0x00c0n, // 0x00c0 (0x0010) [TArray<FScriptDelegate>]
|
|
608
|
+
LobbyReceiveBinaryDataDelegates: 0x00d0n, // 0x00d0 (0x0010) [TArray<FScriptDelegate>]
|
|
609
|
+
LobbyJoinGameDelegates: 0x00e0n, // 0x00e0 (0x0010) [TArray<FScriptDelegate>]
|
|
610
|
+
LobbyInviteDelegates: 0x00f0n, // 0x00f0 (0x0010) [TArray<FScriptDelegate>]
|
|
611
|
+
LobbyErrorDelegates: 0x0100n, // 0x0100 (0x0010) [TArray<FScriptDelegate>]
|
|
612
|
+
LobbyDestroyedDelegates: 0x0110n, // 0x0110 (0x0010) [TArray<FScriptDelegate>]
|
|
613
|
+
LobbySessionCreatedDelegates: 0x0120n, // 0x0120 (0x0010) [TArray<FScriptDelegate>]
|
|
614
|
+
HostStartPlayTogetherDelegates: 0x0130n, // 0x0130 (0x0010) [TArray<FScriptDelegate>]
|
|
615
|
+
ActiveLobbies: 0x0140n, // 0x0140 (0x0010) [TArray<FActiveLobbyInfo>]
|
|
616
|
+
CachedFindLobbyResults: 0x0150n, // 0x0150 (0x0010) [TArray<FBasicLobbyInfo>]
|
|
617
|
+
CachedBinaryData: 0x0160n, // 0x0160 (0x0010) [TArray<uint8>]
|
|
618
|
+
__OnCreateLobbyComplete__Delegate: 0x0170n, // 0x0170 (0x0018) [FScriptDelegate]
|
|
619
|
+
__OnFindLobbiesComplete__Delegate: 0x0188n, // 0x0188 (0x0018) [FScriptDelegate]
|
|
620
|
+
__OnJoinLobbyComplete__Delegate: 0x01a0n, // 0x01a0 (0x0018) [FScriptDelegate]
|
|
621
|
+
__OnLobbySettingsUpdate__Delegate: 0x01b8n, // 0x01b8 (0x0018) [FScriptDelegate]
|
|
622
|
+
__OnLobbyMemberSettingsUpdate__Delegate: 0x01d0n, // 0x01d0 (0x0018) [FScriptDelegate]
|
|
623
|
+
__OnLobbyMemberStatusUpdate__Delegate: 0x01e8n, // 0x01e8 (0x0018) [FScriptDelegate]
|
|
624
|
+
__OnLobbyReceiveMessage__Delegate: 0x0200n, // 0x0200 (0x0018) [FScriptDelegate]
|
|
625
|
+
__OnLobbyReceiveBinaryData__Delegate: 0x0218n, // 0x0218 (0x0018) [FScriptDelegate]
|
|
626
|
+
__OnLobbyJoinGame__Delegate: 0x0230n, // 0x0230 (0x0018) [FScriptDelegate]
|
|
627
|
+
__OnLobbyInvite__Delegate: 0x0248n, // 0x0248 (0x0018) [FScriptDelegate]
|
|
628
|
+
__OnLobbyDestroyed__Delegate: 0x0260n, // 0x0260 (0x0018) [FScriptDelegate]
|
|
629
|
+
__OnLobbySessionCreated__Delegate: 0x0278n, // 0x0278 (0x0018) [FScriptDelegate]
|
|
630
|
+
__OnLobbyError__Delegate: 0x0290n, // 0x0290 (0x0018) [FScriptDelegate]
|
|
631
|
+
__OnHostStartPlayTogether__Delegate: 0x02a8n, // 0x02a8 (0x0018) [FScriptDelegate]
|
|
632
|
+
...Object_,
|
|
633
|
+
} as const;
|
|
634
|
+
|
|
635
|
+
/**
|
|
636
|
+
* OnlineSubsystemSteamworks.OnlineLobbyInterfaceSteamworks Offsets
|
|
637
|
+
* Size: 0x0310
|
|
638
|
+
* Extends: OnlineLobbyInterfaceImpl
|
|
639
|
+
*/
|
|
640
|
+
export const OnlineLobbyInterfaceSteamworks = {
|
|
641
|
+
CreateLobbySettings: 0x02c0n, // 0x02c0 (0x0010) [TArray<FLobbyMetaData>]
|
|
642
|
+
PendingCreateLobbyResult: 0x02d0n, // 0x02d0 (0x0010) [FUniqueLobbyId]
|
|
643
|
+
bLobbySearchInProgress: 0x02e0n, // 0x02e0 (0x0004) [bool : 0x1]
|
|
644
|
+
LobbyMemberKeys: 0x02e8n, // 0x02e8 (0x0010) [TArray<FString>]
|
|
645
|
+
__OnLobbyKicked__Delegate: 0x02f8n, // 0x02f8 (0x0018) [FScriptDelegate]
|
|
646
|
+
...OnlineLobbyInterfaceImpl,
|
|
647
|
+
} as const;
|
|
648
|
+
|
|
649
|
+
/**
|
|
650
|
+
* IpDrv.OnlinePurchaseInterfaceImpl Offsets
|
|
651
|
+
* Size: 0x0090
|
|
652
|
+
* Extends: Object_
|
|
653
|
+
*/
|
|
654
|
+
export const OnlinePurchaseInterfaceImpl = {
|
|
655
|
+
__EventGetAppPriceInfoComplete__Delegate: 0x0060n, // 0x0060 (0x0018) [FScriptDelegate]
|
|
656
|
+
__OnMicroTxnResponse__Delegate: 0x0078n, // 0x0078 (0x0018) [FScriptDelegate]
|
|
657
|
+
...Object_,
|
|
658
|
+
} as const;
|
|
659
|
+
|
|
660
|
+
/**
|
|
661
|
+
* OnlineSubsystemSteamworks.OnlinePurchaseInterfaceSteamworks Offsets
|
|
662
|
+
* Size: 0x00b0
|
|
663
|
+
* Extends: OnlinePurchaseInterfaceImpl
|
|
664
|
+
*/
|
|
665
|
+
export const OnlinePurchaseInterfaceSteamworks = {
|
|
666
|
+
AppPriceInfoRequests: 0x0090n, // 0x0090 (0x0010) [TArray<FAppPriceInfoRequest>]
|
|
667
|
+
MicroTxnResponseDelegates: 0x00a0n, // 0x00a0 (0x0010) [TArray<FScriptDelegate>]
|
|
668
|
+
...OnlinePurchaseInterfaceImpl,
|
|
669
|
+
} as const;
|
|
670
|
+
|
|
671
|
+
/**
|
|
672
|
+
* Engine.OnlineSubsystem Offsets
|
|
673
|
+
* Size: 0x0378
|
|
674
|
+
* Extends: Object_
|
|
675
|
+
*/
|
|
676
|
+
export const OnlineSubsystem = {
|
|
677
|
+
VfTable_FTickableObject: 0x0060n, // 0x0060 (0x0008) [FPointer]
|
|
678
|
+
AccountInterface: 0x0068n, // 0x0068 (0x0010) [UOnlineAccountInterface*]
|
|
679
|
+
PlayerInterface: 0x0078n, // 0x0078 (0x0010) [UOnlinePlayerInterface*]
|
|
680
|
+
PlayerInterfaceEx: 0x0088n, // 0x0088 (0x0010) [UOnlinePlayerInterfaceEx*]
|
|
681
|
+
MarketplaceInterface: 0x0098n, // 0x0098 (0x0010) [UOnlineMarketplaceInterface*]
|
|
682
|
+
SystemInterface: 0x00a8n, // 0x00a8 (0x0010) [UOnlineSystemInterface*]
|
|
683
|
+
GameInterface: 0x00b8n, // 0x00b8 (0x0010) [UOnlineGameInterface*]
|
|
684
|
+
ContentInterface: 0x00c8n, // 0x00c8 (0x0010) [UOnlineContentInterface*]
|
|
685
|
+
VoiceInterface: 0x00d8n, // 0x00d8 (0x0010) [UOnlineVoiceInterface*]
|
|
686
|
+
StatsInterface: 0x00e8n, // 0x00e8 (0x0010) [UOnlineStatsInterface*]
|
|
687
|
+
NewsInterface: 0x00f8n, // 0x00f8 (0x0010) [UOnlineNewsInterface*]
|
|
688
|
+
PartyChatInterface: 0x0108n, // 0x0108 (0x0010) [UOnlinePartyChatInterface*]
|
|
689
|
+
TitleFileInterface: 0x0118n, // 0x0118 (0x0010) [UOnlineTitleFileInterface*]
|
|
690
|
+
TitleFileCacheInterface: 0x0128n, // 0x0128 (0x0010) [UOnlineTitleFileCacheInterface*]
|
|
691
|
+
UserCloudInterface: 0x0138n, // 0x0138 (0x0010) [UUserCloudFileInterface*]
|
|
692
|
+
SharedCloudInterface: 0x0148n, // 0x0148 (0x0010) [USharedCloudFileInterface*]
|
|
693
|
+
SocialInterface: 0x0158n, // 0x0158 (0x0010) [UOnlineSocialInterface*]
|
|
694
|
+
AuthInterface: 0x0168n, // 0x0168 (0x0010) [UOnlineAuthInterface*]
|
|
695
|
+
PersistentAuthInterface: 0x0178n, // 0x0178 (0x0010) [UOnlinePersistentAuthInterface*]
|
|
696
|
+
GameDVRInterface: 0x0188n, // 0x0188 (0x0010) [UOnlineGameDVRInterface*]
|
|
697
|
+
CommunityContentInterface: 0x0198n, // 0x0198 (0x0010) [UOnlineCommunityContentInterface*]
|
|
698
|
+
PurchaseInterface: 0x01a8n, // 0x01a8 (0x0010) [UOnlinePurchaseInterface*]
|
|
699
|
+
LobbyInterface: 0x01b8n, // 0x01b8 (0x0010) [UOnlineLobbyInterface*]
|
|
700
|
+
FriendsInterface: 0x01c8n, // 0x01c8 (0x0010) [UOnlineFriendsInterface*]
|
|
701
|
+
GameClipsInterface: 0x01d8n, // 0x01d8 (0x0010) [UOnlineGameClipsInterface*]
|
|
702
|
+
SearchClass: 0x01e8n, // 0x01e8 (0x0008) [UOnlineGameSearch*]
|
|
703
|
+
bSupportsMultiSignin: 0x01f0n, // 0x01f0 (0x0004) [bool : 0x1]
|
|
704
|
+
bSupportsMultiVoice: 0x01f0n, // 0x01f0 (0x0004) [bool : 0x2]
|
|
705
|
+
bShowPrivilegeCheckErrors: 0x01f0n, // 0x01f0 (0x0004) [bool : 0x4]
|
|
706
|
+
AccountSettings: 0x01f8n, // 0x01f8 (0x0010) [TArray<UPlatformAccountSettings*>]
|
|
707
|
+
BlockListStatuses: 0x0208n, // 0x0208 (0x0010) [TArray<UPlatformBlockListStatus*>]
|
|
708
|
+
UnsupportedCorrectiveActionURLs: 0x0218n, // 0x0218 (0x0010) [TArray<UPlatformURL*>]
|
|
709
|
+
SessionManager: 0x0228n, // 0x0228 (0x0008) [UOnlineSessionManager*]
|
|
710
|
+
SteamDLC: 0x0230n, // 0x0230 (0x0010) [TArray<FSteamDLCInfo>]
|
|
711
|
+
PS4DLC: 0x0240n, // 0x0240 (0x0010) [TArray<FPS4DLCInfo>]
|
|
712
|
+
XboxOneDLC: 0x0250n, // 0x0250 (0x0010) [TArray<FXboxOneDLCInfo>]
|
|
713
|
+
SwitchDLC: 0x0260n, // 0x0260 (0x0010) [TArray<FSwitchDLCInfo>]
|
|
714
|
+
EpicDLC: 0x0270n, // 0x0270 (0x0010) [TArray<FEpicDLCInfo>]
|
|
715
|
+
OnlinePlatformType: 0x0280n, // 0x0280 (0x0001) [OnlinePlatform]
|
|
716
|
+
CurrentConnectionStatus: 0x0281n, // 0x0281 (0x0001) [EOnlineServerConnectionStatus]
|
|
717
|
+
OnlineSubsystemNames: 0x0288n, // 0x0288 (0x0010) [TArray<FString>]
|
|
718
|
+
NamedInterfaces: 0x0298n, // 0x0298 (0x0010) [TArray<FNamedInterface>]
|
|
719
|
+
NamedInterfaceDefs: 0x02a8n, // 0x02a8 (0x0010) [TArray<FNamedInterfaceDef>]
|
|
720
|
+
Sessions: 0x02b8n, // 0x02b8 (0x0010) [TArray<FNamedSession>]
|
|
721
|
+
IniLocPatcherClassName: 0x02c8n, // 0x02c8 (0x0010) [FString]
|
|
722
|
+
Patcher: 0x02d8n, // 0x02d8 (0x0008) [UIniLocPatcher*]
|
|
723
|
+
AsyncMinCompletionTime: 0x02e0n, // 0x02e0 (0x0004) [float]
|
|
724
|
+
__FeaturePrivilegeLevelUpdated__Delegate: 0x02e8n, // 0x02e8 (0x0018) [FScriptDelegate]
|
|
725
|
+
__EventPlatformAccountSettingsCreated__Delegate: 0x0300n, // 0x0300 (0x0018) [FScriptDelegate]
|
|
726
|
+
__EventPlatformBlockListStatusCreated__Delegate: 0x0318n, // 0x0318 (0x0018) [FScriptDelegate]
|
|
727
|
+
__OnDeviceSuspend__Delegate: 0x0330n, // 0x0330 (0x0018) [FScriptDelegate]
|
|
728
|
+
__OnReadOnlineAvatarComplete__Delegate: 0x0348n, // 0x0348 (0x0018) [FScriptDelegate]
|
|
729
|
+
__OnSystemUserControllerPairingChanged__Delegate: 0x0360n, // 0x0360 (0x0018) [FScriptDelegate]
|
|
730
|
+
...Object_,
|
|
731
|
+
} as const;
|
|
732
|
+
|
|
733
|
+
/**
|
|
734
|
+
* IpDrv.OnlineSubsystemCommonImpl Offsets
|
|
735
|
+
* Size: 0x03c0
|
|
736
|
+
* Extends: OnlineSubsystem
|
|
737
|
+
*/
|
|
738
|
+
export const OnlineSubsystemCommonImpl = {
|
|
739
|
+
VoiceEngine: 0x0378n, // 0x0378 (0x0008) [FPointer]
|
|
740
|
+
MaxLocalTalkers: 0x0380n, // 0x0380 (0x0004) [int32]
|
|
741
|
+
MaxRemoteTalkers: 0x0384n, // 0x0384 (0x0004) [int32]
|
|
742
|
+
bIsUsingSpeechRecognition: 0x0388n, // 0x0388 (0x0004) [bool : 0x1]
|
|
743
|
+
GameInterfaceImpl: 0x0390n, // 0x0390 (0x0008) [UOnlineGameInterfaceImpl*]
|
|
744
|
+
AuthInterfaceImpl: 0x0398n, // 0x0398 (0x0008) [UOnlineAuthInterfaceImpl*]
|
|
745
|
+
PurchaseInterfaceImpl: 0x03a0n, // 0x03a0 (0x0008) [UOnlinePurchaseInterfaceImpl*]
|
|
746
|
+
__OnSanitizeStringComplete__Delegate: 0x03a8n, // 0x03a8 (0x0018) [FScriptDelegate]
|
|
747
|
+
...OnlineSubsystem,
|
|
748
|
+
} as const;
|
|
749
|
+
|
|
750
|
+
/**
|
|
751
|
+
* OnlineSubsystemSteamworks.OnlineSubsystemSteamworks Offsets
|
|
752
|
+
* Size: 0x1030
|
|
753
|
+
* Extends: OnlineSubsystemCommonImpl
|
|
754
|
+
*/
|
|
755
|
+
export const OnlineSubsystemSteamworks = {
|
|
756
|
+
Discord: 0x03c0n, // 0x03c0 (0x0008) [FPointer]
|
|
757
|
+
UnlockedDLC: 0x03c8n, // 0x03c8 (0x0010) [TArray<FName>]
|
|
758
|
+
UnlockedDLCDelegates: 0x03d8n, // 0x03d8 (0x0010) [TArray<FScriptDelegate>]
|
|
759
|
+
bStoringAchievement: 0x03e8n, // 0x03e8 (0x0004) [bool : 0x1]
|
|
760
|
+
bClientStatsStorePending: 0x03e8n, // 0x03e8 (0x0004) [bool : 0x2]
|
|
761
|
+
bGSStatsStoresSuccess: 0x03e8n, // 0x03e8 (0x0004) [bool : 0x4]
|
|
762
|
+
bNeedsKeyboardTicking: 0x03e8n, // 0x03e8 (0x0004) [bool : 0x8]
|
|
763
|
+
bLastHasConnection: 0x03e8n, // 0x03e8 (0x0004) [bool : 0x10]
|
|
764
|
+
bIsStatsSessionOk: 0x03e8n, // 0x03e8 (0x0004) [bool : 0x20]
|
|
765
|
+
bHasSteamworksAccount: 0x03e8n, // 0x03e8 (0x0004) [bool : 0x40]
|
|
766
|
+
bShouldUseMcp: 0x03e8n, // 0x03e8 (0x0004) [bool : 0x80]
|
|
767
|
+
bShowIPCCount: 0x03e8n, // 0x03e8 (0x0004) [bool : 0x100]
|
|
768
|
+
bInterceptFriendMessages: 0x03e8n, // 0x03e8 (0x0004) [bool : 0x200]
|
|
769
|
+
TotalGSStatsStoresPending: 0x03ecn, // 0x03ec (0x0004) [int32]
|
|
770
|
+
UserStatsReceivedState: 0x03f0n, // 0x03f0 (0x0001) [EOnlineEnumerationReadState]
|
|
771
|
+
LoggedInStatus: 0x03f1n, // 0x03f1 (0x0001) [ELoginStatus]
|
|
772
|
+
KeyboardInputWasCanceled: 0x03f2n, // 0x03f2 (0x0001) [uint8]
|
|
773
|
+
bWasKeyboardInputCanceled: 0x03f3n, // 0x03f3 (0x0001) [uint8]
|
|
774
|
+
CurrentNotificationPosition: 0x03f4n, // 0x03f4 (0x0001) [ENetworkNotificationPosition]
|
|
775
|
+
CachedGameInt: 0x03f8n, // 0x03f8 (0x0008) [UOnlineGameInterfaceSteamworks*]
|
|
776
|
+
LocalProfileName: 0x0400n, // 0x0400 (0x0010) [FString]
|
|
777
|
+
LoggedInPlayerName: 0x0410n, // 0x0410 (0x0010) [FString]
|
|
778
|
+
LoggedInPlayerId: 0x0420n, // 0x0420 (0x0048) [FUniqueNetId]
|
|
779
|
+
LoggedInPlayerNum: 0x0468n, // 0x0468 (0x0004) [int32]
|
|
780
|
+
LoggedInCountry: 0x0470n, // 0x0470 (0x0010) [FString]
|
|
781
|
+
AvatarSizes: 0x0480n, // 0x0480 (0x0010) [TArray<int32>]
|
|
782
|
+
WriteProfileSettingsDelegates: 0x0490n, // 0x0490 (0x0010) [TArray<FScriptDelegate>]
|
|
783
|
+
CachedProfile: 0x04a0n, // 0x04a0 (0x0008) [UOnlineProfileSettings*]
|
|
784
|
+
LocalPlayerStorageReadDelegates: 0x04a8n, // 0x04a8 (0x0010) [TArray<FScriptDelegate>]
|
|
785
|
+
LocalPlayerStorageWriteDelegates: 0x04b8n, // 0x04b8 (0x0010) [TArray<FScriptDelegate>]
|
|
786
|
+
RemotePlayerStorageReadDelegates: 0x04c8n, // 0x04c8 (0x0010) [TArray<FScriptDelegate>]
|
|
787
|
+
SpeechRecognitionCompleteDelegates: 0x04d8n, // 0x04d8 (0x0010) [TArray<FScriptDelegate>]
|
|
788
|
+
ReadFriendsDelegates: 0x04e8n, // 0x04e8 (0x0010) [TArray<FScriptDelegate>]
|
|
789
|
+
FriendsChangeDelegates: 0x04f8n, // 0x04f8 (0x0010) [TArray<FScriptDelegate>]
|
|
790
|
+
MutingChangeDelegates: 0x0508n, // 0x0508 (0x0010) [TArray<FScriptDelegate>]
|
|
791
|
+
LoginChangeDelegates: 0x0518n, // 0x0518 (0x0010) [TArray<FScriptDelegate>]
|
|
792
|
+
LoginFailedDelegates: 0x0528n, // 0x0528 (0x0010) [TArray<FScriptDelegate>]
|
|
793
|
+
TalkingDelegates: 0x0538n, // 0x0538 (0x0010) [TArray<FScriptDelegate>]
|
|
794
|
+
ReadOnlineStatsCompleteDelegates: 0x0548n, // 0x0548 (0x0010) [TArray<FScriptDelegate>]
|
|
795
|
+
FlushOnlineStatsDelegates: 0x0558n, // 0x0558 (0x0010) [TArray<FScriptDelegate>]
|
|
796
|
+
ConnectionStatusChangeDelegates: 0x0568n, // 0x0568 (0x0010) [TArray<FScriptDelegate>]
|
|
797
|
+
LinkStatusDelegates: 0x0578n, // 0x0578 (0x0010) [TArray<FScriptDelegate>]
|
|
798
|
+
ReadTitleFileCompleteDelegates: 0x0588n, // 0x0588 (0x0010) [TArray<FScriptDelegate>]
|
|
799
|
+
AchievementDelegates: 0x0598n, // 0x0598 (0x0010) [TArray<FScriptDelegate>]
|
|
800
|
+
AchievementReadDelegates: 0x05a8n, // 0x05a8 (0x0010) [TArray<FScriptDelegate>]
|
|
801
|
+
EnumerateUserFilesCompleteDelegates: 0x05b8n, // 0x05b8 (0x0010) [TArray<FScriptDelegate>]
|
|
802
|
+
ReadUserFileCompleteDelegates: 0x05c8n, // 0x05c8 (0x0010) [TArray<FScriptDelegate>]
|
|
803
|
+
WriteUserFileCompleteDelegates: 0x05d8n, // 0x05d8 (0x0010) [TArray<FScriptDelegate>]
|
|
804
|
+
DeleteUserFileCompleteDelegates: 0x05e8n, // 0x05e8 (0x0010) [TArray<FScriptDelegate>]
|
|
805
|
+
SharedFileReadCompleteDelegates: 0x05f8n, // 0x05f8 (0x0010) [TArray<FScriptDelegate>]
|
|
806
|
+
SharedFileWriteCompleteDelegates: 0x0608n, // 0x0608 (0x0010) [TArray<FScriptDelegate>]
|
|
807
|
+
ExternalUIChangeDelegates: 0x0618n, // 0x0618 (0x0010) [TArray<FScriptDelegate>]
|
|
808
|
+
KeyboardInputCompleteDelegates: 0x0628n, // 0x0628 (0x0010) [TArray<FScriptDelegate>]
|
|
809
|
+
KeyboardInputResults: 0x0638n, // 0x0638 (0x0010) [FString]
|
|
810
|
+
CurrentLocalTalker: 0x0648n, // 0x0648 (0x0058) [FLocalTalkerSteam]
|
|
811
|
+
LastLocalTalkerNotificationTime: 0x06a0n, // 0x06a0 (0x0004) [float]
|
|
812
|
+
MaxTalkerNotificationTime: 0x06a4n, // 0x06a4 (0x0004) [float]
|
|
813
|
+
PendingRequestUserInformation: 0x06a8n, // 0x06a8 (0x0010) [TArray<FUniqueNetId>]
|
|
814
|
+
RemoteTalkers: 0x06b8n, // 0x06b8 (0x0010) [TArray<FRemoteTalker>]
|
|
815
|
+
AppID: 0x06c8n, // 0x06c8 (0x0004) [int32]
|
|
816
|
+
CurrentStatsRead: 0x06d0n, // 0x06d0 (0x0008) [UOnlineStatsRead*]
|
|
817
|
+
PendingStats: 0x06d8n, // 0x06d8 (0x0010) [TArray<FPendingPlayerStats>]
|
|
818
|
+
KeyboardResultsString: 0x06e8n, // 0x06e8 (0x0010) [FString]
|
|
819
|
+
KeyboardInputDelegates: 0x06f8n, // 0x06f8 (0x0010) [TArray<FScriptDelegate>]
|
|
820
|
+
FriendInviteReceivedDelegates: 0x0708n, // 0x0708 (0x0010) [TArray<FScriptDelegate>]
|
|
821
|
+
FriendMessageReceivedDelegates: 0x0718n, // 0x0718 (0x0010) [TArray<FScriptDelegate>]
|
|
822
|
+
AddFriendByNameCompleteDelegates: 0x0728n, // 0x0728 (0x0010) [TArray<FScriptDelegate>]
|
|
823
|
+
ProfileCache: 0x0738n, // 0x0738 (0x0038) [FProfileSettingsCache]
|
|
824
|
+
PlayerStorageCache: 0x0770n, // 0x0770 (0x0008) [UOnlinePlayerStorage*]
|
|
825
|
+
CachedFriendMessage: 0x0778n, // 0x0778 (0x0010) [FString]
|
|
826
|
+
DeviceCache: 0x0788n, // 0x0788 (0x0030) [FDeviceIdCache]
|
|
827
|
+
LocationUrlsForInvites: 0x07b8n, // 0x07b8 (0x0010) [TArray<FString>]
|
|
828
|
+
LocationUrl: 0x07c8n, // 0x07c8 (0x0010) [FString]
|
|
829
|
+
ReceivedGameInviteDelegates: 0x07d8n, // 0x07d8 (0x0010) [TArray<FScriptDelegate>]
|
|
830
|
+
JoinFriendGameCompleteDelegates: 0x07e8n, // 0x07e8 (0x0010) [TArray<FScriptDelegate>]
|
|
831
|
+
GetNumberOfCurrentPlayersCompleteDelegates: 0x07f8n, // 0x07f8 (0x0010) [TArray<FScriptDelegate>]
|
|
832
|
+
RegisterHostStatGuidCompleteDelegates: 0x0808n, // 0x0808 (0x0010) [TArray<FScriptDelegate>]
|
|
833
|
+
CachedFriendMessages: 0x0818n, // 0x0818 (0x0010) [TArray<FOnlineFriendMessage>]
|
|
834
|
+
StatusMappings: 0x0828n, // 0x0828 (0x0010) [TArray<FOnlineStatusMapping>]
|
|
835
|
+
DefaultStatus: 0x0838n, // 0x0838 (0x0010) [FString]
|
|
836
|
+
GameInviteMessage: 0x0848n, // 0x0848 (0x0010) [FString]
|
|
837
|
+
ControllerStates: 0x0858n, // 0x0858 (0x0020) [FControllerConnectionState]
|
|
838
|
+
ConnectionPresenceTimeInterval: 0x0878n, // 0x0878 (0x0004) [float]
|
|
839
|
+
ConnectionPresenceElapsedTime: 0x087cn, // 0x087c (0x0004) [float]
|
|
840
|
+
EncryptedProductKey: 0x0880n, // 0x0880 (0x0010) [FString]
|
|
841
|
+
MuteList: 0x0890n, // 0x0890 (0x0010) [TArray<FUniqueNetId>]
|
|
842
|
+
UserCloudFiles: 0x08a0n, // 0x08a0 (0x0010) [TArray<FSteamUserCloud>]
|
|
843
|
+
UserCloudMetadata: 0x08b0n, // 0x08b0 (0x0010) [TArray<FSteamUserCloudMetadata>]
|
|
844
|
+
SharedFileCache: 0x08c0n, // 0x08c0 (0x0010) [TArray<FTitleFile>]
|
|
845
|
+
QueuedAvatarRequests: 0x08d0n, // 0x08d0 (0x0010) [TArray<FQueuedAvatarRequest>]
|
|
846
|
+
AchievementMappings: 0x08e0n, // 0x08e0 (0x0010) [TArray<FAchievementMappingInfo>]
|
|
847
|
+
PendingAchievementProgress: 0x08f0n, // 0x08f0 (0x0010) [TArray<FAchievementProgressStat>]
|
|
848
|
+
LeaderboardList: 0x0900n, // 0x0900 (0x0010) [TArray<FLeaderboardTemplate>]
|
|
849
|
+
DeferredLeaderboardReads: 0x0910n, // 0x0910 (0x0010) [TArray<FDeferredLeaderboardRead>]
|
|
850
|
+
DeferredLeaderboardWrites: 0x0920n, // 0x0920 (0x0010) [TArray<FDeferredLeaderboardWrite>]
|
|
851
|
+
PendingLeaderboardStats: 0x0930n, // 0x0930 (0x0010) [TArray<FDeferredLeaderboardWrite>]
|
|
852
|
+
LeaderboardNameMappings: 0x0940n, // 0x0940 (0x0010) [TArray<FViewIdToLeaderboardName>]
|
|
853
|
+
GameServerStatsMappings: 0x0950n, // 0x0950 (0x0010) [TArray<int32>]
|
|
854
|
+
CachedPurchaseInt: 0x0960n, // 0x0960 (0x0008) [UOnlinePurchaseInterfaceSteamworks*]
|
|
855
|
+
CachedAuthInt: 0x0968n, // 0x0968 (0x0008) [UOnlineAuthInterfaceSteamworks*]
|
|
856
|
+
PendingRedirects: 0x0970n, // 0x0970 (0x0010) [TArray<FIpAddr>]
|
|
857
|
+
LobbyInterfaceImpl: 0x0980n, // 0x0980 (0x0008) [UOnlineLobbyInterfaceSteamworks*]
|
|
858
|
+
__CanPlayOnlineChanged__Delegate: 0x0988n, // 0x0988 (0x0018) [FScriptDelegate]
|
|
859
|
+
__OnUserSwitchComplete__Delegate: 0x09a0n, // 0x09a0 (0x0018) [FScriptDelegate]
|
|
860
|
+
__OnUserSignInComplete__Delegate: 0x09b8n, // 0x09b8 (0x0018) [FScriptDelegate]
|
|
861
|
+
__OnLoginChange__Delegate: 0x09d0n, // 0x09d0 (0x0018) [FScriptDelegate]
|
|
862
|
+
__OnLoginCancelled__Delegate: 0x09e8n, // 0x09e8 (0x0018) [FScriptDelegate]
|
|
863
|
+
__OnMutingChange__Delegate: 0x0a00n, // 0x0a00 (0x0018) [FScriptDelegate]
|
|
864
|
+
__OnFriendsChange__Delegate: 0x0a18n, // 0x0a18 (0x0018) [FScriptDelegate]
|
|
865
|
+
__OnFriendInviteAccepted__Delegate: 0x0a30n, // 0x0a30 (0x0018) [FScriptDelegate]
|
|
866
|
+
__FriendPresenceChange__Delegate: 0x0a48n, // 0x0a48 (0x0018) [FScriptDelegate]
|
|
867
|
+
__OnAvatarChange__Delegate: 0x0a60n, // 0x0a60 (0x0018) [FScriptDelegate]
|
|
868
|
+
__OnLoginFailed__Delegate: 0x0a78n, // 0x0a78 (0x0018) [FScriptDelegate]
|
|
869
|
+
__OnLogoutCompleted__Delegate: 0x0a90n, // 0x0a90 (0x0018) [FScriptDelegate]
|
|
870
|
+
__OnLoginStatusChange__Delegate: 0x0aa8n, // 0x0aa8 (0x0018) [FScriptDelegate]
|
|
871
|
+
__OnReadProfileSettingsComplete__Delegate: 0x0ac0n, // 0x0ac0 (0x0018) [FScriptDelegate]
|
|
872
|
+
__OnWriteProfileSettingsComplete__Delegate: 0x0ad8n, // 0x0ad8 (0x0018) [FScriptDelegate]
|
|
873
|
+
__OnReadPlayerStorageComplete__Delegate: 0x0af0n, // 0x0af0 (0x0018) [FScriptDelegate]
|
|
874
|
+
__OnReadPlayerStorageForNetIdComplete__Delegate: 0x0b08n, // 0x0b08 (0x0018) [FScriptDelegate]
|
|
875
|
+
__OnWritePlayerStorageComplete__Delegate: 0x0b20n, // 0x0b20 (0x0018) [FScriptDelegate]
|
|
876
|
+
__OnReadFriendsComplete__Delegate: 0x0b38n, // 0x0b38 (0x0018) [FScriptDelegate]
|
|
877
|
+
__OnPlayerTalkingStateChange__Delegate: 0x0b50n, // 0x0b50 (0x0018) [FScriptDelegate]
|
|
878
|
+
__OnRecognitionComplete__Delegate: 0x0b68n, // 0x0b68 (0x0018) [FScriptDelegate]
|
|
879
|
+
__OnReadOnlineStatsComplete__Delegate: 0x0b80n, // 0x0b80 (0x0018) [FScriptDelegate]
|
|
880
|
+
__OnFlushOnlineStatsComplete__Delegate: 0x0b98n, // 0x0b98 (0x0018) [FScriptDelegate]
|
|
881
|
+
__OnLinkStatusChange__Delegate: 0x0bb0n, // 0x0bb0 (0x0018) [FScriptDelegate]
|
|
882
|
+
__OnExternalUIChange__Delegate: 0x0bc8n, // 0x0bc8 (0x0018) [FScriptDelegate]
|
|
883
|
+
__OnControllerChange__Delegate: 0x0be0n, // 0x0be0 (0x0018) [FScriptDelegate]
|
|
884
|
+
__OnUserOrphaned__Delegate: 0x0bf8n, // 0x0bf8 (0x0018) [FScriptDelegate]
|
|
885
|
+
__OnUserRestored__Delegate: 0x0c10n, // 0x0c10 (0x0018) [FScriptDelegate]
|
|
886
|
+
__OnConnectionStatusChange__Delegate: 0x0c28n, // 0x0c28 (0x0018) [FScriptDelegate]
|
|
887
|
+
__OnStorageDeviceChange__Delegate: 0x0c40n, // 0x0c40 (0x0018) [FScriptDelegate]
|
|
888
|
+
__OnReadTitleFileComplete__Delegate: 0x0c58n, // 0x0c58 (0x0018) [FScriptDelegate]
|
|
889
|
+
__OnKeyboardInputComplete__Delegate: 0x0c70n, // 0x0c70 (0x0018) [FScriptDelegate]
|
|
890
|
+
__OnAddFriendComplete__Delegate: 0x0c88n, // 0x0c88 (0x0018) [FScriptDelegate]
|
|
891
|
+
__OnQueryUserByDisplayName__Delegate: 0x0ca0n, // 0x0ca0 (0x0018) [FScriptDelegate]
|
|
892
|
+
__OnAddFriendByNameComplete__Delegate: 0x0cb8n, // 0x0cb8 (0x0018) [FScriptDelegate]
|
|
893
|
+
__OnRemoveFriendComplete__Delegate: 0x0cd0n, // 0x0cd0 (0x0018) [FScriptDelegate]
|
|
894
|
+
__OnAcceptFriendInviteComplete__Delegate: 0x0ce8n, // 0x0ce8 (0x0018) [FScriptDelegate]
|
|
895
|
+
__OnDenyFriendInviteComplete__Delegate: 0x0d00n, // 0x0d00 (0x0018) [FScriptDelegate]
|
|
896
|
+
__OnFriendInviteReceived__Delegate: 0x0d18n, // 0x0d18 (0x0018) [FScriptDelegate]
|
|
897
|
+
__OnFriendInviteCanceled__Delegate: 0x0d30n, // 0x0d30 (0x0018) [FScriptDelegate]
|
|
898
|
+
__OnReceivedGameInvite__Delegate: 0x0d48n, // 0x0d48 (0x0018) [FScriptDelegate]
|
|
899
|
+
__OnJoinFriendGameComplete__Delegate: 0x0d60n, // 0x0d60 (0x0018) [FScriptDelegate]
|
|
900
|
+
__OnFriendMessageReceived__Delegate: 0x0d78n, // 0x0d78 (0x0018) [FScriptDelegate]
|
|
901
|
+
__OnRegisterHostStatGuidComplete__Delegate: 0x0d90n, // 0x0d90 (0x0018) [FScriptDelegate]
|
|
902
|
+
__OnDeviceSelectionComplete__Delegate: 0x0da8n, // 0x0da8 (0x0018) [FScriptDelegate]
|
|
903
|
+
__OnUnlockAchievementComplete__Delegate: 0x0dc0n, // 0x0dc0 (0x0018) [FScriptDelegate]
|
|
904
|
+
__OnProfileDataChanged__Delegate: 0x0dd8n, // 0x0dd8 (0x0018) [FScriptDelegate]
|
|
905
|
+
__OnReadAchievementsComplete__Delegate: 0x0df0n, // 0x0df0 (0x0018) [FScriptDelegate]
|
|
906
|
+
__OnGetNumberOfCurrentPlayersComplete__Delegate: 0x0e08n, // 0x0e08 (0x0018) [FScriptDelegate]
|
|
907
|
+
__OnReadCrossTitleProfileSettingsComplete__Delegate: 0x0e20n, // 0x0e20 (0x0018) [FScriptDelegate]
|
|
908
|
+
__OnEnumerateUserFilesComplete__Delegate: 0x0e38n, // 0x0e38 (0x0018) [FScriptDelegate]
|
|
909
|
+
__OnReadUserFileComplete__Delegate: 0x0e50n, // 0x0e50 (0x0018) [FScriptDelegate]
|
|
910
|
+
__OnWriteUserFileComplete__Delegate: 0x0e68n, // 0x0e68 (0x0018) [FScriptDelegate]
|
|
911
|
+
__OnDeleteUserFileComplete__Delegate: 0x0e80n, // 0x0e80 (0x0018) [FScriptDelegate]
|
|
912
|
+
__OnReadSharedFileComplete__Delegate: 0x0e98n, // 0x0e98 (0x0018) [FScriptDelegate]
|
|
913
|
+
__OnWriteSharedFileComplete__Delegate: 0x0eb0n, // 0x0eb0 (0x0018) [FScriptDelegate]
|
|
914
|
+
__OnStorePurchaseCompleteDelegate__Delegate: 0x0ec8n, // 0x0ec8 (0x0018) [FScriptDelegate]
|
|
915
|
+
__OnUnlockedDLCChange__Delegate: 0x0ee0n, // 0x0ee0 (0x0018) [FScriptDelegate]
|
|
916
|
+
__OnSaveDataNoSpaceDialogComplete__Delegate: 0x0ef8n, // 0x0ef8 (0x0018) [FScriptDelegate]
|
|
917
|
+
__OnCommerceDialogClosed__Delegate: 0x0f10n, // 0x0f10 (0x0018) [FScriptDelegate]
|
|
918
|
+
__OnCloseKickPlayerDialog__Delegate: 0x0f28n, // 0x0f28 (0x0018) [FScriptDelegate]
|
|
919
|
+
__OnErrorDialogClosed__Delegate: 0x0f40n, // 0x0f40 (0x0018) [FScriptDelegate]
|
|
920
|
+
__OnRegisteredController__Delegate: 0x0f58n, // 0x0f58 (0x0018) [FScriptDelegate]
|
|
921
|
+
__OnUnregisteredController__Delegate: 0x0f70n, // 0x0f70 (0x0018) [FScriptDelegate]
|
|
922
|
+
__OnInputAPIChanged__Delegate: 0x0f88n, // 0x0f88 (0x0018) [FScriptDelegate]
|
|
923
|
+
__OnPlayerSigningOut__Delegate: 0x0fa0n, // 0x0fa0 (0x0018) [FScriptDelegate]
|
|
924
|
+
__EpicIDToPlatformIDCallback__Delegate: 0x0fb8n, // 0x0fb8 (0x0018) [FScriptDelegate]
|
|
925
|
+
__OnBlockListUpdated__Delegate: 0x0fd0n, // 0x0fd0 (0x0018) [FScriptDelegate]
|
|
926
|
+
__OnPlayerBlocked__Delegate: 0x0fe8n, // 0x0fe8 (0x0018) [FScriptDelegate]
|
|
927
|
+
__OnPlayerUnblocked__Delegate: 0x1000n, // 0x1000 (0x0018) [FScriptDelegate]
|
|
928
|
+
__OnCaptureAvailabilityChange__Delegate: 0x1018n, // 0x1018 (0x0018) [FScriptDelegate]
|
|
929
|
+
...OnlineSubsystemCommonImpl,
|
|
930
|
+
} as const;
|
|
931
|
+
|
|
932
|
+
/**
|
|
933
|
+
* Core.Commandlet Offsets
|
|
934
|
+
* Size: 0x00b4
|
|
935
|
+
* Extends: Object_
|
|
936
|
+
*/
|
|
937
|
+
export const Commandlet = {
|
|
938
|
+
HelpDescription: 0x0060n, // 0x0060 (0x0010) [FString]
|
|
939
|
+
HelpUsage: 0x0070n, // 0x0070 (0x0010) [FString]
|
|
940
|
+
HelpWebLink: 0x0080n, // 0x0080 (0x0010) [FString]
|
|
941
|
+
HelpParamNames: 0x0090n, // 0x0090 (0x0010) [TArray<FString>]
|
|
942
|
+
HelpParamDescriptions: 0x00a0n, // 0x00a0 (0x0010) [TArray<FString>]
|
|
943
|
+
IsServer: 0x00b0n, // 0x00b0 (0x0004) [bool : 0x1]
|
|
944
|
+
IsClient: 0x00b0n, // 0x00b0 (0x0004) [bool : 0x2]
|
|
945
|
+
IsEditor: 0x00b0n, // 0x00b0 (0x0004) [bool : 0x4]
|
|
946
|
+
LogToConsole: 0x00b0n, // 0x00b0 (0x0004) [bool : 0x8]
|
|
947
|
+
ShowErrorCount: 0x00b0n, // 0x00b0 (0x0004) [bool : 0x10]
|
|
948
|
+
...Object_,
|
|
949
|
+
} as const;
|
|
950
|
+
|
|
951
|
+
/**
|
|
952
|
+
* OnlineSubsystemSteamworks.SteamWorkshopCommandlet Offsets
|
|
953
|
+
* Size: 0x00c0
|
|
954
|
+
* Extends: Commandlet
|
|
955
|
+
*/
|
|
956
|
+
export const SteamWorkshopCommandlet = {
|
|
957
|
+
OnlineSub: 0x00b8n, // 0x00b8 (0x0008) [UOnlineSubsystemCommonImpl*]
|
|
958
|
+
...Commandlet,
|
|
959
|
+
} as const;
|
|
960
|
+
|
|
961
|
+
/**
|
|
962
|
+
* Engine.Engine Offsets
|
|
963
|
+
* Size: 0x0958
|
|
964
|
+
* Extends: Subsystem
|
|
965
|
+
*/
|
|
966
|
+
export const Engine = {
|
|
967
|
+
GameShareClassName: 0x0068n, // 0x0068 (0x0010) [FString]
|
|
968
|
+
GameShareClass: 0x0078n, // 0x0078 (0x0008) [UObject*]
|
|
969
|
+
EngineShareClassName: 0x0080n, // 0x0080 (0x0010) [FString]
|
|
970
|
+
EngineShare: 0x0090n, // 0x0090 (0x0008) [UEngineShare*]
|
|
971
|
+
BuildID: 0x0098n, // 0x0098 (0x0004) [int32]
|
|
972
|
+
NetDriverSecurity: 0x00a0n, // 0x00a0 (0x0008) [UNetDriverSecurity*]
|
|
973
|
+
TinyFont: 0x00a8n, // 0x00a8 (0x0008) [UFont*]
|
|
974
|
+
TinyFontName: 0x00b0n, // 0x00b0 (0x0010) [FString]
|
|
975
|
+
SmallFont: 0x00c0n, // 0x00c0 (0x0008) [UFont*]
|
|
976
|
+
SmallFontName: 0x00c8n, // 0x00c8 (0x0010) [FString]
|
|
977
|
+
MediumFont: 0x00d8n, // 0x00d8 (0x0008) [UFont*]
|
|
978
|
+
MediumFontName: 0x00e0n, // 0x00e0 (0x0010) [FString]
|
|
979
|
+
LargeFont: 0x00f0n, // 0x00f0 (0x0008) [UFont*]
|
|
980
|
+
LargeFontName: 0x00f8n, // 0x00f8 (0x0010) [FString]
|
|
981
|
+
SubtitleFont: 0x0108n, // 0x0108 (0x0008) [UFont*]
|
|
982
|
+
SubtitleFontName: 0x0110n, // 0x0110 (0x0010) [FString]
|
|
983
|
+
ScalableFont: 0x0120n, // 0x0120 (0x0008) [UFont*]
|
|
984
|
+
ScalableFontName: 0x0128n, // 0x0128 (0x0010) [FString]
|
|
985
|
+
AdditionalFonts: 0x0138n, // 0x0138 (0x0010) [TArray<UFont*>]
|
|
986
|
+
AdditionalFontNames: 0x0148n, // 0x0148 (0x0010) [TArray<FString>]
|
|
987
|
+
ConsoleClass: 0x0158n, // 0x0158 (0x0008) [UConsole*]
|
|
988
|
+
ConsoleClassName: 0x0160n, // 0x0160 (0x0010) [FString]
|
|
989
|
+
GameViewportClientClass: 0x0170n, // 0x0170 (0x0008) [UGameViewportClient*]
|
|
990
|
+
GameViewportClientClassName: 0x0178n, // 0x0178 (0x0010) [FString]
|
|
991
|
+
DataStoreClientClass: 0x0188n, // 0x0188 (0x0008) [UDataStoreClient*]
|
|
992
|
+
DataStoreClientClassName: 0x0190n, // 0x0190 (0x0010) [FString]
|
|
993
|
+
LocalPlayerClass: 0x01a0n, // 0x01a0 (0x0008) [ULocalPlayer*]
|
|
994
|
+
LocalPlayerClassName: 0x01a8n, // 0x01a8 (0x0010) [FString]
|
|
995
|
+
DefaultMaterial: 0x01b8n, // 0x01b8 (0x0008) [UMaterial*]
|
|
996
|
+
DefaultMaterialName: 0x01c0n, // 0x01c0 (0x0010) [FString]
|
|
997
|
+
DefaultDecalMaterial: 0x01d0n, // 0x01d0 (0x0008) [UMaterial*]
|
|
998
|
+
DefaultDecalMaterialName: 0x01d8n, // 0x01d8 (0x0010) [FString]
|
|
999
|
+
DefaultTexture: 0x01e8n, // 0x01e8 (0x0008) [UTexture*]
|
|
1000
|
+
DefaultTextureName: 0x01f0n, // 0x01f0 (0x0010) [FString]
|
|
1001
|
+
WireframeMaterial: 0x0200n, // 0x0200 (0x0008) [UMaterial*]
|
|
1002
|
+
WireframeMaterialName: 0x0208n, // 0x0208 (0x0010) [FString]
|
|
1003
|
+
EmissiveTexturedMaterial: 0x0218n, // 0x0218 (0x0008) [UMaterial*]
|
|
1004
|
+
EmissiveTexturedMaterialName: 0x0220n, // 0x0220 (0x0010) [FString]
|
|
1005
|
+
GeomMaterial: 0x0230n, // 0x0230 (0x0008) [UMaterial*]
|
|
1006
|
+
GeomMaterialName: 0x0238n, // 0x0238 (0x0010) [FString]
|
|
1007
|
+
DefaultFogVolumeMaterial: 0x0248n, // 0x0248 (0x0008) [UMaterial*]
|
|
1008
|
+
DefaultFogVolumeMaterialName: 0x0250n, // 0x0250 (0x0010) [FString]
|
|
1009
|
+
TickMaterial: 0x0260n, // 0x0260 (0x0008) [UMaterial*]
|
|
1010
|
+
TickMaterialName: 0x0268n, // 0x0268 (0x0010) [FString]
|
|
1011
|
+
CrossMaterial: 0x0278n, // 0x0278 (0x0008) [UMaterial*]
|
|
1012
|
+
CrossMaterialName: 0x0280n, // 0x0280 (0x0010) [FString]
|
|
1013
|
+
LevelColorationLitMaterial: 0x0290n, // 0x0290 (0x0008) [UMaterial*]
|
|
1014
|
+
LevelColorationLitMaterialName: 0x0298n, // 0x0298 (0x0010) [FString]
|
|
1015
|
+
LevelColorationUnlitMaterial: 0x02a8n, // 0x02a8 (0x0008) [UMaterial*]
|
|
1016
|
+
LevelColorationUnlitMaterialName: 0x02b0n, // 0x02b0 (0x0010) [FString]
|
|
1017
|
+
LightingTexelDensityMaterial: 0x02c0n, // 0x02c0 (0x0008) [UMaterial*]
|
|
1018
|
+
LightingTexelDensityName: 0x02c8n, // 0x02c8 (0x0010) [FString]
|
|
1019
|
+
ShadedLevelColorationLitMaterial: 0x02d8n, // 0x02d8 (0x0008) [UMaterial*]
|
|
1020
|
+
ShadedLevelColorationLitMaterialName: 0x02e0n, // 0x02e0 (0x0010) [FString]
|
|
1021
|
+
ShadedLevelColorationUnlitMaterial: 0x02f0n, // 0x02f0 (0x0008) [UMaterial*]
|
|
1022
|
+
ShadedLevelColorationUnlitMaterialName: 0x02f8n, // 0x02f8 (0x0010) [FString]
|
|
1023
|
+
RemoveSurfaceMaterial: 0x0308n, // 0x0308 (0x0008) [UMaterial*]
|
|
1024
|
+
RemoveSurfaceMaterialName: 0x0310n, // 0x0310 (0x0010) [FString]
|
|
1025
|
+
VertexColorMaterial: 0x0320n, // 0x0320 (0x0008) [UMaterial*]
|
|
1026
|
+
VertexColorMaterialName: 0x0328n, // 0x0328 (0x0010) [FString]
|
|
1027
|
+
VertexColorViewModeMaterial_ColorOnly: 0x0338n, // 0x0338 (0x0008) [UMaterial*]
|
|
1028
|
+
VertexColorViewModeMaterialName_ColorOnly: 0x0340n, // 0x0340 (0x0010) [FString]
|
|
1029
|
+
VertexColorViewModeMaterial_AlphaAsColor: 0x0350n, // 0x0350 (0x0008) [UMaterial*]
|
|
1030
|
+
VertexColorViewModeMaterialName_AlphaAsColor: 0x0358n, // 0x0358 (0x0010) [FString]
|
|
1031
|
+
VertexColorViewModeMaterial_RedOnly: 0x0368n, // 0x0368 (0x0008) [UMaterial*]
|
|
1032
|
+
VertexColorViewModeMaterialName_RedOnly: 0x0370n, // 0x0370 (0x0010) [FString]
|
|
1033
|
+
VertexColorViewModeMaterial_GreenOnly: 0x0380n, // 0x0380 (0x0008) [UMaterial*]
|
|
1034
|
+
VertexColorViewModeMaterialName_GreenOnly: 0x0388n, // 0x0388 (0x0010) [FString]
|
|
1035
|
+
VertexColorViewModeMaterial_BlueOnly: 0x0398n, // 0x0398 (0x0008) [UMaterial*]
|
|
1036
|
+
VertexColorViewModeMaterialName_BlueOnly: 0x03a0n, // 0x03a0 (0x0010) [FString]
|
|
1037
|
+
HeatmapMaterial: 0x03b0n, // 0x03b0 (0x0008) [UMaterial*]
|
|
1038
|
+
HeatmapMaterialName: 0x03b8n, // 0x03b8 (0x0010) [FString]
|
|
1039
|
+
BoneWeightMaterial: 0x03c8n, // 0x03c8 (0x0008) [UMaterial*]
|
|
1040
|
+
BoneWeightMaterialName: 0x03d0n, // 0x03d0 (0x0010) [FString]
|
|
1041
|
+
TangentColorMaterial: 0x03e0n, // 0x03e0 (0x0008) [UMaterial*]
|
|
1042
|
+
TangentColorMaterialName: 0x03e8n, // 0x03e8 (0x0010) [FString]
|
|
1043
|
+
MobileEmulationMasterMaterial: 0x03f8n, // 0x03f8 (0x0008) [UMaterial*]
|
|
1044
|
+
MobileEmulationMasterMaterialName: 0x0400n, // 0x0400 (0x0010) [FString]
|
|
1045
|
+
ProcBuildingSimpleMaterial: 0x0410n, // 0x0410 (0x0008) [UMaterial*]
|
|
1046
|
+
ProcBuildingSimpleMaterialName: 0x0418n, // 0x0418 (0x0010) [FString]
|
|
1047
|
+
BuildingQuadStaticMesh: 0x0428n, // 0x0428 (0x0008) [UStaticMesh*]
|
|
1048
|
+
BuildingQuadStaticMeshName: 0x0430n, // 0x0430 (0x0010) [FString]
|
|
1049
|
+
ProcBuildingLODColorTexelsPerWorldUnit: 0x0440n, // 0x0440 (0x0004) [float]
|
|
1050
|
+
ProcBuildingLODLightingTexelsPerWorldUnit: 0x0444n, // 0x0444 (0x0004) [float]
|
|
1051
|
+
MaxProcBuildingLODColorTextureSize: 0x0448n, // 0x0448 (0x0004) [int32]
|
|
1052
|
+
MaxProcBuildingLODLightingTextureSize: 0x044cn, // 0x044c (0x0004) [int32]
|
|
1053
|
+
UseProcBuildingLODTextureCropping: 0x0450n, // 0x0450 (0x0004) [bool : 0x1]
|
|
1054
|
+
ForcePowerOfTwoProcBuildingLODTextures: 0x0450n, // 0x0450 (0x0004) [bool : 0x2]
|
|
1055
|
+
bCombineSimilarMappings: 0x0450n, // 0x0450 (0x0004) [bool : 0x4]
|
|
1056
|
+
bRenderLightMapDensityGrayscale: 0x0450n, // 0x0450 (0x0004) [bool : 0x8]
|
|
1057
|
+
bScreenshotRequested: 0x0450n, // 0x0450 (0x0004) [bool : 0x10]
|
|
1058
|
+
bUseSound: 0x0450n, // 0x0450 (0x0004) [bool : 0x20]
|
|
1059
|
+
bUseBackgroundLevelStreaming: 0x0450n, // 0x0450 (0x0004) [bool : 0x40]
|
|
1060
|
+
bSubtitlesEnabled: 0x0450n, // 0x0450 (0x0004) [bool : 0x80]
|
|
1061
|
+
bSubtitlesForcedOff: 0x0450n, // 0x0450 (0x0004) [bool : 0x100]
|
|
1062
|
+
bSmoothFrameRate: 0x0450n, // 0x0450 (0x0004) [bool : 0x200]
|
|
1063
|
+
bCheckForMultiplePawnsSpawnedInAFrame: 0x0450n, // 0x0450 (0x0004) [bool : 0x400]
|
|
1064
|
+
bShouldGenerateSimpleLightmaps: 0x0450n, // 0x0450 (0x0004) [bool : 0x800]
|
|
1065
|
+
bForceStaticTerrain: 0x0450n, // 0x0450 (0x0004) [bool : 0x1000]
|
|
1066
|
+
bForceCPUSkinning: 0x0450n, // 0x0450 (0x0004) [bool : 0x2000]
|
|
1067
|
+
bUsePostProcessEffects: 0x0450n, // 0x0450 (0x0004) [bool : 0x4000]
|
|
1068
|
+
bOnScreenKismetWarnings: 0x0450n, // 0x0450 (0x0004) [bool : 0x8000]
|
|
1069
|
+
bEnableKismetLogging: 0x0450n, // 0x0450 (0x0004) [bool : 0x10000]
|
|
1070
|
+
bAllowMatureLanguage: 0x0450n, // 0x0450 (0x0004) [bool : 0x20000]
|
|
1071
|
+
bDisablePhysXHardwareSupport: 0x0450n, // 0x0450 (0x0004) [bool : 0x40000]
|
|
1072
|
+
bEnablePhysX: 0x0450n, // 0x0450 (0x0004) [bool : 0x80000]
|
|
1073
|
+
bPauseOnLossOfFocus: 0x0450n, // 0x0450 (0x0004) [bool : 0x100000]
|
|
1074
|
+
bCheckParticleRenderSize: 0x0450n, // 0x0450 (0x0004) [bool : 0x200000]
|
|
1075
|
+
bEnableColorClear: 0x0450n, // 0x0450 (0x0004) [bool : 0x400000]
|
|
1076
|
+
bEnableSwitchRenderMode: 0x0450n, // 0x0450 (0x0004) [bool : 0x800000]
|
|
1077
|
+
bShowAllHiddenObjects: 0x0450n, // 0x0450 (0x0004) [bool : 0x1000000]
|
|
1078
|
+
bAreConstraintsDirty: 0x0450n, // 0x0450 (0x0004) [bool : 0x2000000]
|
|
1079
|
+
bHasPendingGlobalReattach: 0x0450n, // 0x0450 (0x0004) [bool : 0x4000000]
|
|
1080
|
+
bEnableOnScreenDebugMessages: 0x0450n, // 0x0450 (0x0004) [bool : 0x8000000]
|
|
1081
|
+
bEnableOnScreenDebugMessagesDisplay: 0x0450n, // 0x0450 (0x0004) [bool : 0x10000000]
|
|
1082
|
+
bSuppressMapWarnings: 0x0450n, // 0x0450 (0x0004) [bool : 0x20000000]
|
|
1083
|
+
bCookSeparateSharedMPGameContent: 0x0450n, // 0x0450 (0x0004) [bool : 0x40000000]
|
|
1084
|
+
bUseRecastNavMesh: 0x0450n, // 0x0450 (0x0004) [bool : 0x80000000]
|
|
1085
|
+
bDisableAILogging: 0x0454n, // 0x0454 (0x0004) [bool : 0x1]
|
|
1086
|
+
bUseNormalMapsForSimpleLightMaps: 0x0454n, // 0x0454 (0x0004) [bool : 0x2]
|
|
1087
|
+
bStartWithMatineeCapture: 0x0454n, // 0x0454 (0x0004) [bool : 0x4]
|
|
1088
|
+
bCompressMatineeCapture: 0x0454n, // 0x0454 (0x0004) [bool : 0x8]
|
|
1089
|
+
bLockReadOnlyLevels: 0x0454n, // 0x0454 (0x0004) [bool : 0x10]
|
|
1090
|
+
MaxRMSDForCombiningMappings: 0x0458n, // 0x0458 (0x0004) [float]
|
|
1091
|
+
ImageReflectionTextureSize: 0x045cn, // 0x045c (0x0004) [int32]
|
|
1092
|
+
LightingOnlyBrightness: 0x0460n, // 0x0460 (0x0010) [FLinearColor]
|
|
1093
|
+
LightComplexityColors: 0x0470n, // 0x0470 (0x0010) [TArray<FColor>]
|
|
1094
|
+
ShaderComplexityColors: 0x0480n, // 0x0480 (0x0010) [TArray<FLinearColor>]
|
|
1095
|
+
MaxPixelShaderAdditiveComplexityCount: 0x0490n, // 0x0490 (0x0004) [float]
|
|
1096
|
+
MinTextureDensity: 0x0494n, // 0x0494 (0x0004) [float]
|
|
1097
|
+
IdealTextureDensity: 0x0498n, // 0x0498 (0x0004) [float]
|
|
1098
|
+
MaxTextureDensity: 0x049cn, // 0x049c (0x0004) [float]
|
|
1099
|
+
MinLightMapDensity: 0x04a0n, // 0x04a0 (0x0004) [float]
|
|
1100
|
+
IdealLightMapDensity: 0x04a4n, // 0x04a4 (0x0004) [float]
|
|
1101
|
+
MaxLightMapDensity: 0x04a8n, // 0x04a8 (0x0004) [float]
|
|
1102
|
+
RenderLightMapDensityGrayscaleScale: 0x04acn, // 0x04ac (0x0004) [float]
|
|
1103
|
+
RenderLightMapDensityColorScale: 0x04b0n, // 0x04b0 (0x0004) [float]
|
|
1104
|
+
LightMapDensityVertexMappedColor: 0x04b4n, // 0x04b4 (0x0010) [FLinearColor]
|
|
1105
|
+
LightMapDensitySelectedColor: 0x04c4n, // 0x04c4 (0x0010) [FLinearColor]
|
|
1106
|
+
StatColorMappings: 0x04d8n, // 0x04d8 (0x0010) [TArray<FStatColorMapping>]
|
|
1107
|
+
EditorBrushMaterial: 0x04e8n, // 0x04e8 (0x0008) [UMaterial*]
|
|
1108
|
+
EditorBrushMaterialName: 0x04f0n, // 0x04f0 (0x0010) [FString]
|
|
1109
|
+
DefaultPhysMaterial: 0x0500n, // 0x0500 (0x0008) [UPhysicalMaterial*]
|
|
1110
|
+
DefaultPhysMaterialName: 0x0508n, // 0x0508 (0x0010) [FString]
|
|
1111
|
+
LandscapeHolePhysMaterial: 0x0518n, // 0x0518 (0x0008) [UPhysicalMaterial*]
|
|
1112
|
+
LandscapeHolePhysMaterialName: 0x0520n, // 0x0520 (0x0010) [FString]
|
|
1113
|
+
ApexDamageParams: 0x0530n, // 0x0530 (0x0008) [UApexDestructibleDamageParameters*]
|
|
1114
|
+
ApexDamageParamsName: 0x0538n, // 0x0538 (0x0010) [FString]
|
|
1115
|
+
TerrainErrorMaterial: 0x0548n, // 0x0548 (0x0008) [UMaterial*]
|
|
1116
|
+
TerrainErrorMaterialName: 0x0550n, // 0x0550 (0x0010) [FString]
|
|
1117
|
+
TerrainMaterialMaxTextureCount: 0x0560n, // 0x0560 (0x0004) [int32]
|
|
1118
|
+
TerrainTessellationCheckCount: 0x0564n, // 0x0564 (0x0004) [int32]
|
|
1119
|
+
TerrainTessellationCheckDistance: 0x0568n, // 0x0568 (0x0004) [float]
|
|
1120
|
+
OnlineSubsystemClass: 0x0570n, // 0x0570 (0x0008) [UOnlineSubsystem*]
|
|
1121
|
+
DefaultOnlineSubsystemName: 0x0578n, // 0x0578 (0x0010) [FString]
|
|
1122
|
+
DefaultPostProcess: 0x0588n, // 0x0588 (0x0008) [UPostProcessChain*]
|
|
1123
|
+
DefaultPostProcessName: 0x0590n, // 0x0590 (0x0010) [FString]
|
|
1124
|
+
ThumbnailSkeletalMeshPostProcess: 0x05a0n, // 0x05a0 (0x0008) [UPostProcessChain*]
|
|
1125
|
+
ThumbnailSkeletalMeshPostProcessName: 0x05a8n, // 0x05a8 (0x0010) [FString]
|
|
1126
|
+
ThumbnailParticleSystemPostProcess: 0x05b8n, // 0x05b8 (0x0008) [UPostProcessChain*]
|
|
1127
|
+
ThumbnailParticleSystemPostProcessName: 0x05c0n, // 0x05c0 (0x0010) [FString]
|
|
1128
|
+
ThumbnailMaterialPostProcess: 0x05d0n, // 0x05d0 (0x0008) [UPostProcessChain*]
|
|
1129
|
+
ThumbnailMaterialPostProcessName: 0x05d8n, // 0x05d8 (0x0010) [FString]
|
|
1130
|
+
DefaultUIScenePostProcess: 0x05e8n, // 0x05e8 (0x0008) [UPostProcessChain*]
|
|
1131
|
+
DefaultUIScenePostProcessName: 0x05f0n, // 0x05f0 (0x0010) [FString]
|
|
1132
|
+
DefaultUICaretMaterial: 0x0600n, // 0x0600 (0x0008) [UMaterial*]
|
|
1133
|
+
DefaultUICaretMaterialName: 0x0608n, // 0x0608 (0x0010) [FString]
|
|
1134
|
+
SceneCaptureReflectActorMaterial: 0x0618n, // 0x0618 (0x0008) [UMaterial*]
|
|
1135
|
+
SceneCaptureReflectActorMaterialName: 0x0620n, // 0x0620 (0x0010) [FString]
|
|
1136
|
+
SceneCaptureCubeActorMaterial: 0x0630n, // 0x0630 (0x0008) [UMaterial*]
|
|
1137
|
+
SceneCaptureCubeActorMaterialName: 0x0638n, // 0x0638 (0x0010) [FString]
|
|
1138
|
+
ScreenDoorNoiseTexture: 0x0648n, // 0x0648 (0x0008) [UTexture2D*]
|
|
1139
|
+
ScreenDoorNoiseTextureName: 0x0650n, // 0x0650 (0x0010) [FString]
|
|
1140
|
+
ImageGrainNoiseTexture: 0x0660n, // 0x0660 (0x0008) [UTexture2D*]
|
|
1141
|
+
ImageGrainNoiseTextureName: 0x0668n, // 0x0668 (0x0010) [FString]
|
|
1142
|
+
RandomAngleTexture: 0x0678n, // 0x0678 (0x0008) [UTexture2D*]
|
|
1143
|
+
RandomAngleTextureName: 0x0680n, // 0x0680 (0x0010) [FString]
|
|
1144
|
+
RandomNormalTexture: 0x0690n, // 0x0690 (0x0008) [UTexture2D*]
|
|
1145
|
+
RandomNormalTextureName: 0x0698n, // 0x0698 (0x0010) [FString]
|
|
1146
|
+
RandomMirrorDiscTexture: 0x06a8n, // 0x06a8 (0x0008) [UTexture2D*]
|
|
1147
|
+
RandomMirrorDiscTextureName: 0x06b0n, // 0x06b0 (0x0010) [FString]
|
|
1148
|
+
WeightMapPlaceholderTexture: 0x06c0n, // 0x06c0 (0x0008) [UTexture*]
|
|
1149
|
+
WeightMapPlaceholderTextureName: 0x06c8n, // 0x06c8 (0x0010) [FString]
|
|
1150
|
+
LightMapDensityTexture: 0x06d8n, // 0x06d8 (0x0008) [UTexture2D*]
|
|
1151
|
+
LightMapDensityTextureName: 0x06e0n, // 0x06e0 (0x0010) [FString]
|
|
1152
|
+
SMAAAreaTexture: 0x06f0n, // 0x06f0 (0x0008) [UTexture2D*]
|
|
1153
|
+
SMAAAreaTextureName: 0x06f8n, // 0x06f8 (0x0010) [FString]
|
|
1154
|
+
SMAASearchTexture: 0x0708n, // 0x0708 (0x0008) [UTexture2D*]
|
|
1155
|
+
SMAASearchTextureName: 0x0710n, // 0x0710 (0x0010) [FString]
|
|
1156
|
+
LightMapDensityNormal: 0x0720n, // 0x0720 (0x0008) [UTexture2D*]
|
|
1157
|
+
LightMapDensityNormalName: 0x0728n, // 0x0728 (0x0010) [FString]
|
|
1158
|
+
DefaultSound: 0x0738n, // 0x0738 (0x0008) [USoundNodeWave*]
|
|
1159
|
+
DefaultSoundName: 0x0740n, // 0x0740 (0x0010) [FString]
|
|
1160
|
+
TimeBetweenPurgingPendingKillObjects: 0x0750n, // 0x0750 (0x0004) [float]
|
|
1161
|
+
Client: 0x0758n, // 0x0758 (0x0008) [UClient*]
|
|
1162
|
+
GamePlayers: 0x0760n, // 0x0760 (0x0010) [TArray<ULocalPlayer*>]
|
|
1163
|
+
GameViewport: 0x0770n, // 0x0770 (0x0008) [UGameViewportClient*]
|
|
1164
|
+
DeferredCommands: 0x0778n, // 0x0778 (0x0010) [TArray<FString>]
|
|
1165
|
+
TickCycles: 0x0788n, // 0x0788 (0x0004) [int32]
|
|
1166
|
+
GameCycles: 0x078cn, // 0x078c (0x0004) [int32]
|
|
1167
|
+
ClientCycles: 0x0790n, // 0x0790 (0x0004) [int32]
|
|
1168
|
+
MaxSmoothedFrameRate: 0x0794n, // 0x0794 (0x0004) [float]
|
|
1169
|
+
MinSmoothedFrameRate: 0x0798n, // 0x0798 (0x0004) [float]
|
|
1170
|
+
NumPawnsAllowedToBeSpawnedInAFrame: 0x079cn, // 0x079c (0x0004) [int32]
|
|
1171
|
+
RemoteControlExec: 0x07a0n, // 0x07a0 (0x0008) [FPointer]
|
|
1172
|
+
MobileMaterialEmulator: 0x07a8n, // 0x07a8 (0x0008) [FPointer]
|
|
1173
|
+
C_WorldBox: 0x07b0n, // 0x07b0 (0x0004) [FColor]
|
|
1174
|
+
C_BrushWire: 0x07b4n, // 0x07b4 (0x0004) [FColor]
|
|
1175
|
+
C_AddWire: 0x07b8n, // 0x07b8 (0x0004) [FColor]
|
|
1176
|
+
C_SubtractWire: 0x07bcn, // 0x07bc (0x0004) [FColor]
|
|
1177
|
+
C_SemiSolidWire: 0x07c0n, // 0x07c0 (0x0004) [FColor]
|
|
1178
|
+
C_NonSolidWire: 0x07c4n, // 0x07c4 (0x0004) [FColor]
|
|
1179
|
+
C_WireBackground: 0x07c8n, // 0x07c8 (0x0004) [FColor]
|
|
1180
|
+
C_ScaleBoxHi: 0x07ccn, // 0x07cc (0x0004) [FColor]
|
|
1181
|
+
C_VolumeCollision: 0x07d0n, // 0x07d0 (0x0004) [FColor]
|
|
1182
|
+
C_BSPCollision: 0x07d4n, // 0x07d4 (0x0004) [FColor]
|
|
1183
|
+
C_OrthoBackground: 0x07d8n, // 0x07d8 (0x0004) [FColor]
|
|
1184
|
+
C_Volume: 0x07dcn, // 0x07dc (0x0004) [FColor]
|
|
1185
|
+
C_BrushShape: 0x07e0n, // 0x07e0 (0x0004) [FColor]
|
|
1186
|
+
StreamingDistanceFactor: 0x07e4n, // 0x07e4 (0x0004) [float]
|
|
1187
|
+
ScoutClassName: 0x07e8n, // 0x07e8 (0x0010) [FString]
|
|
1188
|
+
TransitionType: 0x07f8n, // 0x07f8 (0x0001) [ETransitionType]
|
|
1189
|
+
TransitionDescription: 0x0800n, // 0x0800 (0x0010) [FString]
|
|
1190
|
+
TransitionGameType: 0x0810n, // 0x0810 (0x0010) [FString]
|
|
1191
|
+
MeshLODRange: 0x0820n, // 0x0820 (0x0004) [float]
|
|
1192
|
+
CameraRotationThreshold: 0x0824n, // 0x0824 (0x0004) [float]
|
|
1193
|
+
CameraTranslationThreshold: 0x0828n, // 0x0828 (0x0004) [float]
|
|
1194
|
+
PrimitiveProbablyVisibleTime: 0x082cn, // 0x082c (0x0004) [float]
|
|
1195
|
+
PercentUnoccludedRequeries: 0x0830n, // 0x0830 (0x0004) [float]
|
|
1196
|
+
MaxOcclusionPixelsFraction: 0x0834n, // 0x0834 (0x0004) [float]
|
|
1197
|
+
MaxFluidNumVerts: 0x0838n, // 0x0838 (0x0004) [int32]
|
|
1198
|
+
FluidSimulationTimeLimit: 0x083cn, // 0x083c (0x0004) [float]
|
|
1199
|
+
MaxParticleResize: 0x0840n, // 0x0840 (0x0004) [int32]
|
|
1200
|
+
MaxParticleResizeWarn: 0x0844n, // 0x0844 (0x0004) [int32]
|
|
1201
|
+
MaxParticleVertexMemory: 0x0848n, // 0x0848 (0x0004) [int32]
|
|
1202
|
+
MaxParticleSpriteCount: 0x084cn, // 0x084c (0x0004) [int32]
|
|
1203
|
+
MaxParticleSubUVCount: 0x0850n, // 0x0850 (0x0004) [int32]
|
|
1204
|
+
BeginUPTryCount: 0x0854n, // 0x0854 (0x0004) [int32]
|
|
1205
|
+
PendingDroppedNotes: 0x0858n, // 0x0858 (0x0010) [TArray<FDropNoteInfo>]
|
|
1206
|
+
DynamicCoverMeshComponentName: 0x0868n, // 0x0868 (0x0010) [FString]
|
|
1207
|
+
NetClientTicksPerSecond: 0x0878n, // 0x0878 (0x0004) [float]
|
|
1208
|
+
MaxTrackedOcclusionIncrement: 0x087cn, // 0x087c (0x0004) [float]
|
|
1209
|
+
TrackedOcclusionStepSize: 0x0880n, // 0x0880 (0x0004) [float]
|
|
1210
|
+
DefaultSelectedMaterialColor: 0x0884n, // 0x0884 (0x0010) [FLinearColor]
|
|
1211
|
+
DefaultHoveredMaterialColor: 0x0894n, // 0x0894 (0x0010) [FLinearColor]
|
|
1212
|
+
SelectedMaterialColor: 0x08a4n, // 0x08a4 (0x0010) [FLinearColor]
|
|
1213
|
+
UnselectedMaterialColor: 0x08b4n, // 0x08b4 (0x0010) [FLinearColor]
|
|
1214
|
+
IgnoreSimulatedFuncWarnings: 0x08c8n, // 0x08c8 (0x0010) [TArray<FName>]
|
|
1215
|
+
ScreenSaverInhibitorSemaphore: 0x08d8n, // 0x08d8 (0x0004) [int32]
|
|
1216
|
+
ScreenSaverInhibitor: 0x08e0n, // 0x08e0 (0x0008) [FPointer]
|
|
1217
|
+
GlobalTranslationContext: 0x08e8n, // 0x08e8 (0x0008) [UTranslationContext*]
|
|
1218
|
+
LoadingMovieStartTime: 0x08f0n, // 0x08f0 (0x0008) [FDouble]
|
|
1219
|
+
MatineeCaptureName: 0x08f8n, // 0x08f8 (0x0010) [FString]
|
|
1220
|
+
MatineePackageCaptureName: 0x0908n, // 0x0908 (0x0010) [FString]
|
|
1221
|
+
VisibleLevelsForMatineeCapture: 0x0918n, // 0x0918 (0x0010) [FString]
|
|
1222
|
+
MatineeCaptureFPS: 0x0928n, // 0x0928 (0x0004) [int32]
|
|
1223
|
+
MatineeCaptureType: 0x092cn, // 0x092c (0x0004) [int32]
|
|
1224
|
+
MapLoadTimePC: 0x0930n, // 0x0930 (0x0004) [float]
|
|
1225
|
+
MapLoadTimePS4: 0x0934n, // 0x0934 (0x0004) [float]
|
|
1226
|
+
MapLoadTimeXboxOne: 0x0938n, // 0x0938 (0x0004) [float]
|
|
1227
|
+
MapLoadTimeSwitch: 0x093cn, // 0x093c (0x0004) [float]
|
|
1228
|
+
__EventPreLaunchURL__Delegate: 0x0940n, // 0x0940 (0x0018) [FScriptDelegate]
|
|
1229
|
+
...Subsystem,
|
|
1230
|
+
} as const;
|
|
1231
|
+
|
|
1232
|
+
/**
|
|
1233
|
+
* Engine.GameEngine Offsets
|
|
1234
|
+
* Size: 0x0b60
|
|
1235
|
+
* Extends: Engine
|
|
1236
|
+
*/
|
|
1237
|
+
export const GameEngine = {
|
|
1238
|
+
GPendingLevel: 0x0958n, // 0x0958 (0x0008) [UPendingLevel*]
|
|
1239
|
+
PendingLevelPlayerControllerClassName: 0x0960n, // 0x0960 (0x0010) [FString]
|
|
1240
|
+
LastURL: 0x0970n, // 0x0970 (0x0060) [FURL]
|
|
1241
|
+
LastRemoteURL: 0x09d0n, // 0x09d0 (0x0060) [FURL]
|
|
1242
|
+
ServerActors: 0x0a30n, // 0x0a30 (0x0010) [TArray<FString>]
|
|
1243
|
+
TravelURL: 0x0a40n, // 0x0a40 (0x0010) [FString]
|
|
1244
|
+
TravelType: 0x0a50n, // 0x0a50 (0x0001) [uint8]
|
|
1245
|
+
bWorldWasLoadedThisTick: 0x0a54n, // 0x0a54 (0x0004) [bool : 0x1]
|
|
1246
|
+
bCheckForMovieCapture: 0x0a54n, // 0x0a54 (0x0004) [bool : 0x2]
|
|
1247
|
+
bTriggerPostLoadMap: 0x0a54n, // 0x0a54 (0x0004) [bool : 0x4]
|
|
1248
|
+
bStartedLoadMapMovie: 0x0a54n, // 0x0a54 (0x0004) [bool : 0x8]
|
|
1249
|
+
bUnloadingMap: 0x0a54n, // 0x0a54 (0x0004) [bool : 0x10]
|
|
1250
|
+
bShouldCommitPendingMapChange: 0x0a54n, // 0x0a54 (0x0004) [bool : 0x20]
|
|
1251
|
+
bClearAnimSetLinkupCachesOnLoadMap: 0x0a54n, // 0x0a54 (0x0004) [bool : 0x40]
|
|
1252
|
+
bEnableSecondaryDisplay: 0x0a54n, // 0x0a54 (0x0004) [bool : 0x80]
|
|
1253
|
+
bEnableSecondaryViewport: 0x0a54n, // 0x0a54 (0x0004) [bool : 0x100]
|
|
1254
|
+
OnlineSubsystem: 0x0a58n, // 0x0a58 (0x0008) [UOnlineSubsystem*]
|
|
1255
|
+
DLCEnumerator: 0x0a60n, // 0x0a60 (0x0008) [UDownloadableContentEnumerator*]
|
|
1256
|
+
DownloadableContentEnumeratorClassName: 0x0a68n, // 0x0a68 (0x0010) [FString]
|
|
1257
|
+
DLCManager: 0x0a78n, // 0x0a78 (0x0008) [UDownloadableContentManager*]
|
|
1258
|
+
DownloadableContentManagerClassName: 0x0a80n, // 0x0a80 (0x0010) [FString]
|
|
1259
|
+
LevelsToLoadForPendingMapChange: 0x0a90n, // 0x0a90 (0x0010) [TArray<FName>]
|
|
1260
|
+
LoadedLevelsForPendingMapChange: 0x0aa0n, // 0x0aa0 (0x0010) [TArray<ULevel*>]
|
|
1261
|
+
PendingMapChangeFailureDescription: 0x0ab0n, // 0x0ab0 (0x0010) [FString]
|
|
1262
|
+
MaxDeltaTime: 0x0ac0n, // 0x0ac0 (0x0004) [float]
|
|
1263
|
+
SecondaryViewportClientClassName: 0x0ac8n, // 0x0ac8 (0x0010) [FString]
|
|
1264
|
+
SecondaryViewportClients: 0x0ad8n, // 0x0ad8 (0x0010) [TArray<UScriptViewportClient*>]
|
|
1265
|
+
SecondaryViewportFrames: 0x0ae8n, // 0x0ae8 (0x0010) [TArray<FPointer>]
|
|
1266
|
+
PendingLevelStreamingStatusUpdates: 0x0af8n, // 0x0af8 (0x0010) [TArray<FLevelStreamingStatus>]
|
|
1267
|
+
ObjectReferencers: 0x0b08n, // 0x0b08 (0x0010) [TArray<UObjectReferencer*>]
|
|
1268
|
+
PackagesToFullyLoad: 0x0b18n, // 0x0b18 (0x0010) [TArray<FFullyLoadedPackagesInfo>]
|
|
1269
|
+
NamedNetDrivers: 0x0b28n, // 0x0b28 (0x0010) [TArray<FNamedNetDriver>]
|
|
1270
|
+
AnimTags: 0x0b38n, // 0x0b38 (0x0010) [TArray<FAnimTag>]
|
|
1271
|
+
__EventTravelMapNotFound__Delegate: 0x0b48n, // 0x0b48 (0x0018) [FScriptDelegate]
|
|
1272
|
+
...Engine,
|
|
1273
|
+
} as const;
|
|
1274
|
+
|
|
1275
|
+
/**
|
|
1276
|
+
* OnlineSubsystemSteamworks.SteamWorkshopEngine Offsets
|
|
1277
|
+
* Size: 0x0b64
|
|
1278
|
+
* Extends: GameEngine
|
|
1279
|
+
*/
|
|
1280
|
+
export const SteamWorkshopEngine = {
|
|
1281
|
+
bHasFinsihed: 0x0b60n, // 0x0b60 (0x0004) [bool : 0x1]
|
|
1282
|
+
...GameEngine,
|
|
1283
|
+
} as const;
|