@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
package/offsets/Core.ts
ADDED
|
@@ -0,0 +1,1765 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Core 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
|
+
* FNameEntry Offsets
|
|
11
|
+
* Size: 0x0020 (header only, Name is variable length)
|
|
12
|
+
*/
|
|
13
|
+
export const FNameEntry = {
|
|
14
|
+
HashNext: 0x0000n, // 0x0000 (0x0008) [FPointer]
|
|
15
|
+
Index: 0x0008n, // 0x0008 (0x0008) [uint64]
|
|
16
|
+
Flags: 0x0010n, // 0x0010 (0x0008) [uint64]
|
|
17
|
+
Name: 0x0018n, // 0x0018 (variable) [wchar_t*] null-terminated, max ~1024 chars
|
|
18
|
+
} as const;
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* TArray Offsets
|
|
22
|
+
* Size: 0x0010
|
|
23
|
+
*/
|
|
24
|
+
export const TArray = {
|
|
25
|
+
Data: 0x0000n, // 0x0000 (0x0008) [void*]
|
|
26
|
+
Count: 0x0008n, // 0x0008 (0x0004) [int32]
|
|
27
|
+
Max: 0x000cn, // 0x000c (0x0004) [int32]
|
|
28
|
+
} as const;
|
|
29
|
+
|
|
30
|
+
export const TArraySize = 0x10n;
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Core.Object Offsets
|
|
34
|
+
* Size: 0x0060
|
|
35
|
+
*/
|
|
36
|
+
export const Object_ = {
|
|
37
|
+
VfTableObject: 0x0000n, // 0x0000 (0x0008) [FPointer]
|
|
38
|
+
HashNext: 0x0008n, // 0x0008 (0x0008) [FPointer]
|
|
39
|
+
ObjectFlags: 0x0010n, // 0x0010 (0x0008) [uint64]
|
|
40
|
+
HashOuterNext: 0x0018n, // 0x0018 (0x0008) [FPointer]
|
|
41
|
+
StateFrame: 0x0020n, // 0x0020 (0x0008) [FPointer]
|
|
42
|
+
Linker: 0x0028n, // 0x0028 (0x0008) [UObject*]
|
|
43
|
+
LinkerIndex: 0x0030n, // 0x0030 (0x0008) [FPointer]
|
|
44
|
+
ObjectInternalInteger: 0x0038n, // 0x0038 (0x0004) [int32]
|
|
45
|
+
NetIndex: 0x003cn, // 0x003c (0x0004) [int32]
|
|
46
|
+
Outer: 0x0040n, // 0x0040 (0x0008) [UObject*]
|
|
47
|
+
Name: 0x0048n, // 0x0048 (0x0008) [FName]
|
|
48
|
+
Class: 0x0050n, // 0x0050 (0x0008) [UObject*]
|
|
49
|
+
ObjectArchetype: 0x0058n, // 0x0058 (0x0008) [UObject*]
|
|
50
|
+
} as const;
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* Core.__AsyncTask__All_0x1 Offsets
|
|
54
|
+
* Size: 0x0070
|
|
55
|
+
* Extends: Object_
|
|
56
|
+
*/
|
|
57
|
+
export const __AsyncTask__All_0x1 = {
|
|
58
|
+
DependentsCount: 0x0060n, // 0x0060 (0x0004) [int32]
|
|
59
|
+
Parent: 0x0068n, // 0x0068 (0x0008) [UAsyncTask*]
|
|
60
|
+
...Object_,
|
|
61
|
+
} as const;
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Core._LoggingDoc Offsets
|
|
65
|
+
* Size: 0x0060
|
|
66
|
+
* Extends: Object_
|
|
67
|
+
*/
|
|
68
|
+
export const _LoggingDoc = {
|
|
69
|
+
...Object_,
|
|
70
|
+
} as const;
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* Core._Types_Core Offsets
|
|
74
|
+
* Size: 0x0060
|
|
75
|
+
* Extends: Object_
|
|
76
|
+
*/
|
|
77
|
+
export const _Types_Core = {
|
|
78
|
+
...Object_,
|
|
79
|
+
} as const;
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* Core._Types_Generated Offsets
|
|
83
|
+
* Size: 0x0060
|
|
84
|
+
* Extends: Object_
|
|
85
|
+
*/
|
|
86
|
+
export const _Types_Generated = {
|
|
87
|
+
...Object_,
|
|
88
|
+
} as const;
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Core.ErrorList Offsets
|
|
92
|
+
* Size: 0x0080
|
|
93
|
+
* Extends: Object_
|
|
94
|
+
*/
|
|
95
|
+
export const ErrorList = {
|
|
96
|
+
LocalizationPackage: 0x0060n, // 0x0060 (0x0010) [FString]
|
|
97
|
+
LocalizationSection: 0x0070n, // 0x0070 (0x0010) [FString]
|
|
98
|
+
...Object_,
|
|
99
|
+
} as const;
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* Core.ArrayErrors Offsets
|
|
103
|
+
* Size: 0x0090
|
|
104
|
+
* Extends: ErrorList
|
|
105
|
+
*/
|
|
106
|
+
export const ArrayErrors = {
|
|
107
|
+
Remove_NegativeNumberOfElements: 0x0080n, // 0x0080 (0x0008) [UErrorType*]
|
|
108
|
+
Remove_OutOfBounds: 0x0088n, // 0x0088 (0x0008) [UErrorType*]
|
|
109
|
+
...ErrorList,
|
|
110
|
+
} as const;
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* Core.ArrayFuncs Offsets
|
|
114
|
+
* Size: 0x0060
|
|
115
|
+
* Extends: Object_
|
|
116
|
+
*/
|
|
117
|
+
export const ArrayFuncs = {
|
|
118
|
+
...Object_,
|
|
119
|
+
} as const;
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* Core.Field Offsets
|
|
123
|
+
* Size: 0x0070
|
|
124
|
+
* Extends: Object_
|
|
125
|
+
*/
|
|
126
|
+
export const Field = {
|
|
127
|
+
...Object_,
|
|
128
|
+
} as const;
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* Core.Property Offsets
|
|
132
|
+
* Size: 0x00c8
|
|
133
|
+
* Extends: Field
|
|
134
|
+
*/
|
|
135
|
+
export const Property = {
|
|
136
|
+
...Field,
|
|
137
|
+
} as const;
|
|
138
|
+
|
|
139
|
+
/**
|
|
140
|
+
* Core.ArrayProperty Offsets
|
|
141
|
+
* Size: 0x00d0
|
|
142
|
+
* Extends: Property
|
|
143
|
+
*/
|
|
144
|
+
export const ArrayProperty = {
|
|
145
|
+
...Property,
|
|
146
|
+
} as const;
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* Core.AsyncTask Offsets
|
|
150
|
+
* Size: 0x00d0
|
|
151
|
+
* Extends: Object_
|
|
152
|
+
*/
|
|
153
|
+
export const AsyncTask = {
|
|
154
|
+
bComplete: 0x0060n, // 0x0060 (0x0004) [bool : 0x1]
|
|
155
|
+
bDisposed: 0x0060n, // 0x0060 (0x0004) [bool : 0x2]
|
|
156
|
+
Error: 0x0068n, // 0x0068 (0x0008) [UError*]
|
|
157
|
+
__EventAsyncTaskSuccess__Delegate: 0x0070n, // 0x0070 (0x0018) [FScriptDelegate]
|
|
158
|
+
__EventAsyncTaskFail__Delegate: 0x0088n, // 0x0088 (0x0018) [FScriptDelegate]
|
|
159
|
+
__EventAsyncTaskComplete__Delegate: 0x00a0n, // 0x00a0 (0x0018) [FScriptDelegate]
|
|
160
|
+
__EventDisposed__Delegate: 0x00b8n, // 0x00b8 (0x0018) [FScriptDelegate]
|
|
161
|
+
...Object_,
|
|
162
|
+
} as const;
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* Core.AsyncResult Offsets
|
|
166
|
+
* Size: 0x00d0
|
|
167
|
+
* Extends: AsyncTask
|
|
168
|
+
*/
|
|
169
|
+
export const AsyncResult = {
|
|
170
|
+
...AsyncTask,
|
|
171
|
+
} as const;
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* Core.AutomationTest Offsets
|
|
175
|
+
* Size: 0x00a0
|
|
176
|
+
* Extends: Object_
|
|
177
|
+
*/
|
|
178
|
+
export const AutomationTest = {
|
|
179
|
+
MaterialsCompiled: 0x0060n, // 0x0060 (0x0010) [TArray<FString>]
|
|
180
|
+
MaterialsFailedCompile: 0x0070n, // 0x0070 (0x0010) [TArray<FString>]
|
|
181
|
+
AsyncPreloadPackagesMissing: 0x0080n, // 0x0080 (0x0010) [TArray<FString>]
|
|
182
|
+
ScriptWarnings: 0x0090n, // 0x0090 (0x0010) [TArray<FScriptWarning>]
|
|
183
|
+
...Object_,
|
|
184
|
+
} as const;
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* Core.Base64 Offsets
|
|
188
|
+
* Size: 0x0060
|
|
189
|
+
* Extends: Object_
|
|
190
|
+
*/
|
|
191
|
+
export const Base64 = {
|
|
192
|
+
...Object_,
|
|
193
|
+
} as const;
|
|
194
|
+
|
|
195
|
+
/**
|
|
196
|
+
* Core.BoolProperty Offsets
|
|
197
|
+
* Size: 0x00d0
|
|
198
|
+
* Extends: Property
|
|
199
|
+
*/
|
|
200
|
+
export const BoolProperty = {
|
|
201
|
+
...Property,
|
|
202
|
+
} as const;
|
|
203
|
+
|
|
204
|
+
/**
|
|
205
|
+
* Core.Breadcrumbs Offsets
|
|
206
|
+
* Size: 0x0068
|
|
207
|
+
* Extends: Object_
|
|
208
|
+
*/
|
|
209
|
+
export const Breadcrumbs = {
|
|
210
|
+
BreadcrumbInstance: 0x0060n, // 0x0060 (0x0008) [FPointer]
|
|
211
|
+
...Object_,
|
|
212
|
+
} as const;
|
|
213
|
+
|
|
214
|
+
/**
|
|
215
|
+
* Core.ByteProperty Offsets
|
|
216
|
+
* Size: 0x00d0
|
|
217
|
+
* Extends: Property
|
|
218
|
+
*/
|
|
219
|
+
export const ByteProperty = {
|
|
220
|
+
...Property,
|
|
221
|
+
} as const;
|
|
222
|
+
|
|
223
|
+
/**
|
|
224
|
+
* Core.Struct Offsets
|
|
225
|
+
* Size: 0x0130
|
|
226
|
+
* Extends: Field
|
|
227
|
+
*/
|
|
228
|
+
export const Struct = {
|
|
229
|
+
...Field,
|
|
230
|
+
} as const;
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* Core.State Offsets
|
|
234
|
+
* Size: 0x0190
|
|
235
|
+
* Extends: Struct
|
|
236
|
+
*/
|
|
237
|
+
export const State = {
|
|
238
|
+
...Struct,
|
|
239
|
+
} as const;
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* Core.Class Offsets
|
|
243
|
+
* Size: 0x03b8
|
|
244
|
+
* Extends: State
|
|
245
|
+
*/
|
|
246
|
+
export const Class = {
|
|
247
|
+
...State,
|
|
248
|
+
} as const;
|
|
249
|
+
|
|
250
|
+
/**
|
|
251
|
+
* Core.ObjectProperty Offsets
|
|
252
|
+
* Size: 0x00d8
|
|
253
|
+
* Extends: Property
|
|
254
|
+
*/
|
|
255
|
+
export const ObjectProperty = {
|
|
256
|
+
...Property,
|
|
257
|
+
} as const;
|
|
258
|
+
|
|
259
|
+
/**
|
|
260
|
+
* Core.ClassProperty Offsets
|
|
261
|
+
* Size: 0x00e0
|
|
262
|
+
* Extends: ObjectProperty
|
|
263
|
+
*/
|
|
264
|
+
export const ClassProperty = {
|
|
265
|
+
...ObjectProperty,
|
|
266
|
+
} as const;
|
|
267
|
+
|
|
268
|
+
/**
|
|
269
|
+
* Core.ClassTuple_ORS Offsets
|
|
270
|
+
* Size: 0x00c8
|
|
271
|
+
* Extends: Object_
|
|
272
|
+
*/
|
|
273
|
+
export const ClassTuple_ORS = {
|
|
274
|
+
...Object_,
|
|
275
|
+
} as const;
|
|
276
|
+
|
|
277
|
+
/**
|
|
278
|
+
* Core.ClassTupleCollection_ORS Offsets
|
|
279
|
+
* Size: 0x00c0
|
|
280
|
+
* Extends: Object_
|
|
281
|
+
*/
|
|
282
|
+
export const ClassTupleCollection_ORS = {
|
|
283
|
+
...Object_,
|
|
284
|
+
} as const;
|
|
285
|
+
|
|
286
|
+
/**
|
|
287
|
+
* Core.Commandlet Offsets
|
|
288
|
+
* Size: 0x00b4
|
|
289
|
+
* Extends: Object_
|
|
290
|
+
*/
|
|
291
|
+
export const Commandlet = {
|
|
292
|
+
HelpDescription: 0x0060n, // 0x0060 (0x0010) [FString]
|
|
293
|
+
HelpUsage: 0x0070n, // 0x0070 (0x0010) [FString]
|
|
294
|
+
HelpWebLink: 0x0080n, // 0x0080 (0x0010) [FString]
|
|
295
|
+
HelpParamNames: 0x0090n, // 0x0090 (0x0010) [TArray<FString>]
|
|
296
|
+
HelpParamDescriptions: 0x00a0n, // 0x00a0 (0x0010) [TArray<FString>]
|
|
297
|
+
IsServer: 0x00b0n, // 0x00b0 (0x0004) [bool : 0x1]
|
|
298
|
+
IsClient: 0x00b0n, // 0x00b0 (0x0004) [bool : 0x2]
|
|
299
|
+
IsEditor: 0x00b0n, // 0x00b0 (0x0004) [bool : 0x4]
|
|
300
|
+
LogToConsole: 0x00b0n, // 0x00b0 (0x0004) [bool : 0x8]
|
|
301
|
+
ShowErrorCount: 0x00b0n, // 0x00b0 (0x0004) [bool : 0x10]
|
|
302
|
+
...Object_,
|
|
303
|
+
} as const;
|
|
304
|
+
|
|
305
|
+
/**
|
|
306
|
+
* Core.Component Offsets
|
|
307
|
+
* Size: 0x0070
|
|
308
|
+
* Extends: Object_
|
|
309
|
+
*/
|
|
310
|
+
export const Component = {
|
|
311
|
+
TemplateOwnerClass: 0x0060n, // 0x0060 (0x0008) [UObject*]
|
|
312
|
+
TemplateName: 0x0068n, // 0x0068 (0x0008) [FName]
|
|
313
|
+
...Object_,
|
|
314
|
+
} as const;
|
|
315
|
+
|
|
316
|
+
/**
|
|
317
|
+
* Core.ComponentProperty Offsets
|
|
318
|
+
* Size: 0x00d8
|
|
319
|
+
* Extends: ObjectProperty
|
|
320
|
+
*/
|
|
321
|
+
export const ComponentProperty = {
|
|
322
|
+
...ObjectProperty,
|
|
323
|
+
} as const;
|
|
324
|
+
|
|
325
|
+
/**
|
|
326
|
+
* Core.Compression Offsets
|
|
327
|
+
* Size: 0x0060
|
|
328
|
+
* Extends: Object_
|
|
329
|
+
*/
|
|
330
|
+
export const Compression = {
|
|
331
|
+
...Object_,
|
|
332
|
+
} as const;
|
|
333
|
+
|
|
334
|
+
/**
|
|
335
|
+
* Core.Config_ORS Offsets
|
|
336
|
+
* Size: 0x00c0
|
|
337
|
+
* Extends: Object_
|
|
338
|
+
*/
|
|
339
|
+
export const Config_ORS = {
|
|
340
|
+
...Object_,
|
|
341
|
+
} as const;
|
|
342
|
+
|
|
343
|
+
/**
|
|
344
|
+
* Core.Const Offsets
|
|
345
|
+
* Size: 0x0080
|
|
346
|
+
* Extends: Field
|
|
347
|
+
*/
|
|
348
|
+
export const Const = {
|
|
349
|
+
...Field,
|
|
350
|
+
} as const;
|
|
351
|
+
|
|
352
|
+
/**
|
|
353
|
+
* Core.DebugDrawer Offsets
|
|
354
|
+
* Size: 0x00c0
|
|
355
|
+
* Extends: Object_
|
|
356
|
+
*/
|
|
357
|
+
export const DebugDrawer = {
|
|
358
|
+
DefaultTextColor: 0x0060n, // 0x0060 (0x0004) [FColor]
|
|
359
|
+
bSilent: 0x0064n, // 0x0064 (0x0004) [bool : 0x1]
|
|
360
|
+
bPrintActorsInline: 0x0064n, // 0x0064 (0x0004) [bool : 0x2]
|
|
361
|
+
Indentation: 0x0068n, // 0x0068 (0x0004) [int32]
|
|
362
|
+
IndentationString: 0x0070n, // 0x0070 (0x0010) [FString]
|
|
363
|
+
PrintedObjects: 0x0080n, // 0x0080 (0x0010) [TArray<UObject*>]
|
|
364
|
+
QueuedObjects: 0x0090n, // 0x0090 (0x0010) [TArray<UObject*>]
|
|
365
|
+
PrintObjectCount: 0x00a0n, // 0x00a0 (0x0004) [int32]
|
|
366
|
+
__LogFunc__Delegate: 0x00a8n, // 0x00a8 (0x0018) [FScriptDelegate]
|
|
367
|
+
...Object_,
|
|
368
|
+
} as const;
|
|
369
|
+
|
|
370
|
+
/**
|
|
371
|
+
* Core.DelegateProperty Offsets
|
|
372
|
+
* Size: 0x00d8
|
|
373
|
+
* Extends: Property
|
|
374
|
+
*/
|
|
375
|
+
export const DelegateProperty = {
|
|
376
|
+
...Property,
|
|
377
|
+
} as const;
|
|
378
|
+
|
|
379
|
+
/**
|
|
380
|
+
* Core.DelegateTracker Offsets
|
|
381
|
+
* Size: 0x0088
|
|
382
|
+
* Extends: Object_
|
|
383
|
+
*/
|
|
384
|
+
export const DelegateTracker = {
|
|
385
|
+
AsyncDelegates: 0x0060n, // 0x0060 (0x0010) [TArray<FAsyncDelegateInfo>]
|
|
386
|
+
__PlaceholderDelegate__Delegate: 0x0070n, // 0x0070 (0x0018) [FScriptDelegate]
|
|
387
|
+
...Object_,
|
|
388
|
+
} as const;
|
|
389
|
+
|
|
390
|
+
/**
|
|
391
|
+
* Core.DistributionFloat Offsets
|
|
392
|
+
* Size: 0x007c
|
|
393
|
+
* Extends: Component
|
|
394
|
+
*/
|
|
395
|
+
export const DistributionFloat = {
|
|
396
|
+
VfTable_FCurveEdInterface: 0x0070n, // 0x0070 (0x0008) [FPointer]
|
|
397
|
+
bCanBeBaked: 0x0078n, // 0x0078 (0x0004) [bool : 0x1]
|
|
398
|
+
bIsDirty: 0x0078n, // 0x0078 (0x0004) [bool : 0x2]
|
|
399
|
+
...Component,
|
|
400
|
+
} as const;
|
|
401
|
+
|
|
402
|
+
/**
|
|
403
|
+
* Core.DistributionVector Offsets
|
|
404
|
+
* Size: 0x007c
|
|
405
|
+
* Extends: Component
|
|
406
|
+
*/
|
|
407
|
+
export const DistributionVector = {
|
|
408
|
+
VfTable_FCurveEdInterface: 0x0070n, // 0x0070 (0x0008) [FPointer]
|
|
409
|
+
bCanBeBaked: 0x0078n, // 0x0078 (0x0004) [bool : 0x1]
|
|
410
|
+
bIsDirty: 0x0078n, // 0x0078 (0x0004) [bool : 0x2]
|
|
411
|
+
...Component,
|
|
412
|
+
} as const;
|
|
413
|
+
|
|
414
|
+
/**
|
|
415
|
+
* Core.Enum Offsets
|
|
416
|
+
* Size: 0x0080
|
|
417
|
+
* Extends: Field
|
|
418
|
+
*/
|
|
419
|
+
export const Enum = {
|
|
420
|
+
...Field,
|
|
421
|
+
} as const;
|
|
422
|
+
|
|
423
|
+
/**
|
|
424
|
+
* Core.Error Offsets
|
|
425
|
+
* Size: 0x0084
|
|
426
|
+
* Extends: Object_
|
|
427
|
+
*/
|
|
428
|
+
export const Error_ = {
|
|
429
|
+
Type: 0x0060n, // 0x0060 (0x0008) [UErrorType*]
|
|
430
|
+
Message: 0x0068n, // 0x0068 (0x0010) [FString]
|
|
431
|
+
Code: 0x0078n, // 0x0078 (0x0004) [int32]
|
|
432
|
+
RetryKey: 0x007cn, // 0x007c (0x0008) [FName]
|
|
433
|
+
...Object_,
|
|
434
|
+
} as const;
|
|
435
|
+
|
|
436
|
+
/**
|
|
437
|
+
* Core.ErrorType Offsets
|
|
438
|
+
* Size: 0x0070
|
|
439
|
+
* Extends: Object_
|
|
440
|
+
*/
|
|
441
|
+
export const ErrorType = {
|
|
442
|
+
LocalizationKey: 0x0060n, // 0x0060 (0x0010) [FString]
|
|
443
|
+
...Object_,
|
|
444
|
+
} as const;
|
|
445
|
+
|
|
446
|
+
/**
|
|
447
|
+
* Core.Exporter Offsets
|
|
448
|
+
* Size: 0x0098
|
|
449
|
+
* Extends: Object_
|
|
450
|
+
*/
|
|
451
|
+
export const Exporter = {
|
|
452
|
+
FormatExtension: 0x0068n, // 0x0068 (0x0010) [TArray<FString>]
|
|
453
|
+
FormatDescription: 0x0078n, // 0x0078 (0x0010) [TArray<FString>]
|
|
454
|
+
...Object_,
|
|
455
|
+
} as const;
|
|
456
|
+
|
|
457
|
+
/**
|
|
458
|
+
* Core.Factory Offsets
|
|
459
|
+
* Size: 0x00b8
|
|
460
|
+
* Extends: Object_
|
|
461
|
+
*/
|
|
462
|
+
export const Factory = {
|
|
463
|
+
Category: 0x0060n, // 0x0060 (0x0010) [FString]
|
|
464
|
+
SupportedClass: 0x0070n, // 0x0070 (0x0008) [UObject*]
|
|
465
|
+
ContextClass: 0x0078n, // 0x0078 (0x0008) [UObject*]
|
|
466
|
+
Description: 0x0080n, // 0x0080 (0x0010) [FString]
|
|
467
|
+
Formats: 0x0090n, // 0x0090 (0x0010) [TArray<FString>]
|
|
468
|
+
bCreateNew: 0x00a0n, // 0x00a0 (0x0004) [bool : 0x1]
|
|
469
|
+
bEditAfterNew: 0x00a0n, // 0x00a0 (0x0004) [bool : 0x2]
|
|
470
|
+
bEditorImport: 0x00a0n, // 0x00a0 (0x0004) [bool : 0x4]
|
|
471
|
+
bText: 0x00a0n, // 0x00a0 (0x0004) [bool : 0x8]
|
|
472
|
+
bAssetNameMatchesPackageName: 0x00a0n, // 0x00a0 (0x0004) [bool : 0x10]
|
|
473
|
+
AutoPriority: 0x00a4n, // 0x00a4 (0x0004) [int32]
|
|
474
|
+
ValidGameNames: 0x00a8n, // 0x00a8 (0x0010) [TArray<FString>]
|
|
475
|
+
...Object_,
|
|
476
|
+
} as const;
|
|
477
|
+
|
|
478
|
+
/**
|
|
479
|
+
* Core.Object.Array_Mirror Offsets
|
|
480
|
+
* Size: 0x0010
|
|
481
|
+
*/
|
|
482
|
+
export const FArray_Mirror = {
|
|
483
|
+
Data: 0x0000n, // 0x0000 (0x0008) [FPointer]
|
|
484
|
+
ArrayNum: 0x0008n, // 0x0008 (0x0004) [int32]
|
|
485
|
+
ArrayMax: 0x000cn, // 0x000c (0x0004) [int32]
|
|
486
|
+
} as const;
|
|
487
|
+
|
|
488
|
+
/**
|
|
489
|
+
* Core.DelegateTracker.AsyncDelegateInfo Offsets
|
|
490
|
+
* Size: 0x0020
|
|
491
|
+
*/
|
|
492
|
+
export const FAsyncDelegateInfo = {
|
|
493
|
+
CallbackId: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
494
|
+
AsyncDelegate: 0x0008n, // 0x0008 (0x0018) [FScriptDelegate]
|
|
495
|
+
} as const;
|
|
496
|
+
|
|
497
|
+
/**
|
|
498
|
+
* Core.Object.BitArray_Mirror Offsets
|
|
499
|
+
* Size: 0x0020
|
|
500
|
+
*/
|
|
501
|
+
export const FBitArray_Mirror = {
|
|
502
|
+
IndirectData: 0x0000n, // 0x0000 (0x0008) [FPointer]
|
|
503
|
+
InlineData: 0x0008n, // 0x0008 (0x0010) [int32]
|
|
504
|
+
NumBits: 0x0018n, // 0x0018 (0x0004) [int32]
|
|
505
|
+
MaxBits: 0x001cn, // 0x001c (0x0004) [int32]
|
|
506
|
+
} as const;
|
|
507
|
+
|
|
508
|
+
/**
|
|
509
|
+
* Core.Object.BoneAtom Offsets
|
|
510
|
+
* Size: 0x0020
|
|
511
|
+
*/
|
|
512
|
+
export const FBoneAtom = {
|
|
513
|
+
Rotation: 0x0000n, // 0x0000 (0x0010) [FQuat]
|
|
514
|
+
Translation: 0x0010n, // 0x0010 (0x000c) [FVector]
|
|
515
|
+
Scale: 0x001cn, // 0x001c (0x0004) [float]
|
|
516
|
+
} as const;
|
|
517
|
+
|
|
518
|
+
/**
|
|
519
|
+
* Core.Object.Box Offsets
|
|
520
|
+
* Size: 0x0019
|
|
521
|
+
*/
|
|
522
|
+
export const FBox = {
|
|
523
|
+
Min: 0x0000n, // 0x0000 (0x000c) [FVector]
|
|
524
|
+
Max: 0x000cn, // 0x000c (0x000c) [FVector]
|
|
525
|
+
IsValid: 0x0018n, // 0x0018 (0x0001) [uint8]
|
|
526
|
+
} as const;
|
|
527
|
+
|
|
528
|
+
/**
|
|
529
|
+
* Core.Object.BoxSphereBounds Offsets
|
|
530
|
+
* Size: 0x001c
|
|
531
|
+
*/
|
|
532
|
+
export const FBoxSphereBounds = {
|
|
533
|
+
Origin: 0x0000n, // 0x0000 (0x000c) [FVector]
|
|
534
|
+
BoxExtent: 0x000cn, // 0x000c (0x000c) [FVector]
|
|
535
|
+
SphereRadius: 0x0018n, // 0x0018 (0x0004) [float]
|
|
536
|
+
} as const;
|
|
537
|
+
|
|
538
|
+
/**
|
|
539
|
+
* Core.Breadcrumbs.BreadcrumbEntry Offsets
|
|
540
|
+
* Size: 0x0020
|
|
541
|
+
*/
|
|
542
|
+
export const FBreadcrumbEntry = {
|
|
543
|
+
Category: 0x0000n, // 0x0000 (0x0010) [FString]
|
|
544
|
+
Value: 0x0010n, // 0x0010 (0x0010) [FString]
|
|
545
|
+
} as const;
|
|
546
|
+
|
|
547
|
+
/**
|
|
548
|
+
* Core.Object.Color Offsets
|
|
549
|
+
* Size: 0x0004
|
|
550
|
+
*/
|
|
551
|
+
export const FColor = {
|
|
552
|
+
B: 0x0000n, // 0x0000 (0x0001) [uint8]
|
|
553
|
+
G: 0x0001n, // 0x0001 (0x0001) [uint8]
|
|
554
|
+
R: 0x0002n, // 0x0002 (0x0001) [uint8]
|
|
555
|
+
A: 0x0003n, // 0x0003 (0x0001) [uint8]
|
|
556
|
+
} as const;
|
|
557
|
+
|
|
558
|
+
/**
|
|
559
|
+
* Core.Object.Cylinder Offsets
|
|
560
|
+
* Size: 0x0008
|
|
561
|
+
*/
|
|
562
|
+
export const FCylinder = {
|
|
563
|
+
Radius: 0x0000n, // 0x0000 (0x0004) [float]
|
|
564
|
+
Height: 0x0004n, // 0x0004 (0x0004) [float]
|
|
565
|
+
} as const;
|
|
566
|
+
|
|
567
|
+
/**
|
|
568
|
+
* Core.Object.Double Offsets
|
|
569
|
+
* Size: 0x0008
|
|
570
|
+
*/
|
|
571
|
+
export const FDouble = {
|
|
572
|
+
A: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
573
|
+
B: 0x0004n, // 0x0004 (0x0004) [int32]
|
|
574
|
+
} as const;
|
|
575
|
+
|
|
576
|
+
/**
|
|
577
|
+
* Core.FeatureSystem Offsets
|
|
578
|
+
* Size: 0x0080
|
|
579
|
+
* Extends: Object_
|
|
580
|
+
*/
|
|
581
|
+
export const FeatureSystem = {
|
|
582
|
+
Prime: 0x0068n, // 0x0068 (0x0004) [bool : 0x2]
|
|
583
|
+
Matchmaking: 0x0068n, // 0x0068 (0x0004) [bool : 0x8]
|
|
584
|
+
PrivateMatch: 0x0068n, // 0x0068 (0x0004) [bool : 0x10]
|
|
585
|
+
SplitscreenMatch: 0x0068n, // 0x0068 (0x0004) [bool : 0x20]
|
|
586
|
+
SplitscreenJoin: 0x0068n, // 0x0068 (0x0004) [bool : 0x40]
|
|
587
|
+
SeasonMode: 0x0068n, // 0x0068 (0x0004) [bool : 0x80]
|
|
588
|
+
Tutorial: 0x0068n, // 0x0068 (0x0004) [bool : 0x100]
|
|
589
|
+
Garage: 0x0068n, // 0x0068 (0x0004) [bool : 0x200]
|
|
590
|
+
Options: 0x0068n, // 0x0068 (0x0004) [bool : 0x400]
|
|
591
|
+
ReplaySaves: 0x0068n, // 0x0068 (0x0004) [bool : 0x800]
|
|
592
|
+
MainMenu: 0x0068n, // 0x0068 (0x0004) [bool : 0x1000]
|
|
593
|
+
MidgameMenu: 0x0068n, // 0x0068 (0x0004) [bool : 0x2000]
|
|
594
|
+
Party: 0x0068n, // 0x0068 (0x0004) [bool : 0x4000]
|
|
595
|
+
PsyNetParty: 0x0068n, // 0x0068 (0x0004) [bool : 0x8000]
|
|
596
|
+
Achievements: 0x0068n, // 0x0068 (0x0004) [bool : 0x10000]
|
|
597
|
+
Stats: 0x0068n, // 0x0068 (0x0004) [bool : 0x20000]
|
|
598
|
+
Leaderboards: 0x0068n, // 0x0068 (0x0004) [bool : 0x40000]
|
|
599
|
+
XP: 0x0068n, // 0x0068 (0x0004) [bool : 0x80000]
|
|
600
|
+
Chat: 0x0068n, // 0x0068 (0x0004) [bool : 0x100000]
|
|
601
|
+
TrainingDifficulties: 0x0068n, // 0x0068 (0x0004) [bool : 0x200000]
|
|
602
|
+
Spectator: 0x0068n, // 0x0068 (0x0004) [bool : 0x400000]
|
|
603
|
+
CrossPlatformPrivateMatch: 0x0068n, // 0x0068 (0x0004) [bool : 0x800000]
|
|
604
|
+
Lan: 0x0068n, // 0x0068 (0x0004) [bool : 0x1000000]
|
|
605
|
+
PlayerReporting: 0x0068n, // 0x0068 (0x0004) [bool : 0x2000000]
|
|
606
|
+
OnlineServices: 0x0068n, // 0x0068 (0x0004) [bool : 0x40000000]
|
|
607
|
+
RemoveCrossPlatformProducts: 0x0068n, // 0x0068 (0x0004) [bool : 0x80000000]
|
|
608
|
+
ProductValidation: 0x006cn, // 0x006c (0x0004) [bool : 0x1]
|
|
609
|
+
MapPrefs: 0x006cn, // 0x006c (0x0004) [bool : 0x2]
|
|
610
|
+
PreMatchLobby: 0x006cn, // 0x006c (0x0004) [bool : 0x8]
|
|
611
|
+
Challenges: 0x006cn, // 0x006c (0x0004) [bool : 0x10]
|
|
612
|
+
AntiAddiction: 0x006cn, // 0x006c (0x0004) [bool : 0x20]
|
|
613
|
+
TrainingEditor: 0x006cn, // 0x006c (0x0004) [bool : 0x40]
|
|
614
|
+
VoiceChat: 0x006cn, // 0x006c (0x0004) [bool : 0x80]
|
|
615
|
+
SplitScreen: 0x006cn, // 0x006c (0x0004) [bool : 0x100]
|
|
616
|
+
Clubs: 0x006cn, // 0x006c (0x0004) [bool : 0x200]
|
|
617
|
+
FilterContent: 0x006cn, // 0x006c (0x0004) [bool : 0x400]
|
|
618
|
+
EncryptContent: 0x006cn, // 0x006c (0x0004) [bool : 0x800]
|
|
619
|
+
EsportsCamera: 0x006cn, // 0x006c (0x0004) [bool : 0x4000]
|
|
620
|
+
OnlineXP: 0x006cn, // 0x006c (0x0004) [bool : 0x8000]
|
|
621
|
+
ClanforgeReservation: 0x006cn, // 0x006c (0x0004) [bool : 0x20000]
|
|
622
|
+
UserSettingObserver: 0x006cn, // 0x006c (0x0004) [bool : 0x40000]
|
|
623
|
+
Metrics: 0x006cn, // 0x006c (0x0004) [bool : 0x80000]
|
|
624
|
+
EOSMetrics: 0x006cn, // 0x006c (0x0004) [bool : 0x100000]
|
|
625
|
+
MusicPlaylistSelection: 0x006cn, // 0x006c (0x0004) [bool : 0x200000]
|
|
626
|
+
SpecialEvents: 0x006cn, // 0x006c (0x0004) [bool : 0x400000]
|
|
627
|
+
PlayerBannerCustomization: 0x006cn, // 0x006c (0x0004) [bool : 0x800000]
|
|
628
|
+
SecureUDP: 0x006cn, // 0x006c (0x0004) [bool : 0x1000000]
|
|
629
|
+
PsyNet: 0x006cn, // 0x006c (0x0004) [bool : 0x2000000]
|
|
630
|
+
OnlinePlayerStorage: 0x006cn, // 0x006c (0x0004) [bool : 0x4000000]
|
|
631
|
+
LocalSaveData: 0x006cn, // 0x006c (0x0004) [bool : 0x8000000]
|
|
632
|
+
CrowdV2: 0x006cn, // 0x006c (0x0004) [bool : 0x10000000]
|
|
633
|
+
ChatBan: 0x006cn, // 0x006c (0x0004) [bool : 0x20000000]
|
|
634
|
+
BacktraceCrashDumps: 0x006cn, // 0x006c (0x0004) [bool : 0x40000000]
|
|
635
|
+
SpotifyButton: 0x006cn, // 0x006c (0x0004) [bool : 0x80000000]
|
|
636
|
+
SeasonRewards: 0x0070n, // 0x0070 (0x0004) [bool : 0x1]
|
|
637
|
+
FaceIt: 0x0070n, // 0x0070 (0x0004) [bool : 0x2]
|
|
638
|
+
KnockOut: 0x0070n, // 0x0070 (0x0004) [bool : 0x4]
|
|
639
|
+
OnlinePlayerTitles: 0x0070n, // 0x0070 (0x0004) [bool : 0x8]
|
|
640
|
+
RestrictByRegion: 0x0070n, // 0x0070 (0x0004) [bool : 0x10]
|
|
641
|
+
FirstTimeExperience: 0x0070n, // 0x0070 (0x0004) [bool : 0x40]
|
|
642
|
+
RLBot: 0x0070n, // 0x0070 (0x0004) [bool : 0x80]
|
|
643
|
+
UserBugReport: 0x0070n, // 0x0070 (0x0004) [bool : 0x100]
|
|
644
|
+
SteamInput: 0x0070n, // 0x0070 (0x0004) [bool : 0x200]
|
|
645
|
+
ReplayFXControls: 0x0070n, // 0x0070 (0x0004) [bool : 0x4000]
|
|
646
|
+
ESportsShop: 0x0070n, // 0x0070 (0x0004) [bool : 0x8000]
|
|
647
|
+
MatchHistory: 0x0070n, // 0x0070 (0x0004) [bool : 0x10000]
|
|
648
|
+
DynamicRangeAudioSettings: 0x0070n, // 0x0070 (0x0004) [bool : 0x80000]
|
|
649
|
+
QuickPlay: 0x0070n, // 0x0070 (0x0004) [bool : 0x100000]
|
|
650
|
+
NewsPanelV2: 0x0070n, // 0x0070 (0x0004) [bool : 0x200000]
|
|
651
|
+
Blueprints: 0x0070n, // 0x0070 (0x0004) [bool : 0x400000]
|
|
652
|
+
RocketBucks: 0x0070n, // 0x0070 (0x0004) [bool : 0x1000000]
|
|
653
|
+
Tritip: 0x0070n, // 0x0070 (0x0004) [bool : 0x4000000]
|
|
654
|
+
DiscordRichPresence: 0x0070n, // 0x0070 (0x0004) [bool : 0x10000000]
|
|
655
|
+
SupportACreator: 0x0070n, // 0x0070 (0x0004) [bool : 0x20000000]
|
|
656
|
+
CinematicIntro: 0x0070n, // 0x0070 (0x0004) [bool : 0x40000000]
|
|
657
|
+
TinyCrowd: 0x0070n, // 0x0070 (0x0004) [bool : 0x80000000]
|
|
658
|
+
CrumbTrail: 0x0074n, // 0x0074 (0x0004) [bool : 0x1]
|
|
659
|
+
XPGatedPlaylists: 0x0074n, // 0x0074 (0x0004) [bool : 0x4]
|
|
660
|
+
TradeInV2: 0x0074n, // 0x0074 (0x0004) [bool : 0x10]
|
|
661
|
+
Football: 0x0074n, // 0x0074 (0x0004) [bool : 0x20]
|
|
662
|
+
RumbleSelection: 0x0074n, // 0x0074 (0x0004) [bool : 0x40]
|
|
663
|
+
UndersizedParty: 0x0074n, // 0x0074 (0x0004) [bool : 0x80]
|
|
664
|
+
StreamerSafeAudio: 0x0074n, // 0x0074 (0x0004) [bool : 0x100]
|
|
665
|
+
FreeplayCommands: 0x0074n, // 0x0074 (0x0004) [bool : 0x200]
|
|
666
|
+
Rumble_BM: 0x0074n, // 0x0074 (0x0004) [bool : 0x400]
|
|
667
|
+
PlayerReportingV2: 0x0074n, // 0x0074 (0x0004) [bool : 0x800]
|
|
668
|
+
EOSVoice: 0x0074n, // 0x0074 (0x0004) [bool : 0x2000]
|
|
669
|
+
QuickPostMatchRequeue: 0x0074n, // 0x0074 (0x0004) [bool : 0x4000]
|
|
670
|
+
TrainingNavigation: 0x0074n, // 0x0074 (0x0004) [bool : 0x20000]
|
|
671
|
+
TrainingManipulation: 0x0074n, // 0x0074 (0x0004) [bool : 0x40000]
|
|
672
|
+
FilterByColor: 0x0074n, // 0x0074 (0x0004) [bool : 0x100000]
|
|
673
|
+
Scoreboard: 0x0074n, // 0x0074 (0x0004) [bool : 0x200000]
|
|
674
|
+
DynamicMapEvents: 0x0074n, // 0x0074 (0x0004) [bool : 0x400000]
|
|
675
|
+
NameplateBoost: 0x0074n, // 0x0074 (0x0004) [bool : 0x1000000]
|
|
676
|
+
EOSGameClips: 0x0074n, // 0x0074 (0x0004) [bool : 0x2000000]
|
|
677
|
+
DynamicLogos: 0x0074n, // 0x0074 (0x0004) [bool : 0x4000000]
|
|
678
|
+
XETagging: 0x0074n, // 0x0074 (0x0004) [bool : 0x8000000]
|
|
679
|
+
PlayMenuV4: 0x0074n, // 0x0074 (0x0004) [bool : 0x10000000]
|
|
680
|
+
DemoUpgrades: 0x0074n, // 0x0074 (0x0004) [bool : 0x20000000]
|
|
681
|
+
QuickChatTimeStamp: 0x0074n, // 0x0074 (0x0004) [bool : 0x40000000]
|
|
682
|
+
SoccarPong: 0x0074n, // 0x0074 (0x0004) [bool : 0x80000000]
|
|
683
|
+
OnlineFreeplay: 0x0078n, // 0x0078 (0x0004) [bool : 0x1]
|
|
684
|
+
MatchmakingSubRegion: 0x0078n, // 0x0078 (0x0004) [bool : 0x4]
|
|
685
|
+
CrossbarSFX: 0x0078n, // 0x0078 (0x0004) [bool : 0x8]
|
|
686
|
+
RugbyIteration: 0x0078n, // 0x0078 (0x0004) [bool : 0x10]
|
|
687
|
+
ChallengesV2: 0x0078n, // 0x0078 (0x0004) [bool : 0x40]
|
|
688
|
+
PossessionExpanded: 0x0078n, // 0x0078 (0x0004) [bool : 0x80]
|
|
689
|
+
TargetFind: 0x0078n, // 0x0078 (0x0004) [bool : 0x100]
|
|
690
|
+
KeepUp: 0x0078n, // 0x0078 (0x0004) [bool : 0x400]
|
|
691
|
+
RocketPassUpgrades: 0x0078n, // 0x0078 (0x0004) [bool : 0x1000]
|
|
692
|
+
PentathlonTournaments: 0x0078n, // 0x0078 (0x0004) [bool : 0x2000]
|
|
693
|
+
DemolishUpdates: 0x0078n, // 0x0078 (0x0004) [bool : 0x4000]
|
|
694
|
+
ViralItem: 0x0078n, // 0x0078 (0x0004) [bool : 0x8000]
|
|
695
|
+
ThankYouMessage: 0x0078n, // 0x0078 (0x0004) [bool : 0x10000]
|
|
696
|
+
AttackerDemoFX: 0x0078n, // 0x0078 (0x0004) [bool : 0x20000]
|
|
697
|
+
NewDriverChallengesV2: 0x0078n, // 0x0078 (0x0004) [bool : 0x40000]
|
|
698
|
+
TextModeration: 0x0078n, // 0x0078 (0x0004) [bool : 0x200000]
|
|
699
|
+
FilterToggle: 0x0078n, // 0x0078 (0x0004) [bool : 0x400000]
|
|
700
|
+
DdosPrevention: 0x0078n, // 0x0078 (0x0004) [bool : 0x800000]
|
|
701
|
+
OunceEnhancements: 0x0078n, // 0x0078 (0x0004) [bool : 0x1000000]
|
|
702
|
+
FastFreeplay: 0x0078n, // 0x0078 (0x0004) [bool : 0x2000000]
|
|
703
|
+
MatchAdminMutator: 0x0078n, // 0x0078 (0x0004) [bool : 0x4000000]
|
|
704
|
+
Thistle: 0x0078n, // 0x0078 (0x0004) [bool : 0x8000000]
|
|
705
|
+
DemoFXMutator: 0x0078n, // 0x0078 (0x0004) [bool : 0x10000000]
|
|
706
|
+
OffProdHandling: 0x0078n, // 0x0078 (0x0004) [bool : 0x20000000]
|
|
707
|
+
CustomTrainingSettings: 0x0078n, // 0x0078 (0x0004) [bool : 0x40000000]
|
|
708
|
+
FlipResetIndicator: 0x007cn, // 0x007c (0x0004) [bool : 0x1]
|
|
709
|
+
NewsOverhaul: 0x007cn, // 0x007c (0x0004) [bool : 0x2]
|
|
710
|
+
QueueMenuChanges: 0x007cn, // 0x007c (0x0004) [bool : 0x4]
|
|
711
|
+
VisibleMMR: 0x007cn, // 0x007c (0x0004) [bool : 0x8]
|
|
712
|
+
OverrideBoostSound: 0x007cn, // 0x007c (0x0004) [bool : 0x20]
|
|
713
|
+
SettingsExport: 0x007cn, // 0x007c (0x0004) [bool : 0x40]
|
|
714
|
+
...Object_,
|
|
715
|
+
} as const;
|
|
716
|
+
|
|
717
|
+
/**
|
|
718
|
+
* Core._Types_Core.EncryptedKeyIndex Offsets
|
|
719
|
+
* Size: 0x0004
|
|
720
|
+
*/
|
|
721
|
+
export const FEncryptedKeyIndex = {
|
|
722
|
+
Index: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
723
|
+
} as const;
|
|
724
|
+
|
|
725
|
+
/**
|
|
726
|
+
* Core.Object.FColorVertexBuffer_Mirror Offsets
|
|
727
|
+
* Size: 0x001c
|
|
728
|
+
*/
|
|
729
|
+
export const FFColorVertexBuffer_Mirror = {
|
|
730
|
+
VfTable: 0x0000n, // 0x0000 (0x0008) [FPointer]
|
|
731
|
+
VertexData: 0x0008n, // 0x0008 (0x0008) [FPointer]
|
|
732
|
+
Data: 0x0010n, // 0x0010 (0x0004) [int32]
|
|
733
|
+
Stride: 0x0014n, // 0x0014 (0x0004) [int32]
|
|
734
|
+
NumVertices: 0x0018n, // 0x0018 (0x0004) [int32]
|
|
735
|
+
} as const;
|
|
736
|
+
|
|
737
|
+
/**
|
|
738
|
+
* Core.Object.Guid Offsets
|
|
739
|
+
* Size: 0x0010
|
|
740
|
+
*/
|
|
741
|
+
export const FGuid = {
|
|
742
|
+
A: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
743
|
+
B: 0x0004n, // 0x0004 (0x0004) [int32]
|
|
744
|
+
C: 0x0008n, // 0x0008 (0x0004) [int32]
|
|
745
|
+
D: 0x000cn, // 0x000c (0x0004) [int32]
|
|
746
|
+
} as const;
|
|
747
|
+
|
|
748
|
+
/**
|
|
749
|
+
* Core.Object.HatPointer Offsets
|
|
750
|
+
* Size: 0x0008
|
|
751
|
+
*/
|
|
752
|
+
export const FHatPointer = {
|
|
753
|
+
Dummy: 0x0000n, // 0x0000 (0x0008) [uint64]
|
|
754
|
+
} as const;
|
|
755
|
+
|
|
756
|
+
/**
|
|
757
|
+
* Core.FileSystem Offsets
|
|
758
|
+
* Size: 0x0060
|
|
759
|
+
* Extends: Object_
|
|
760
|
+
*/
|
|
761
|
+
export const FileSystem = {
|
|
762
|
+
...Object_,
|
|
763
|
+
} as const;
|
|
764
|
+
|
|
765
|
+
/**
|
|
766
|
+
* Core.Object.IndirectArray_Mirror Offsets
|
|
767
|
+
* Size: 0x0010
|
|
768
|
+
*/
|
|
769
|
+
export const FIndirectArray_Mirror = {
|
|
770
|
+
Data: 0x0000n, // 0x0000 (0x0008) [FPointer]
|
|
771
|
+
ArrayNum: 0x0008n, // 0x0008 (0x0004) [int32]
|
|
772
|
+
ArrayMax: 0x000cn, // 0x000c (0x0004) [int32]
|
|
773
|
+
} as const;
|
|
774
|
+
|
|
775
|
+
/**
|
|
776
|
+
* Core.Object.InlinePointerArray_Mirror Offsets
|
|
777
|
+
* Size: 0x0018
|
|
778
|
+
*/
|
|
779
|
+
export const FInlinePointerArray_Mirror = {
|
|
780
|
+
InlineData: 0x0000n, // 0x0000 (0x0008) [FPointer]
|
|
781
|
+
SecondaryData: 0x0008n, // 0x0008 (0x0010) [FArray_Mirror]
|
|
782
|
+
} as const;
|
|
783
|
+
|
|
784
|
+
/**
|
|
785
|
+
* Core.ObjectProvider.InterfacePropertyInjection Offsets
|
|
786
|
+
* Size: 0x0010
|
|
787
|
+
*/
|
|
788
|
+
export const FInterfacePropertyInjection = {
|
|
789
|
+
Subscriber: 0x0000n, // 0x0000 (0x0008) [UObject*]
|
|
790
|
+
Property: 0x0008n, // 0x0008 (0x0008) [UInterfaceProperty*]
|
|
791
|
+
} as const;
|
|
792
|
+
|
|
793
|
+
/**
|
|
794
|
+
* Core.Object.InterpCurveFloat Offsets
|
|
795
|
+
* Size: 0x0011
|
|
796
|
+
*/
|
|
797
|
+
export const FInterpCurveFloat = {
|
|
798
|
+
Points: 0x0000n, // 0x0000 (0x0010) [TArray<FInterpCurvePointFloat>]
|
|
799
|
+
InterpMethod: 0x0010n, // 0x0010 (0x0001) [EInterpMethodType]
|
|
800
|
+
} as const;
|
|
801
|
+
|
|
802
|
+
/**
|
|
803
|
+
* Core.Object.InterpCurveLinearColor Offsets
|
|
804
|
+
* Size: 0x0011
|
|
805
|
+
*/
|
|
806
|
+
export const FInterpCurveLinearColor = {
|
|
807
|
+
Points: 0x0000n, // 0x0000 (0x0010) [TArray<FInterpCurvePointLinearColor>]
|
|
808
|
+
InterpMethod: 0x0010n, // 0x0010 (0x0001) [EInterpMethodType]
|
|
809
|
+
} as const;
|
|
810
|
+
|
|
811
|
+
/**
|
|
812
|
+
* Core.Object.InterpCurvePointFloat Offsets
|
|
813
|
+
* Size: 0x0019
|
|
814
|
+
*/
|
|
815
|
+
export const FInterpCurvePointFloat = {
|
|
816
|
+
InVal: 0x0000n, // 0x0000 (0x0004) [float]
|
|
817
|
+
OutVal: 0x0004n, // 0x0004 (0x0004) [float]
|
|
818
|
+
ArriveTangent: 0x0008n, // 0x0008 (0x0004) [float]
|
|
819
|
+
LeaveTangent: 0x000cn, // 0x000c (0x0004) [float]
|
|
820
|
+
ArriveWeight: 0x0010n, // 0x0010 (0x0004) [float]
|
|
821
|
+
LeaveWeight: 0x0014n, // 0x0014 (0x0004) [float]
|
|
822
|
+
InterpMode: 0x0018n, // 0x0018 (0x0001) [EInterpCurveMode]
|
|
823
|
+
} as const;
|
|
824
|
+
|
|
825
|
+
/**
|
|
826
|
+
* Core.Object.InterpCurvePointLinearColor Offsets
|
|
827
|
+
* Size: 0x0055
|
|
828
|
+
*/
|
|
829
|
+
export const FInterpCurvePointLinearColor = {
|
|
830
|
+
InVal: 0x0000n, // 0x0000 (0x0004) [float]
|
|
831
|
+
OutVal: 0x0004n, // 0x0004 (0x0010) [FLinearColor]
|
|
832
|
+
ArriveTangent: 0x0014n, // 0x0014 (0x0010) [FLinearColor]
|
|
833
|
+
LeaveTangent: 0x0024n, // 0x0024 (0x0010) [FLinearColor]
|
|
834
|
+
ArriveWeight: 0x0034n, // 0x0034 (0x0010) [FLinearColor]
|
|
835
|
+
LeaveWeight: 0x0044n, // 0x0044 (0x0010) [FLinearColor]
|
|
836
|
+
InterpMode: 0x0054n, // 0x0054 (0x0001) [EInterpCurveMode]
|
|
837
|
+
} as const;
|
|
838
|
+
|
|
839
|
+
/**
|
|
840
|
+
* Core.Object.InterpCurvePointQuat Offsets
|
|
841
|
+
* Size: 0x0061
|
|
842
|
+
*/
|
|
843
|
+
export const FInterpCurvePointQuat = {
|
|
844
|
+
InVal: 0x0000n, // 0x0000 (0x0004) [float]
|
|
845
|
+
OutVal: 0x0010n, // 0x0010 (0x0010) [FQuat]
|
|
846
|
+
ArriveTangent: 0x0020n, // 0x0020 (0x0010) [FQuat]
|
|
847
|
+
LeaveTangent: 0x0030n, // 0x0030 (0x0010) [FQuat]
|
|
848
|
+
ArriveWeight: 0x0040n, // 0x0040 (0x0010) [FQuat]
|
|
849
|
+
LeaveWeight: 0x0050n, // 0x0050 (0x0010) [FQuat]
|
|
850
|
+
InterpMode: 0x0060n, // 0x0060 (0x0001) [EInterpCurveMode]
|
|
851
|
+
} as const;
|
|
852
|
+
|
|
853
|
+
/**
|
|
854
|
+
* Core.Object.InterpCurvePointTwoVectors Offsets
|
|
855
|
+
* Size: 0x007d
|
|
856
|
+
*/
|
|
857
|
+
export const FInterpCurvePointTwoVectors = {
|
|
858
|
+
InVal: 0x0000n, // 0x0000 (0x0004) [float]
|
|
859
|
+
OutVal: 0x0004n, // 0x0004 (0x0018) [FTwoVectors]
|
|
860
|
+
ArriveTangent: 0x001cn, // 0x001c (0x0018) [FTwoVectors]
|
|
861
|
+
LeaveTangent: 0x0034n, // 0x0034 (0x0018) [FTwoVectors]
|
|
862
|
+
ArriveWeight: 0x004cn, // 0x004c (0x0018) [FTwoVectors]
|
|
863
|
+
LeaveWeight: 0x0064n, // 0x0064 (0x0018) [FTwoVectors]
|
|
864
|
+
InterpMode: 0x007cn, // 0x007c (0x0001) [EInterpCurveMode]
|
|
865
|
+
} as const;
|
|
866
|
+
|
|
867
|
+
/**
|
|
868
|
+
* Core.Object.InterpCurvePointVector Offsets
|
|
869
|
+
* Size: 0x0041
|
|
870
|
+
*/
|
|
871
|
+
export const FInterpCurvePointVector = {
|
|
872
|
+
InVal: 0x0000n, // 0x0000 (0x0004) [float]
|
|
873
|
+
OutVal: 0x0004n, // 0x0004 (0x000c) [FVector]
|
|
874
|
+
ArriveTangent: 0x0010n, // 0x0010 (0x000c) [FVector]
|
|
875
|
+
LeaveTangent: 0x001cn, // 0x001c (0x000c) [FVector]
|
|
876
|
+
ArriveWeight: 0x0028n, // 0x0028 (0x000c) [FVector]
|
|
877
|
+
LeaveWeight: 0x0034n, // 0x0034 (0x000c) [FVector]
|
|
878
|
+
InterpMode: 0x0040n, // 0x0040 (0x0001) [EInterpCurveMode]
|
|
879
|
+
} as const;
|
|
880
|
+
|
|
881
|
+
/**
|
|
882
|
+
* Core.Object.InterpCurvePointVector2D Offsets
|
|
883
|
+
* Size: 0x002d
|
|
884
|
+
*/
|
|
885
|
+
export const FInterpCurvePointVector2D = {
|
|
886
|
+
InVal: 0x0000n, // 0x0000 (0x0004) [float]
|
|
887
|
+
OutVal: 0x0004n, // 0x0004 (0x0008) [FVector2D]
|
|
888
|
+
ArriveTangent: 0x000cn, // 0x000c (0x0008) [FVector2D]
|
|
889
|
+
LeaveTangent: 0x0014n, // 0x0014 (0x0008) [FVector2D]
|
|
890
|
+
ArriveWeight: 0x001cn, // 0x001c (0x0008) [FVector2D]
|
|
891
|
+
LeaveWeight: 0x0024n, // 0x0024 (0x0008) [FVector2D]
|
|
892
|
+
InterpMode: 0x002cn, // 0x002c (0x0001) [EInterpCurveMode]
|
|
893
|
+
} as const;
|
|
894
|
+
|
|
895
|
+
/**
|
|
896
|
+
* Core.Object.InterpCurveQuat Offsets
|
|
897
|
+
* Size: 0x0011
|
|
898
|
+
*/
|
|
899
|
+
export const FInterpCurveQuat = {
|
|
900
|
+
Points: 0x0000n, // 0x0000 (0x0010) [TArray<FInterpCurvePointQuat>]
|
|
901
|
+
InterpMethod: 0x0010n, // 0x0010 (0x0001) [EInterpMethodType]
|
|
902
|
+
} as const;
|
|
903
|
+
|
|
904
|
+
/**
|
|
905
|
+
* Core.Object.InterpCurveTwoVectors Offsets
|
|
906
|
+
* Size: 0x0011
|
|
907
|
+
*/
|
|
908
|
+
export const FInterpCurveTwoVectors = {
|
|
909
|
+
Points: 0x0000n, // 0x0000 (0x0010) [TArray<FInterpCurvePointTwoVectors>]
|
|
910
|
+
InterpMethod: 0x0010n, // 0x0010 (0x0001) [EInterpMethodType]
|
|
911
|
+
} as const;
|
|
912
|
+
|
|
913
|
+
/**
|
|
914
|
+
* Core.Object.InterpCurveVector Offsets
|
|
915
|
+
* Size: 0x0011
|
|
916
|
+
*/
|
|
917
|
+
export const FInterpCurveVector = {
|
|
918
|
+
Points: 0x0000n, // 0x0000 (0x0010) [TArray<FInterpCurvePointVector>]
|
|
919
|
+
InterpMethod: 0x0010n, // 0x0010 (0x0001) [EInterpMethodType]
|
|
920
|
+
} as const;
|
|
921
|
+
|
|
922
|
+
/**
|
|
923
|
+
* Core.Object.InterpCurveVector2D Offsets
|
|
924
|
+
* Size: 0x0011
|
|
925
|
+
*/
|
|
926
|
+
export const FInterpCurveVector2D = {
|
|
927
|
+
Points: 0x0000n, // 0x0000 (0x0010) [TArray<FInterpCurvePointVector2D>]
|
|
928
|
+
InterpMethod: 0x0010n, // 0x0010 (0x0001) [EInterpMethodType]
|
|
929
|
+
} as const;
|
|
930
|
+
|
|
931
|
+
/**
|
|
932
|
+
* Core.Object.IntPoint Offsets
|
|
933
|
+
* Size: 0x0008
|
|
934
|
+
*/
|
|
935
|
+
export const FIntPoint = {
|
|
936
|
+
X: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
937
|
+
Y: 0x0004n, // 0x0004 (0x0004) [int32]
|
|
938
|
+
} as const;
|
|
939
|
+
|
|
940
|
+
/**
|
|
941
|
+
* Core.Object.IpAddr Offsets
|
|
942
|
+
* Size: 0x0014
|
|
943
|
+
*/
|
|
944
|
+
export const FIpAddr = {
|
|
945
|
+
AddrA: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
946
|
+
AddrB: 0x0004n, // 0x0004 (0x0004) [int32]
|
|
947
|
+
AddrC: 0x0008n, // 0x0008 (0x0004) [int32]
|
|
948
|
+
AddrD: 0x000cn, // 0x000c (0x0004) [int32]
|
|
949
|
+
Port: 0x0010n, // 0x0010 (0x0004) [int32]
|
|
950
|
+
} as const;
|
|
951
|
+
|
|
952
|
+
/**
|
|
953
|
+
* Core.Object.LinearColor Offsets
|
|
954
|
+
* Size: 0x0010
|
|
955
|
+
*/
|
|
956
|
+
export const FLinearColor = {
|
|
957
|
+
R: 0x0000n, // 0x0000 (0x0004) [float]
|
|
958
|
+
G: 0x0004n, // 0x0004 (0x0004) [float]
|
|
959
|
+
B: 0x0008n, // 0x0008 (0x0004) [float]
|
|
960
|
+
A: 0x000cn, // 0x000c (0x0004) [float]
|
|
961
|
+
} as const;
|
|
962
|
+
|
|
963
|
+
/**
|
|
964
|
+
* Core.FloatProperty Offsets
|
|
965
|
+
* Size: 0x00c8
|
|
966
|
+
* Extends: Property
|
|
967
|
+
*/
|
|
968
|
+
export const FloatProperty = {
|
|
969
|
+
...Property,
|
|
970
|
+
} as const;
|
|
971
|
+
|
|
972
|
+
/**
|
|
973
|
+
* Core.Object.Map_Mirror Offsets
|
|
974
|
+
* Size: 0x0050
|
|
975
|
+
*/
|
|
976
|
+
export const FMap_Mirror = {
|
|
977
|
+
Pairs: 0x0000n, // 0x0000 (0x0050) [FSet_Mirror]
|
|
978
|
+
} as const;
|
|
979
|
+
|
|
980
|
+
/**
|
|
981
|
+
* Core.Object.RawDistribution Offsets
|
|
982
|
+
* Size: 0x0020
|
|
983
|
+
*/
|
|
984
|
+
export const FRawDistribution = {
|
|
985
|
+
Type: 0x0000n, // 0x0000 (0x0001) [uint8]
|
|
986
|
+
Op: 0x0001n, // 0x0001 (0x0001) [uint8]
|
|
987
|
+
LookupTableNumElements: 0x0002n, // 0x0002 (0x0001) [uint8]
|
|
988
|
+
LookupTableChunkSize: 0x0003n, // 0x0003 (0x0001) [uint8]
|
|
989
|
+
LookupTable: 0x0008n, // 0x0008 (0x0010) [TArray<float>]
|
|
990
|
+
LookupTableTimeScale: 0x0018n, // 0x0018 (0x0004) [float]
|
|
991
|
+
LookupTableStartTime: 0x001cn, // 0x001c (0x0004) [float]
|
|
992
|
+
} as const;
|
|
993
|
+
|
|
994
|
+
/**
|
|
995
|
+
* Core.DistributionFloat.RawDistributionFloat Offsets
|
|
996
|
+
* Size: 0x0028
|
|
997
|
+
* Extends: FRawDistribution
|
|
998
|
+
*/
|
|
999
|
+
export const FRawDistributionFloat = {
|
|
1000
|
+
Distribution: 0x0020n, // 0x0020 (0x0008) [UDistributionFloat*]
|
|
1001
|
+
...FRawDistribution,
|
|
1002
|
+
} as const;
|
|
1003
|
+
|
|
1004
|
+
/**
|
|
1005
|
+
* Core.DistributionFloat.MatineeRawDistributionFloat Offsets
|
|
1006
|
+
* Size: 0x0030
|
|
1007
|
+
* Extends: FRawDistributionFloat
|
|
1008
|
+
*/
|
|
1009
|
+
export const FMatineeRawDistributionFloat = {
|
|
1010
|
+
MatineeValue: 0x0028n, // 0x0028 (0x0004) [float]
|
|
1011
|
+
bInMatinee: 0x002cn, // 0x002c (0x0004) [bool : 0x1]
|
|
1012
|
+
...FRawDistributionFloat,
|
|
1013
|
+
} as const;
|
|
1014
|
+
|
|
1015
|
+
/**
|
|
1016
|
+
* Core.Object.Matrix Offsets
|
|
1017
|
+
* Size: 0x0040
|
|
1018
|
+
*/
|
|
1019
|
+
export const FMatrix = {
|
|
1020
|
+
XPlane: 0x0000n, // 0x0000 (0x0010) [FPlane]
|
|
1021
|
+
YPlane: 0x0010n, // 0x0010 (0x0010) [FPlane]
|
|
1022
|
+
ZPlane: 0x0020n, // 0x0020 (0x0010) [FPlane]
|
|
1023
|
+
WPlane: 0x0030n, // 0x0030 (0x0010) [FPlane]
|
|
1024
|
+
} as const;
|
|
1025
|
+
|
|
1026
|
+
/**
|
|
1027
|
+
* Core.Object.MultiMap_Mirror Offsets
|
|
1028
|
+
* Size: 0x0050
|
|
1029
|
+
*/
|
|
1030
|
+
export const FMultiMap_Mirror = {
|
|
1031
|
+
Pairs: 0x0000n, // 0x0000 (0x0050) [FSet_Mirror]
|
|
1032
|
+
} as const;
|
|
1033
|
+
|
|
1034
|
+
/**
|
|
1035
|
+
* Core.ObjectProvider.ObjectPropertyInjection Offsets
|
|
1036
|
+
* Size: 0x0010
|
|
1037
|
+
*/
|
|
1038
|
+
export const FObjectPropertyInjection = {
|
|
1039
|
+
Subscriber: 0x0000n, // 0x0000 (0x0008) [UObject*]
|
|
1040
|
+
Property: 0x0008n, // 0x0008 (0x0008) [UObjectProperty*]
|
|
1041
|
+
} as const;
|
|
1042
|
+
|
|
1043
|
+
/**
|
|
1044
|
+
* Core.ObjectProvider.ObjectProviderPendingCallback Offsets
|
|
1045
|
+
* Size: 0x0020
|
|
1046
|
+
*/
|
|
1047
|
+
export const FObjectProviderPendingCallback = {
|
|
1048
|
+
Callback: 0x0000n, // 0x0000 (0x0018) [FScriptDelegate]
|
|
1049
|
+
Value: 0x0018n, // 0x0018 (0x0008) [UObject*]
|
|
1050
|
+
} as const;
|
|
1051
|
+
|
|
1052
|
+
/**
|
|
1053
|
+
* Core.ObjectProvider.ObjectProviderSubscription Offsets
|
|
1054
|
+
* Size: 0x0024
|
|
1055
|
+
*/
|
|
1056
|
+
export const FObjectProviderSubscription = {
|
|
1057
|
+
ObjClass: 0x0000n, // 0x0000 (0x0008) [UObject*]
|
|
1058
|
+
Callback: 0x0008n, // 0x0008 (0x0018) [FScriptDelegate]
|
|
1059
|
+
bFireOnce: 0x0020n, // 0x0020 (0x0004) [bool : 0x1]
|
|
1060
|
+
} as const;
|
|
1061
|
+
|
|
1062
|
+
/**
|
|
1063
|
+
* Core.Object.OctreeElementId Offsets
|
|
1064
|
+
* Size: 0x000c
|
|
1065
|
+
*/
|
|
1066
|
+
export const FOctreeElementId = {
|
|
1067
|
+
Node: 0x0000n, // 0x0000 (0x0008) [FPointer]
|
|
1068
|
+
ElementIndex: 0x0008n, // 0x0008 (0x0004) [int32]
|
|
1069
|
+
} as const;
|
|
1070
|
+
|
|
1071
|
+
/**
|
|
1072
|
+
* Core.Object.PackedNormal Offsets
|
|
1073
|
+
* Size: 0x0004
|
|
1074
|
+
*/
|
|
1075
|
+
export const FPackedNormal = {
|
|
1076
|
+
X: 0x0000n, // 0x0000 (0x0001) [uint8]
|
|
1077
|
+
Y: 0x0001n, // 0x0001 (0x0001) [uint8]
|
|
1078
|
+
Z: 0x0002n, // 0x0002 (0x0001) [uint8]
|
|
1079
|
+
W: 0x0003n, // 0x0003 (0x0001) [uint8]
|
|
1080
|
+
} as const;
|
|
1081
|
+
|
|
1082
|
+
/**
|
|
1083
|
+
* Core.Object.Vector Offsets
|
|
1084
|
+
* Size: 0x000c
|
|
1085
|
+
*/
|
|
1086
|
+
export const FVector = {
|
|
1087
|
+
X: 0x0000n, // 0x0000 (0x0004) [float]
|
|
1088
|
+
Y: 0x0004n, // 0x0004 (0x0004) [float]
|
|
1089
|
+
Z: 0x0008n, // 0x0008 (0x0004) [float]
|
|
1090
|
+
} as const;
|
|
1091
|
+
|
|
1092
|
+
/**
|
|
1093
|
+
* Core.Object.Plane Offsets
|
|
1094
|
+
* Size: 0x0010
|
|
1095
|
+
* Extends: FVector
|
|
1096
|
+
*/
|
|
1097
|
+
export const FPlane = {
|
|
1098
|
+
W: 0x000cn, // 0x000c (0x0004) [float]
|
|
1099
|
+
...FVector,
|
|
1100
|
+
} as const;
|
|
1101
|
+
|
|
1102
|
+
/**
|
|
1103
|
+
* Core.Object.Pointer Offsets
|
|
1104
|
+
* Size: 0x0008
|
|
1105
|
+
*/
|
|
1106
|
+
export const FPointer = {
|
|
1107
|
+
Dummy: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
1108
|
+
} as const;
|
|
1109
|
+
|
|
1110
|
+
/**
|
|
1111
|
+
* Core._Types_Core.ProductHashID Offsets
|
|
1112
|
+
* Size: 0x0004
|
|
1113
|
+
*/
|
|
1114
|
+
export const FProductHashID = {
|
|
1115
|
+
Id: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
1116
|
+
} as const;
|
|
1117
|
+
|
|
1118
|
+
/**
|
|
1119
|
+
* Core._Types_Core.ProductInstanceID Offsets
|
|
1120
|
+
* Size: 0x0010
|
|
1121
|
+
*/
|
|
1122
|
+
export const FProductInstanceID = {
|
|
1123
|
+
UpperBits: 0x0000n, // 0x0000 (0x0008) [uint64]
|
|
1124
|
+
LowerBits: 0x0008n, // 0x0008 (0x0008) [uint64]
|
|
1125
|
+
} as const;
|
|
1126
|
+
|
|
1127
|
+
/**
|
|
1128
|
+
* Core.Object.Quat Offsets
|
|
1129
|
+
* Size: 0x0010
|
|
1130
|
+
*/
|
|
1131
|
+
export const FQuat = {
|
|
1132
|
+
X: 0x0000n, // 0x0000 (0x0004) [float]
|
|
1133
|
+
Y: 0x0004n, // 0x0004 (0x0004) [float]
|
|
1134
|
+
Z: 0x0008n, // 0x0008 (0x0004) [float]
|
|
1135
|
+
W: 0x000cn, // 0x000c (0x0004) [float]
|
|
1136
|
+
} as const;
|
|
1137
|
+
|
|
1138
|
+
/**
|
|
1139
|
+
* Core.DistributionVector.RawDistributionVector Offsets
|
|
1140
|
+
* Size: 0x0028
|
|
1141
|
+
* Extends: FRawDistribution
|
|
1142
|
+
*/
|
|
1143
|
+
export const FRawDistributionVector = {
|
|
1144
|
+
Distribution: 0x0020n, // 0x0020 (0x0008) [UDistributionVector*]
|
|
1145
|
+
...FRawDistribution,
|
|
1146
|
+
} as const;
|
|
1147
|
+
|
|
1148
|
+
/**
|
|
1149
|
+
* Core.Object.RenderCommandFence Offsets
|
|
1150
|
+
* Size: 0x0004
|
|
1151
|
+
*/
|
|
1152
|
+
export const FRenderCommandFence = {
|
|
1153
|
+
NumPendingFences: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
1154
|
+
} as const;
|
|
1155
|
+
|
|
1156
|
+
/**
|
|
1157
|
+
* Core.Object.RenderCommandFence_Mirror Offsets
|
|
1158
|
+
* Size: 0x0004
|
|
1159
|
+
*/
|
|
1160
|
+
export const FRenderCommandFence_Mirror = {
|
|
1161
|
+
NumPendingFences: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
1162
|
+
} as const;
|
|
1163
|
+
|
|
1164
|
+
/**
|
|
1165
|
+
* Core.Object.Rotator Offsets
|
|
1166
|
+
* Size: 0x000c
|
|
1167
|
+
*/
|
|
1168
|
+
export const FRotator = {
|
|
1169
|
+
Pitch: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
1170
|
+
Yaw: 0x0004n, // 0x0004 (0x0004) [int32]
|
|
1171
|
+
Roll: 0x0008n, // 0x0008 (0x0004) [int32]
|
|
1172
|
+
} as const;
|
|
1173
|
+
|
|
1174
|
+
/**
|
|
1175
|
+
* Core.RotatorConversions.RotatorDegrees Offsets
|
|
1176
|
+
* Size: 0x000c
|
|
1177
|
+
*/
|
|
1178
|
+
export const FRotatorDegrees = {
|
|
1179
|
+
Pitch: 0x0000n, // 0x0000 (0x0004) [float]
|
|
1180
|
+
Yaw: 0x0004n, // 0x0004 (0x0004) [float]
|
|
1181
|
+
Roll: 0x0008n, // 0x0008 (0x0004) [float]
|
|
1182
|
+
} as const;
|
|
1183
|
+
|
|
1184
|
+
/**
|
|
1185
|
+
* Core.RotatorConversions.RotatorRadians Offsets
|
|
1186
|
+
* Size: 0x000c
|
|
1187
|
+
*/
|
|
1188
|
+
export const FRotatorRadians = {
|
|
1189
|
+
Pitch: 0x0000n, // 0x0000 (0x0004) [float]
|
|
1190
|
+
Yaw: 0x0004n, // 0x0004 (0x0004) [float]
|
|
1191
|
+
Roll: 0x0008n, // 0x0008 (0x0004) [float]
|
|
1192
|
+
} as const;
|
|
1193
|
+
|
|
1194
|
+
/**
|
|
1195
|
+
* Core._Types_Core.SceNpId Offsets
|
|
1196
|
+
* Size: 0x0028
|
|
1197
|
+
*/
|
|
1198
|
+
export const FSceNpId = {
|
|
1199
|
+
Handle: 0x0000n, // 0x0000 (0x0018) [FSceNpOnlineId]
|
|
1200
|
+
Opt: 0x0018n, // 0x0018 (0x0008) [uint64]
|
|
1201
|
+
Reserved: 0x0020n, // 0x0020 (0x0008) [uint64]
|
|
1202
|
+
} as const;
|
|
1203
|
+
|
|
1204
|
+
/**
|
|
1205
|
+
* Core._Types_Core.SceNpOnlineId Offsets
|
|
1206
|
+
* Size: 0x0014
|
|
1207
|
+
*/
|
|
1208
|
+
export const FSceNpOnlineId = {
|
|
1209
|
+
Data: 0x0000n, // 0x0000 (0x0010) [uint64]
|
|
1210
|
+
Term: 0x0010n, // 0x0010 (0x0001) [uint8]
|
|
1211
|
+
Dummy: 0x0011n, // 0x0011 (0x0003) [uint8]
|
|
1212
|
+
} as const;
|
|
1213
|
+
|
|
1214
|
+
/**
|
|
1215
|
+
* Core.AutomationTest.ScriptWarning Offsets
|
|
1216
|
+
* Size: 0x0034
|
|
1217
|
+
*/
|
|
1218
|
+
export const FScriptWarning = {
|
|
1219
|
+
Node: 0x0000n, // 0x0000 (0x0010) [FString]
|
|
1220
|
+
Message: 0x0010n, // 0x0010 (0x0010) [FString]
|
|
1221
|
+
StackTrace: 0x0020n, // 0x0020 (0x0010) [FString]
|
|
1222
|
+
ScriptPosition: 0x0030n, // 0x0030 (0x0004) [int32]
|
|
1223
|
+
} as const;
|
|
1224
|
+
|
|
1225
|
+
/**
|
|
1226
|
+
* Core.Object.Set_Mirror Offsets
|
|
1227
|
+
* Size: 0x004c
|
|
1228
|
+
*/
|
|
1229
|
+
export const FSet_Mirror = {
|
|
1230
|
+
Elements: 0x0000n, // 0x0000 (0x0038) [FSparseArray_Mirror]
|
|
1231
|
+
InlineHash: 0x0038n, // 0x0038 (0x0004) [int32]
|
|
1232
|
+
Hash: 0x0040n, // 0x0040 (0x0008) [FPointer]
|
|
1233
|
+
HashSize: 0x0048n, // 0x0048 (0x0004) [int32]
|
|
1234
|
+
} as const;
|
|
1235
|
+
|
|
1236
|
+
/**
|
|
1237
|
+
* Core.Object.SHVector Offsets
|
|
1238
|
+
* Size: 0x0030
|
|
1239
|
+
*/
|
|
1240
|
+
export const FSHVector = {
|
|
1241
|
+
V: 0x0000n, // 0x0000 (0x0024) [float]
|
|
1242
|
+
Padding: 0x0024n, // 0x0024 (0x000c) [float]
|
|
1243
|
+
} as const;
|
|
1244
|
+
|
|
1245
|
+
/**
|
|
1246
|
+
* Core.Object.SHVectorRGB Offsets
|
|
1247
|
+
* Size: 0x0090
|
|
1248
|
+
*/
|
|
1249
|
+
export const FSHVectorRGB = {
|
|
1250
|
+
R: 0x0000n, // 0x0000 (0x0030) [FSHVector]
|
|
1251
|
+
G: 0x0030n, // 0x0030 (0x0030) [FSHVector]
|
|
1252
|
+
B: 0x0060n, // 0x0060 (0x0030) [FSHVector]
|
|
1253
|
+
} as const;
|
|
1254
|
+
|
|
1255
|
+
/**
|
|
1256
|
+
* Core.Object.SparseArray_Mirror Offsets
|
|
1257
|
+
* Size: 0x0038
|
|
1258
|
+
*/
|
|
1259
|
+
export const FSparseArray_Mirror = {
|
|
1260
|
+
Elements: 0x0000n, // 0x0000 (0x0010) [TArray<int32>]
|
|
1261
|
+
AllocationFlags: 0x0010n, // 0x0010 (0x0020) [FBitArray_Mirror]
|
|
1262
|
+
FirstFreeIndex: 0x0030n, // 0x0030 (0x0004) [int32]
|
|
1263
|
+
NumFreeIndices: 0x0034n, // 0x0034 (0x0004) [int32]
|
|
1264
|
+
} as const;
|
|
1265
|
+
|
|
1266
|
+
/**
|
|
1267
|
+
* Core.Object.TAlphaBlend Offsets
|
|
1268
|
+
* Size: 0x0015
|
|
1269
|
+
*/
|
|
1270
|
+
export const FTAlphaBlend = {
|
|
1271
|
+
AlphaIn: 0x0000n, // 0x0000 (0x0004) [float]
|
|
1272
|
+
AlphaOut: 0x0004n, // 0x0004 (0x0004) [float]
|
|
1273
|
+
AlphaTarget: 0x0008n, // 0x0008 (0x0004) [float]
|
|
1274
|
+
BlendTime: 0x000cn, // 0x000c (0x0004) [float]
|
|
1275
|
+
BlendTimeToGo: 0x0010n, // 0x0010 (0x0004) [float]
|
|
1276
|
+
BlendType: 0x0014n, // 0x0014 (0x0001) [AlphaBlendType]
|
|
1277
|
+
} as const;
|
|
1278
|
+
|
|
1279
|
+
/**
|
|
1280
|
+
* Core.Object.ThreadSafeCounter Offsets
|
|
1281
|
+
* Size: 0x0004
|
|
1282
|
+
*/
|
|
1283
|
+
export const FThreadSafeCounter = {
|
|
1284
|
+
Value: 0x0000n, // 0x0000 (0x0004) [int32]
|
|
1285
|
+
} as const;
|
|
1286
|
+
|
|
1287
|
+
/**
|
|
1288
|
+
* Core.Object.TPOV Offsets
|
|
1289
|
+
* Size: 0x001c
|
|
1290
|
+
*/
|
|
1291
|
+
export const FTPOV = {
|
|
1292
|
+
Location: 0x0000n, // 0x0000 (0x000c) [FVector]
|
|
1293
|
+
Rotation: 0x000cn, // 0x000c (0x000c) [FRotator]
|
|
1294
|
+
FOV: 0x0018n, // 0x0018 (0x0004) [float]
|
|
1295
|
+
} as const;
|
|
1296
|
+
|
|
1297
|
+
/**
|
|
1298
|
+
* Core.Object.TwoVectors Offsets
|
|
1299
|
+
* Size: 0x0018
|
|
1300
|
+
*/
|
|
1301
|
+
export const FTwoVectors = {
|
|
1302
|
+
v1: 0x0000n, // 0x0000 (0x000c) [FVector]
|
|
1303
|
+
v2: 0x000cn, // 0x000c (0x000c) [FVector]
|
|
1304
|
+
} as const;
|
|
1305
|
+
|
|
1306
|
+
/**
|
|
1307
|
+
* Core.Function Offsets
|
|
1308
|
+
* Size: 0x0160
|
|
1309
|
+
* Extends: Struct
|
|
1310
|
+
*/
|
|
1311
|
+
export const Function_ = {
|
|
1312
|
+
...Struct,
|
|
1313
|
+
} as const;
|
|
1314
|
+
|
|
1315
|
+
/**
|
|
1316
|
+
* Core._Types_Core.UniqueNetId Offsets
|
|
1317
|
+
* Size: 0x0042
|
|
1318
|
+
*/
|
|
1319
|
+
export const FUniqueNetId = {
|
|
1320
|
+
Uid: 0x0000n, // 0x0000 (0x0008) [uint64]
|
|
1321
|
+
NpId: 0x0008n, // 0x0008 (0x0028) [FSceNpId]
|
|
1322
|
+
EpicAccountId: 0x0030n, // 0x0030 (0x0010) [FString]
|
|
1323
|
+
Platform: 0x0040n, // 0x0040 (0x0001) [OnlinePlatform]
|
|
1324
|
+
SplitscreenID: 0x0041n, // 0x0041 (0x0001) [uint8]
|
|
1325
|
+
} as const;
|
|
1326
|
+
|
|
1327
|
+
/**
|
|
1328
|
+
* Core.Object.UntypedBulkData_Mirror Offsets
|
|
1329
|
+
* Size: 0x0054
|
|
1330
|
+
*/
|
|
1331
|
+
export const FUntypedBulkData_Mirror = {
|
|
1332
|
+
VfTable: 0x0000n, // 0x0000 (0x0008) [FPointer]
|
|
1333
|
+
BulkDataFlags: 0x0008n, // 0x0008 (0x0004) [int32]
|
|
1334
|
+
ElementCount: 0x000cn, // 0x000c (0x0004) [int32]
|
|
1335
|
+
BulkDataOffsetInFile: 0x0010n, // 0x0010 (0x0008) [uint64]
|
|
1336
|
+
BulkDataSizeOnDisk: 0x0018n, // 0x0018 (0x0004) [int32]
|
|
1337
|
+
SavedBulkDataFlags: 0x001cn, // 0x001c (0x0004) [int32]
|
|
1338
|
+
SavedElementCount: 0x0020n, // 0x0020 (0x0004) [int32]
|
|
1339
|
+
SavedBulkDataOffsetInFile: 0x0028n, // 0x0028 (0x0008) [uint64]
|
|
1340
|
+
SavedBulkDataSizeOnDisk: 0x0030n, // 0x0030 (0x0004) [int32]
|
|
1341
|
+
BulkData: 0x0038n, // 0x0038 (0x0008) [FPointer]
|
|
1342
|
+
LockStatus: 0x0040n, // 0x0040 (0x0004) [int32]
|
|
1343
|
+
AttachedAr: 0x0048n, // 0x0048 (0x0008) [FPointer]
|
|
1344
|
+
bShouldFreeOnEmpty: 0x0050n, // 0x0050 (0x0004) [int32]
|
|
1345
|
+
} as const;
|
|
1346
|
+
|
|
1347
|
+
/**
|
|
1348
|
+
* Core.Object.Vector2D Offsets
|
|
1349
|
+
* Size: 0x0008
|
|
1350
|
+
*/
|
|
1351
|
+
export const FVector2D = {
|
|
1352
|
+
X: 0x0000n, // 0x0000 (0x0004) [float]
|
|
1353
|
+
Y: 0x0004n, // 0x0004 (0x0004) [float]
|
|
1354
|
+
} as const;
|
|
1355
|
+
|
|
1356
|
+
/**
|
|
1357
|
+
* Core.Object.Vector4 Offsets
|
|
1358
|
+
* Size: 0x0010
|
|
1359
|
+
*/
|
|
1360
|
+
export const FVector4 = {
|
|
1361
|
+
X: 0x0000n, // 0x0000 (0x0004) [float]
|
|
1362
|
+
Y: 0x0004n, // 0x0004 (0x0004) [float]
|
|
1363
|
+
Z: 0x0008n, // 0x0008 (0x0004) [float]
|
|
1364
|
+
W: 0x000cn, // 0x000c (0x0004) [float]
|
|
1365
|
+
} as const;
|
|
1366
|
+
|
|
1367
|
+
/**
|
|
1368
|
+
* Core._Types_Core.VoiceAudioDevice Offsets
|
|
1369
|
+
* Size: 0x0024
|
|
1370
|
+
*/
|
|
1371
|
+
export const FVoiceAudioDevice = {
|
|
1372
|
+
Id: 0x0000n, // 0x0000 (0x0010) [FString]
|
|
1373
|
+
Name: 0x0010n, // 0x0010 (0x0010) [FString]
|
|
1374
|
+
bDefault: 0x0020n, // 0x0020 (0x0004) [bool : 0x1]
|
|
1375
|
+
} as const;
|
|
1376
|
+
|
|
1377
|
+
/**
|
|
1378
|
+
* Core._Types_Core.VoiceRoomMemberStatus Offsets
|
|
1379
|
+
* Size: 0x0004
|
|
1380
|
+
*/
|
|
1381
|
+
export const FVoiceRoomMemberStatus = {
|
|
1382
|
+
bLocal: 0x0000n, // 0x0000 (0x0004) [bool : 0x1]
|
|
1383
|
+
bSpeaking: 0x0000n, // 0x0000 (0x0004) [bool : 0x2]
|
|
1384
|
+
bSelfMuted: 0x0000n, // 0x0000 (0x0004) [bool : 0x4]
|
|
1385
|
+
bLocalMuted: 0x0000n, // 0x0000 (0x0004) [bool : 0x8]
|
|
1386
|
+
bAdminMuted: 0x0000n, // 0x0000 (0x0004) [bool : 0x10]
|
|
1387
|
+
bBlocked: 0x0000n, // 0x0000 (0x0004) [bool : 0x20]
|
|
1388
|
+
} as const;
|
|
1389
|
+
|
|
1390
|
+
/**
|
|
1391
|
+
* Core.Global_ORS Offsets
|
|
1392
|
+
* Size: 0x0078
|
|
1393
|
+
* Extends: Object_
|
|
1394
|
+
*/
|
|
1395
|
+
export const Global_ORS = {
|
|
1396
|
+
...Object_,
|
|
1397
|
+
} as const;
|
|
1398
|
+
|
|
1399
|
+
/**
|
|
1400
|
+
* Engine.ScriptGroup_ORS Offsets
|
|
1401
|
+
* Size: 0x0068
|
|
1402
|
+
* Extends: Object_
|
|
1403
|
+
*/
|
|
1404
|
+
export const ScriptGroup_ORS = {
|
|
1405
|
+
GroupOwner: 0x0060n, // 0x0060 (0x0008) [UObject*]
|
|
1406
|
+
...Object_,
|
|
1407
|
+
} as const;
|
|
1408
|
+
|
|
1409
|
+
/**
|
|
1410
|
+
* Core.Group_ORS Offsets
|
|
1411
|
+
* Size: 0x0138
|
|
1412
|
+
* Extends: ScriptGroup_ORS
|
|
1413
|
+
*/
|
|
1414
|
+
export const Group_ORS = {
|
|
1415
|
+
...ScriptGroup_ORS,
|
|
1416
|
+
} as const;
|
|
1417
|
+
|
|
1418
|
+
/**
|
|
1419
|
+
* Core.HelpCommandlet Offsets
|
|
1420
|
+
* Size: 0x00b8
|
|
1421
|
+
* Extends: Commandlet
|
|
1422
|
+
*/
|
|
1423
|
+
export const HelpCommandlet = {
|
|
1424
|
+
...Commandlet,
|
|
1425
|
+
} as const;
|
|
1426
|
+
|
|
1427
|
+
/**
|
|
1428
|
+
* Core.Interface Offsets
|
|
1429
|
+
* Size: 0x0060
|
|
1430
|
+
* Extends: Object_
|
|
1431
|
+
*/
|
|
1432
|
+
export const Interface = {
|
|
1433
|
+
...Object_,
|
|
1434
|
+
} as const;
|
|
1435
|
+
|
|
1436
|
+
/**
|
|
1437
|
+
* Core.IDisposable Offsets
|
|
1438
|
+
* Size: 0x0060
|
|
1439
|
+
* Extends: Interface
|
|
1440
|
+
*/
|
|
1441
|
+
export const IDisposable = {
|
|
1442
|
+
...Interface,
|
|
1443
|
+
} as const;
|
|
1444
|
+
|
|
1445
|
+
/**
|
|
1446
|
+
* Core.Instance_ORS Offsets
|
|
1447
|
+
* Size: 0x0110
|
|
1448
|
+
* Extends: Object_
|
|
1449
|
+
*/
|
|
1450
|
+
export const Instance_ORS = {
|
|
1451
|
+
...Object_,
|
|
1452
|
+
} as const;
|
|
1453
|
+
|
|
1454
|
+
/**
|
|
1455
|
+
* Core.InterfaceProperty Offsets
|
|
1456
|
+
* Size: 0x00d8
|
|
1457
|
+
* Extends: Property
|
|
1458
|
+
*/
|
|
1459
|
+
export const InterfaceProperty = {
|
|
1460
|
+
...Property,
|
|
1461
|
+
} as const;
|
|
1462
|
+
|
|
1463
|
+
/**
|
|
1464
|
+
* Core.IntProperty Offsets
|
|
1465
|
+
* Size: 0x00c8
|
|
1466
|
+
* Extends: Property
|
|
1467
|
+
*/
|
|
1468
|
+
export const IntProperty = {
|
|
1469
|
+
...Property,
|
|
1470
|
+
} as const;
|
|
1471
|
+
|
|
1472
|
+
/**
|
|
1473
|
+
* Core.Linker Offsets
|
|
1474
|
+
* Size: 0x01e8
|
|
1475
|
+
* Extends: Object_
|
|
1476
|
+
*/
|
|
1477
|
+
export const Linker = {
|
|
1478
|
+
...Object_,
|
|
1479
|
+
} as const;
|
|
1480
|
+
|
|
1481
|
+
/**
|
|
1482
|
+
* Core.LinkerLoad Offsets
|
|
1483
|
+
* Size: 0x0810
|
|
1484
|
+
* Extends: Linker
|
|
1485
|
+
*/
|
|
1486
|
+
export const LinkerLoad = {
|
|
1487
|
+
...Linker,
|
|
1488
|
+
} as const;
|
|
1489
|
+
|
|
1490
|
+
/**
|
|
1491
|
+
* Core.LinkerSave Offsets
|
|
1492
|
+
* Size: 0x02a8
|
|
1493
|
+
* Extends: Linker
|
|
1494
|
+
*/
|
|
1495
|
+
export const LinkerSave = {
|
|
1496
|
+
...Linker,
|
|
1497
|
+
} as const;
|
|
1498
|
+
|
|
1499
|
+
/**
|
|
1500
|
+
* Core.MapProperty Offsets
|
|
1501
|
+
* Size: 0x00d8
|
|
1502
|
+
* Extends: Property
|
|
1503
|
+
*/
|
|
1504
|
+
export const MapProperty = {
|
|
1505
|
+
...Property,
|
|
1506
|
+
} as const;
|
|
1507
|
+
|
|
1508
|
+
/**
|
|
1509
|
+
* Core.MetaData Offsets
|
|
1510
|
+
* Size: 0x00b0
|
|
1511
|
+
* Extends: Object_
|
|
1512
|
+
*/
|
|
1513
|
+
export const MetaData = {
|
|
1514
|
+
...Object_,
|
|
1515
|
+
} as const;
|
|
1516
|
+
|
|
1517
|
+
/**
|
|
1518
|
+
* Core.NameProperty Offsets
|
|
1519
|
+
* Size: 0x00c8
|
|
1520
|
+
* Extends: Property
|
|
1521
|
+
*/
|
|
1522
|
+
export const NameProperty = {
|
|
1523
|
+
...Property,
|
|
1524
|
+
} as const;
|
|
1525
|
+
|
|
1526
|
+
/**
|
|
1527
|
+
* Core.ObjectProvider Offsets
|
|
1528
|
+
* Size: 0x01e0
|
|
1529
|
+
* Extends: Component
|
|
1530
|
+
*/
|
|
1531
|
+
export const ObjectProvider = {
|
|
1532
|
+
VfTable_FObjectDestructionSubscriber: 0x0070n, // 0x0070 (0x0008) [FPointer]
|
|
1533
|
+
MyObjects: 0x0078n, // 0x0078 (0x0010) [TArray<UObject*>]
|
|
1534
|
+
ObjectRefs: 0x0088n, // 0x0088 (0x0050) [FMap_Mirror]
|
|
1535
|
+
TreeObjects: 0x00d8n, // 0x00d8 (0x0010) [TArray<UObject*>]
|
|
1536
|
+
SubscribedToAdds: 0x00e8n, // 0x00e8 (0x0010) [TArray<FObjectProviderSubscription>]
|
|
1537
|
+
SubscribedToRemoves: 0x00f8n, // 0x00f8 (0x0010) [TArray<FObjectProviderSubscription>]
|
|
1538
|
+
SubscribedToLists: 0x0108n, // 0x0108 (0x0010) [TArray<FObjectProviderSubscription>]
|
|
1539
|
+
Injections: 0x0118n, // 0x0118 (0x0010) [FArray_Mirror]
|
|
1540
|
+
InterfaceInjections: 0x0128n, // 0x0128 (0x0010) [FArray_Mirror]
|
|
1541
|
+
PendingInjectionClasses: 0x0138n, // 0x0138 (0x0010) [TArray<UObject*>]
|
|
1542
|
+
PendingCallbacks: 0x0148n, // 0x0148 (0x0010) [TArray<FObjectProviderPendingCallback>]
|
|
1543
|
+
bTriggeringCallbacks: 0x0158n, // 0x0158 (0x0001) [uint8]
|
|
1544
|
+
Parent: 0x0160n, // 0x0160 (0x0008) [UObjectProvider*]
|
|
1545
|
+
Children: 0x0168n, // 0x0168 (0x0010) [TArray<UObjectProvider*>]
|
|
1546
|
+
Proxies: 0x0178n, // 0x0178 (0x0010) [TArray<UObjectProvider*>]
|
|
1547
|
+
PendingInjectionCallbacks: 0x0188n, // 0x0188 (0x0010) [TArray<FObjectProviderPendingCallback>]
|
|
1548
|
+
__ObjectSubscriptionCallback__Delegate: 0x0198n, // 0x0198 (0x0018) [FScriptDelegate]
|
|
1549
|
+
__ObjectListSubscriptionCallback__Delegate: 0x01b0n, // 0x01b0 (0x0018) [FScriptDelegate]
|
|
1550
|
+
__ObjectChangeCallback__Delegate: 0x01c8n, // 0x01c8 (0x0018) [FScriptDelegate]
|
|
1551
|
+
...Component,
|
|
1552
|
+
} as const;
|
|
1553
|
+
|
|
1554
|
+
/**
|
|
1555
|
+
* Core.ObjectRedirector Offsets
|
|
1556
|
+
* Size: 0x0068
|
|
1557
|
+
* Extends: Object_
|
|
1558
|
+
*/
|
|
1559
|
+
export const ObjectRedirector = {
|
|
1560
|
+
...Object_,
|
|
1561
|
+
} as const;
|
|
1562
|
+
|
|
1563
|
+
/**
|
|
1564
|
+
* Core.ObjectSerializer Offsets
|
|
1565
|
+
* Size: 0x0070
|
|
1566
|
+
* Extends: Object_
|
|
1567
|
+
*/
|
|
1568
|
+
export const ObjectSerializer = {
|
|
1569
|
+
...Object_,
|
|
1570
|
+
} as const;
|
|
1571
|
+
|
|
1572
|
+
/**
|
|
1573
|
+
* Core.ObjectUtil Offsets
|
|
1574
|
+
* Size: 0x0060
|
|
1575
|
+
* Extends: Object_
|
|
1576
|
+
*/
|
|
1577
|
+
export const ObjectUtil = {
|
|
1578
|
+
...Object_,
|
|
1579
|
+
} as const;
|
|
1580
|
+
|
|
1581
|
+
/**
|
|
1582
|
+
* Core.Package Offsets
|
|
1583
|
+
* Size: 0x0148
|
|
1584
|
+
* Extends: Object_
|
|
1585
|
+
*/
|
|
1586
|
+
export const Package = {
|
|
1587
|
+
...Object_,
|
|
1588
|
+
} as const;
|
|
1589
|
+
|
|
1590
|
+
/**
|
|
1591
|
+
* Core.PackageMap Offsets
|
|
1592
|
+
* Size: 0x0118
|
|
1593
|
+
* Extends: Object_
|
|
1594
|
+
*/
|
|
1595
|
+
export const PackageMap = {
|
|
1596
|
+
...Object_,
|
|
1597
|
+
} as const;
|
|
1598
|
+
|
|
1599
|
+
/**
|
|
1600
|
+
* Core.PropertyChangeDispatcher Offsets
|
|
1601
|
+
* Size: 0x0070
|
|
1602
|
+
* Extends: Object_
|
|
1603
|
+
*/
|
|
1604
|
+
export const PropertyChangeDispatcher = {
|
|
1605
|
+
...Object_,
|
|
1606
|
+
} as const;
|
|
1607
|
+
|
|
1608
|
+
/**
|
|
1609
|
+
* Core.QWordProperty Offsets
|
|
1610
|
+
* Size: 0x00c8
|
|
1611
|
+
* Extends: Property
|
|
1612
|
+
*/
|
|
1613
|
+
export const QWordProperty = {
|
|
1614
|
+
...Property,
|
|
1615
|
+
} as const;
|
|
1616
|
+
|
|
1617
|
+
/**
|
|
1618
|
+
* Core.RotatorConversions Offsets
|
|
1619
|
+
* Size: 0x0060
|
|
1620
|
+
* Extends: Object_
|
|
1621
|
+
*/
|
|
1622
|
+
export const RotatorConversions = {
|
|
1623
|
+
...Object_,
|
|
1624
|
+
} as const;
|
|
1625
|
+
|
|
1626
|
+
/**
|
|
1627
|
+
* Core.ScriptStruct Offsets
|
|
1628
|
+
* Size: 0x0158
|
|
1629
|
+
* Extends: Struct
|
|
1630
|
+
*/
|
|
1631
|
+
export const ScriptStruct = {
|
|
1632
|
+
...Struct,
|
|
1633
|
+
} as const;
|
|
1634
|
+
|
|
1635
|
+
/**
|
|
1636
|
+
* Core.StringMap Offsets
|
|
1637
|
+
* Size: 0x00d8
|
|
1638
|
+
* Extends: Component
|
|
1639
|
+
*/
|
|
1640
|
+
export const StringMap = {
|
|
1641
|
+
Map: 0x0070n, // 0x0070 (0x0050) [FMap_Mirror]
|
|
1642
|
+
__PairCallback__Delegate: 0x00c0n, // 0x00c0 (0x0018) [FScriptDelegate]
|
|
1643
|
+
...Component,
|
|
1644
|
+
} as const;
|
|
1645
|
+
|
|
1646
|
+
/**
|
|
1647
|
+
* Core.StringObjectMap Offsets
|
|
1648
|
+
* Size: 0x00c0
|
|
1649
|
+
* Extends: Component
|
|
1650
|
+
*/
|
|
1651
|
+
export const StringObjectMap = {
|
|
1652
|
+
Map: 0x0070n, // 0x0070 (0x0050) [FMap_Mirror]
|
|
1653
|
+
...Component,
|
|
1654
|
+
} as const;
|
|
1655
|
+
|
|
1656
|
+
/**
|
|
1657
|
+
* Core.StrProperty Offsets
|
|
1658
|
+
* Size: 0x00c8
|
|
1659
|
+
* Extends: Property
|
|
1660
|
+
*/
|
|
1661
|
+
export const StrProperty = {
|
|
1662
|
+
...Property,
|
|
1663
|
+
} as const;
|
|
1664
|
+
|
|
1665
|
+
/**
|
|
1666
|
+
* Core.StructProperty Offsets
|
|
1667
|
+
* Size: 0x00d0
|
|
1668
|
+
* Extends: Property
|
|
1669
|
+
*/
|
|
1670
|
+
export const StructProperty = {
|
|
1671
|
+
...Property,
|
|
1672
|
+
} as const;
|
|
1673
|
+
|
|
1674
|
+
/**
|
|
1675
|
+
* Core.Subscription Offsets
|
|
1676
|
+
* Size: 0x0078
|
|
1677
|
+
* Extends: Object_
|
|
1678
|
+
*/
|
|
1679
|
+
export const Subscription = {
|
|
1680
|
+
__SubscriberCallback__Delegate: 0x0060n, // 0x0060 (0x0018) [FScriptDelegate]
|
|
1681
|
+
...Object_,
|
|
1682
|
+
} as const;
|
|
1683
|
+
|
|
1684
|
+
/**
|
|
1685
|
+
* Core.SubscriptionCollection_ORS Offsets
|
|
1686
|
+
* Size: 0x0080
|
|
1687
|
+
* Extends: Object_
|
|
1688
|
+
*/
|
|
1689
|
+
export const SubscriptionCollection_ORS = {
|
|
1690
|
+
...Object_,
|
|
1691
|
+
} as const;
|
|
1692
|
+
|
|
1693
|
+
/**
|
|
1694
|
+
* Core.Subsystem Offsets
|
|
1695
|
+
* Size: 0x0068
|
|
1696
|
+
* Extends: Object_
|
|
1697
|
+
*/
|
|
1698
|
+
export const Subsystem = {
|
|
1699
|
+
VfTable_FExec: 0x0060n, // 0x0060 (0x0008) [FPointer]
|
|
1700
|
+
...Object_,
|
|
1701
|
+
} as const;
|
|
1702
|
+
|
|
1703
|
+
/**
|
|
1704
|
+
* Core.System Offsets
|
|
1705
|
+
* Size: 0x0160
|
|
1706
|
+
* Extends: Subsystem
|
|
1707
|
+
*/
|
|
1708
|
+
export const System = {
|
|
1709
|
+
StaleCacheDays: 0x0068n, // 0x0068 (0x0004) [int32]
|
|
1710
|
+
MaxStaleCacheSize: 0x006cn, // 0x006c (0x0004) [int32]
|
|
1711
|
+
MaxOverallCacheSize: 0x0070n, // 0x0070 (0x0004) [int32]
|
|
1712
|
+
PackageSizeSoftLimit: 0x0074n, // 0x0074 (0x0004) [int32]
|
|
1713
|
+
AsyncIOBandwidthLimit: 0x0078n, // 0x0078 (0x0004) [float]
|
|
1714
|
+
SavePath: 0x0080n, // 0x0080 (0x0010) [FString]
|
|
1715
|
+
CachePath: 0x0090n, // 0x0090 (0x0010) [FString]
|
|
1716
|
+
CacheExt: 0x00a0n, // 0x00a0 (0x0010) [FString]
|
|
1717
|
+
Paths: 0x00b0n, // 0x00b0 (0x0010) [TArray<FString>]
|
|
1718
|
+
SeekFreePCPaths: 0x00c0n, // 0x00c0 (0x0010) [TArray<FString>]
|
|
1719
|
+
ScriptPaths: 0x00d0n, // 0x00d0 (0x0010) [TArray<FString>]
|
|
1720
|
+
FRScriptPaths: 0x00e0n, // 0x00e0 (0x0010) [TArray<FString>]
|
|
1721
|
+
CutdownPaths: 0x00f0n, // 0x00f0 (0x0010) [TArray<FString>]
|
|
1722
|
+
Suppress: 0x0100n, // 0x0100 (0x0010) [TArray<FName>]
|
|
1723
|
+
SuppressPublic: 0x0110n, // 0x0110 (0x0010) [TArray<FName>]
|
|
1724
|
+
Extensions: 0x0120n, // 0x0120 (0x0010) [TArray<FString>]
|
|
1725
|
+
SeekFreePCExtensions: 0x0130n, // 0x0130 (0x0010) [TArray<FString>]
|
|
1726
|
+
LocalizationPaths: 0x0140n, // 0x0140 (0x0010) [TArray<FString>]
|
|
1727
|
+
TextureFileCacheExtension: 0x0150n, // 0x0150 (0x0010) [FString]
|
|
1728
|
+
...Subsystem,
|
|
1729
|
+
} as const;
|
|
1730
|
+
|
|
1731
|
+
/**
|
|
1732
|
+
* Core.TAsyncResult Offsets
|
|
1733
|
+
* Size: 0x00d0
|
|
1734
|
+
* Extends: AsyncTask
|
|
1735
|
+
*/
|
|
1736
|
+
export const TAsyncResult = {
|
|
1737
|
+
...AsyncTask,
|
|
1738
|
+
} as const;
|
|
1739
|
+
|
|
1740
|
+
/**
|
|
1741
|
+
* Core.TextBuffer Offsets
|
|
1742
|
+
* Size: 0x0090
|
|
1743
|
+
* Extends: Object_
|
|
1744
|
+
*/
|
|
1745
|
+
export const TextBuffer = {
|
|
1746
|
+
...Object_,
|
|
1747
|
+
} as const;
|
|
1748
|
+
|
|
1749
|
+
/**
|
|
1750
|
+
* Core.TextBufferFactory Offsets
|
|
1751
|
+
* Size: 0x00b8
|
|
1752
|
+
* Extends: Factory
|
|
1753
|
+
*/
|
|
1754
|
+
export const TextBufferFactory = {
|
|
1755
|
+
...Factory,
|
|
1756
|
+
} as const;
|
|
1757
|
+
|
|
1758
|
+
/**
|
|
1759
|
+
* Core.UTF8 Offsets
|
|
1760
|
+
* Size: 0x0060
|
|
1761
|
+
* Extends: Object_
|
|
1762
|
+
*/
|
|
1763
|
+
export const UTF8 = {
|
|
1764
|
+
...Object_,
|
|
1765
|
+
} as const;
|