@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,2527 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ProjectX Package - Structs
|
|
3
|
+
* Auto-generated by Stev Peifer <stev.p@outlook.com> (https://github.com/ObscuritySRL)
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
|
+
import type { UAkSoundCue } from '../classes/AkAudio';
|
|
8
|
+
import type { UAsyncTask, UError, UErrorType, UObject, UProperty, UStringMap } from '../classes/Core';
|
|
9
|
+
import type {
|
|
10
|
+
UActor,
|
|
11
|
+
UActorComponent,
|
|
12
|
+
UNetworkEncryptionKey,
|
|
13
|
+
UParticleSystem,
|
|
14
|
+
UPhysicalMaterial,
|
|
15
|
+
UPlayerController,
|
|
16
|
+
UPlayerReplicationInfo,
|
|
17
|
+
UPostProcessChain,
|
|
18
|
+
UPostProcessVolume,
|
|
19
|
+
UPrimitiveComponent,
|
|
20
|
+
USkeletalMeshComponent,
|
|
21
|
+
UTexture2DDynamic,
|
|
22
|
+
} from '../classes/Engine';
|
|
23
|
+
import type {
|
|
24
|
+
UAddReservationMessage_X,
|
|
25
|
+
UCachedWebData_X,
|
|
26
|
+
UCameraState_X,
|
|
27
|
+
UEOSMetricEvent_X,
|
|
28
|
+
UFXActorEvent_X,
|
|
29
|
+
UFXAttachmentTraitBase_X,
|
|
30
|
+
UGFxDataRow_X,
|
|
31
|
+
UIReservationConnection_X,
|
|
32
|
+
UPsyNetClientService_X,
|
|
33
|
+
UPsyNetMessage_X,
|
|
34
|
+
URPC_X,
|
|
35
|
+
URuntimeParameterBase_X,
|
|
36
|
+
UTAsyncResult__PsyNetMessage_X,
|
|
37
|
+
UWebRequest_X,
|
|
38
|
+
} from '../classes/ProjectX';
|
|
39
|
+
import type { OnlinePlatform } from '../enums/Core';
|
|
40
|
+
import type { ECrossPlatformChatState, EInputPlatformType, EOnlineFriendState } from '../enums/Engine';
|
|
41
|
+
import type { ASType } from '../enums/GFxUI';
|
|
42
|
+
import type {
|
|
43
|
+
DLCOwnershipState,
|
|
44
|
+
EAttachActorLocationUnlockFlags,
|
|
45
|
+
EAxisSign,
|
|
46
|
+
EButtonPressType,
|
|
47
|
+
EChatChannel,
|
|
48
|
+
EChatPermissionLevel,
|
|
49
|
+
EChatReportingLevel,
|
|
50
|
+
EClubBadge,
|
|
51
|
+
EClubRole,
|
|
52
|
+
EExploitType,
|
|
53
|
+
EFXComponentState,
|
|
54
|
+
EFXComponentTarget,
|
|
55
|
+
EFXOverrideAttachBehavior,
|
|
56
|
+
EJoinMatchType,
|
|
57
|
+
EObjectEncoding,
|
|
58
|
+
EOnlinePlayerPermission,
|
|
59
|
+
ERemappable,
|
|
60
|
+
EReservationStatus,
|
|
61
|
+
ETradePermissionLevel,
|
|
62
|
+
EWordFilterUsage,
|
|
63
|
+
FakeDataEnum,
|
|
64
|
+
} from '../enums/ProjectX';
|
|
65
|
+
import type {
|
|
66
|
+
FColor,
|
|
67
|
+
FEncryptedKeyIndex,
|
|
68
|
+
FGuid,
|
|
69
|
+
FInterpCurveFloat,
|
|
70
|
+
FInterpCurveLinearColor,
|
|
71
|
+
FInterpCurveVector,
|
|
72
|
+
FLinearColor,
|
|
73
|
+
FMap_Mirror,
|
|
74
|
+
FMatrix,
|
|
75
|
+
FPointer,
|
|
76
|
+
FQuat,
|
|
77
|
+
FRawDistributionFloat,
|
|
78
|
+
FRotator,
|
|
79
|
+
FUniqueNetId,
|
|
80
|
+
FVector,
|
|
81
|
+
} from './Core';
|
|
82
|
+
import type { FPostProcessSettings, FUniqueLobbyId, FViewTargetTransitionParams } from './Engine';
|
|
83
|
+
import type { FASValue } from './GFxUI';
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* ScriptStruct ProjectX.EOS_AccountSummaryResponse.AccountSettings
|
|
87
|
+
* Size: 0x0010
|
|
88
|
+
*/
|
|
89
|
+
export type FAccountSettings = {
|
|
90
|
+
Privacy: FPrivacySettings; // 0x0000 (0x0010) [FPrivacySettings]
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* ScriptStruct ProjectX._Types_X.ActiveServerData
|
|
95
|
+
* Size: 0x00A0
|
|
96
|
+
*/
|
|
97
|
+
export type FActiveServerData = {
|
|
98
|
+
Reservation: FServerReservationData; // 0x0000 (0x0070) [FServerReservationData]
|
|
99
|
+
PingURL: string; // 0x0070 (0x0010) [FString]
|
|
100
|
+
GameURL: string; // 0x0080 (0x0010) [FString]
|
|
101
|
+
JoinCredentials: string; // 0x0090 (0x0010) [FString]
|
|
102
|
+
};
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* ScriptStruct ProjectX.ParameterDispenser_X.ActorParamPair
|
|
106
|
+
* Size: 0x0010
|
|
107
|
+
*/
|
|
108
|
+
export type FActorParamPair = {
|
|
109
|
+
Key: FName; // 0x0000 (0x0008) [FName]
|
|
110
|
+
Value: UActor; // 0x0008 (0x0008) [UActor*]
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* ScriptStruct ProjectX.AnimateParametersComponent_X.AnimatedParam
|
|
115
|
+
* Size: 0x0008
|
|
116
|
+
*/
|
|
117
|
+
export type FAnimatedParam = {
|
|
118
|
+
ParamName: FName; // 0x0000 (0x0008) [FName]
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* ScriptStruct ProjectX.AnimateParametersComponent_X.AnimatedFloatParam
|
|
123
|
+
* Size: 0x0020
|
|
124
|
+
*/
|
|
125
|
+
export type FAnimatedFloatParam = FAnimatedParam & {
|
|
126
|
+
ValueOverTime: FInterpCurveFloat; // 0x0008 (0x0018) [FInterpCurveFloat]
|
|
127
|
+
};
|
|
128
|
+
|
|
129
|
+
/**
|
|
130
|
+
* ScriptStruct ProjectX.AnimateParametersComponent_X.AnimatedLinearColorParam
|
|
131
|
+
* Size: 0x0020
|
|
132
|
+
*/
|
|
133
|
+
export type FAnimatedLinearColorParam = FAnimatedParam & {
|
|
134
|
+
ValueOverTime: FInterpCurveLinearColor; // 0x0008 (0x0018) [FInterpCurveLinearColor]
|
|
135
|
+
};
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* ScriptStruct ProjectX.AnimateParametersComponent_X.AnimatedVectorParam
|
|
139
|
+
* Size: 0x0020
|
|
140
|
+
*/
|
|
141
|
+
export type FAnimatedVectorParam = FAnimatedParam & {
|
|
142
|
+
ValueOverTime: FInterpCurveVector; // 0x0008 (0x0018) [FInterpCurveVector]
|
|
143
|
+
};
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* ScriptStruct ProjectX.FXActor_X.AttachToParameterWithUnlockAxes
|
|
147
|
+
* Size: 0x0009
|
|
148
|
+
*/
|
|
149
|
+
export type FAttachToParameterWithUnlockAxes = {
|
|
150
|
+
Parameter: FName; // 0x0000 (0x0008) [FName]
|
|
151
|
+
IgnoredAxis: EAttachActorLocationUnlockFlags; // 0x0008 (0x0001) [EAttachActorLocationUnlockFlags]
|
|
152
|
+
};
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* ScriptStruct ProjectX.ReservationBeacon_X.BeaconMessageHandler
|
|
156
|
+
* Size: 0x0018
|
|
157
|
+
*/
|
|
158
|
+
export type FBeaconMessageHandler = {
|
|
159
|
+
MessageClass: UObject; // 0x0000 (0x0008) [UObject*]
|
|
160
|
+
Delegates: FScriptDelegate[]; // 0x0008 (0x0010) [TArray<FScriptDelegate>]
|
|
161
|
+
};
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* ScriptStruct ProjectX._Types_X.BindingAction
|
|
165
|
+
* Size: 0x0038
|
|
166
|
+
*/
|
|
167
|
+
export type FBindingAction = {
|
|
168
|
+
Action: FName; // 0x0000 (0x0008) [FName]
|
|
169
|
+
Category: FName; // 0x0008 (0x0008) [FName]
|
|
170
|
+
Axis: FName; // 0x0010 (0x0008) [FName]
|
|
171
|
+
AxisSign: EAxisSign; // 0x0018 (0x0001) [EAxisSign]
|
|
172
|
+
Command: string; // 0x0020 (0x0010) [FString]
|
|
173
|
+
bDisableRemapping: boolean; // 0x0030 (0x0004) [bool : 0x1]
|
|
174
|
+
Priority: number; // 0x0034 (0x0004) [int32]
|
|
175
|
+
};
|
|
176
|
+
|
|
177
|
+
/**
|
|
178
|
+
* ScriptStruct ProjectX._Types_X.BumpAngleCheckConfig
|
|
179
|
+
* Size: 0x0014
|
|
180
|
+
*/
|
|
181
|
+
export type FBumpAngleCheckConfig = {
|
|
182
|
+
bEnabled: boolean; // 0x0000 (0x0004) [bool : 0x1]
|
|
183
|
+
BumpAngleYaw: number; // 0x0004 (0x0004) [float]
|
|
184
|
+
BumpAnglePitch: number; // 0x0008 (0x0004) [float]
|
|
185
|
+
DemolishAngleYaw: number; // 0x000c (0x0004) [float]
|
|
186
|
+
DemolishAnglePitch: number; // 0x0010 (0x0004) [float]
|
|
187
|
+
};
|
|
188
|
+
|
|
189
|
+
/**
|
|
190
|
+
* ScriptStruct ProjectX._Types_X.BumpAngleCurveCheckConfig
|
|
191
|
+
* Size: 0x0068
|
|
192
|
+
*/
|
|
193
|
+
export type FBumpAngleCurveCheckConfig = {
|
|
194
|
+
bEnabled: boolean; // 0x0000 (0x0004) [bool : 0x1]
|
|
195
|
+
BumpAngleCurveYaw: FInterpCurveFloat; // 0x0008 (0x0018) [FInterpCurveFloat]
|
|
196
|
+
BumpAngleCurvePitch: FInterpCurveFloat; // 0x0020 (0x0018) [FInterpCurveFloat]
|
|
197
|
+
DemolishAngleCurveYaw: FInterpCurveFloat; // 0x0038 (0x0018) [FInterpCurveFloat]
|
|
198
|
+
DemolishAngleCurvePitch: FInterpCurveFloat; // 0x0050 (0x0018) [FInterpCurveFloat]
|
|
199
|
+
};
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* ScriptStruct ProjectX.CabinedModeResponse.CabinedModeData
|
|
203
|
+
* Size: 0x0028
|
|
204
|
+
*/
|
|
205
|
+
export type FCabinedModeData = {
|
|
206
|
+
cabinedMode: boolean; // 0x0000 (0x0004) [bool : 0x1]
|
|
207
|
+
AccountId: string; // 0x0008 (0x0010) [FString]
|
|
208
|
+
linkedAccounts: FLinkedAccount[]; // 0x0018 (0x0010) [TArray<FLinkedAccount>]
|
|
209
|
+
};
|
|
210
|
+
|
|
211
|
+
/**
|
|
212
|
+
* ScriptStruct ProjectX.WebCache_X.CachedDataRequest
|
|
213
|
+
* Size: 0x0050
|
|
214
|
+
*/
|
|
215
|
+
export type FCachedDataRequest = {
|
|
216
|
+
URL: string; // 0x0000 (0x0010) [FString]
|
|
217
|
+
Path: string; // 0x0010 (0x0010) [FString]
|
|
218
|
+
Headers: UStringMap; // 0x0020 (0x0008) [UStringMap*]
|
|
219
|
+
CachedWebData: UCachedWebData_X; // 0x0028 (0x0008) [UCachedWebData_X*]
|
|
220
|
+
bZipResponse: boolean; // 0x0030 (0x0004) [bool : 0x1]
|
|
221
|
+
Callback: FScriptDelegate; // 0x0038 (0x0018) [FScriptDelegate]
|
|
222
|
+
};
|
|
223
|
+
|
|
224
|
+
/**
|
|
225
|
+
* ScriptStruct ProjectX.OnlineGameLeaderboards_X.CachedLeaderboardData
|
|
226
|
+
* Size: 0x0020
|
|
227
|
+
*/
|
|
228
|
+
export type FCachedLeaderboardData = {
|
|
229
|
+
LeaderboardId: FName; // 0x0000 (0x0008) [FName]
|
|
230
|
+
DataList: FLeaderboardData[]; // 0x0008 (0x0010) [TArray<FLeaderboardData>]
|
|
231
|
+
LastLeaderboardSyncTime: bigint; // 0x0018 (0x0008) [uint64]
|
|
232
|
+
};
|
|
233
|
+
|
|
234
|
+
/**
|
|
235
|
+
* ScriptStruct ProjectX._Types_X.CachedRegionPing
|
|
236
|
+
* Size: 0x000C
|
|
237
|
+
*/
|
|
238
|
+
export type FCachedRegionPing = {
|
|
239
|
+
Name: FName; // 0x0000 (0x0008) [FName]
|
|
240
|
+
Ping: number; // 0x0008 (0x0004) [float]
|
|
241
|
+
};
|
|
242
|
+
|
|
243
|
+
/**
|
|
244
|
+
* ScriptStruct ProjectX.LocalCache_X.CacheExportCallbackData
|
|
245
|
+
* Size: 0x0020
|
|
246
|
+
*/
|
|
247
|
+
export type FCacheExportCallbackData = {
|
|
248
|
+
Task: FPointer; // 0x0000 (0x0008) [FPointer]
|
|
249
|
+
Callback: FScriptDelegate; // 0x0008 (0x0018) [FScriptDelegate]
|
|
250
|
+
};
|
|
251
|
+
|
|
252
|
+
/**
|
|
253
|
+
* ScriptStruct ProjectX.LocalCache_X.CacheIOTaskBase
|
|
254
|
+
* Size: 0x0030
|
|
255
|
+
*/
|
|
256
|
+
export type FCacheIOTaskBase = {
|
|
257
|
+
CacheObject: UObject; // 0x0000 (0x0008) [UObject*]
|
|
258
|
+
Data: number[]; // 0x0008 (0x0010) [TArray<uint8>]
|
|
259
|
+
Path: string; // 0x0018 (0x0010) [FString]
|
|
260
|
+
Error: UErrorType; // 0x0028 (0x0008) [UErrorType*]
|
|
261
|
+
};
|
|
262
|
+
|
|
263
|
+
/**
|
|
264
|
+
* ScriptStruct ProjectX.LocalCache_X.CacheExportTask
|
|
265
|
+
* Size: 0x0030
|
|
266
|
+
*/
|
|
267
|
+
export type FCacheExportTask = FCacheIOTaskBase & {};
|
|
268
|
+
|
|
269
|
+
/**
|
|
270
|
+
* ScriptStruct ProjectX.LocalCache_X.CacheImportCallbackData
|
|
271
|
+
* Size: 0x0020
|
|
272
|
+
*/
|
|
273
|
+
export type FCacheImportCallbackData = {
|
|
274
|
+
Task: FPointer; // 0x0000 (0x0008) [FPointer]
|
|
275
|
+
Callback: FScriptDelegate; // 0x0008 (0x0018) [FScriptDelegate]
|
|
276
|
+
};
|
|
277
|
+
|
|
278
|
+
/**
|
|
279
|
+
* ScriptStruct ProjectX.LocalCache_X.CacheImportTask
|
|
280
|
+
* Size: 0x0030
|
|
281
|
+
*/
|
|
282
|
+
export type FCacheImportTask = FCacheIOTaskBase & {};
|
|
283
|
+
|
|
284
|
+
/**
|
|
285
|
+
* ScriptStruct ProjectX.Camera_X.CameraKnockBase
|
|
286
|
+
* Size: 0x0010
|
|
287
|
+
*/
|
|
288
|
+
export type FCameraKnockBase = {
|
|
289
|
+
BlendInTime: number; // 0x0000 (0x0004) [float]
|
|
290
|
+
BlendOutTime: number; // 0x0004 (0x0004) [float]
|
|
291
|
+
Falloff: number; // 0x0008 (0x0004) [float]
|
|
292
|
+
Time: number; // 0x000c (0x0004) [float]
|
|
293
|
+
};
|
|
294
|
+
|
|
295
|
+
/**
|
|
296
|
+
* ScriptStruct ProjectX.Camera_X.CameraOrientation
|
|
297
|
+
* Size: 0x002C
|
|
298
|
+
*/
|
|
299
|
+
export type FCameraOrientation = {
|
|
300
|
+
Focus: FVector; // 0x0000 (0x000c) [FVector]
|
|
301
|
+
Rotation: FRotator; // 0x000c (0x000c) [FRotator]
|
|
302
|
+
Distance: number; // 0x0018 (0x0004) [float]
|
|
303
|
+
FOV: number; // 0x001c (0x0004) [float]
|
|
304
|
+
CalculatedLocation: FVector; // 0x0020 (0x000c) [FVector]
|
|
305
|
+
};
|
|
306
|
+
|
|
307
|
+
/**
|
|
308
|
+
* ScriptStruct ProjectX.CameraStateBlender_X.CameraTransition
|
|
309
|
+
* Size: 0x004C
|
|
310
|
+
*/
|
|
311
|
+
export type FCameraTransition = {
|
|
312
|
+
CameraState: UCameraState_X; // 0x0000 (0x0008) [UCameraState_X*]
|
|
313
|
+
BlendParams: FViewTargetTransitionParams; // 0x0008 (0x0010) [FViewTargetTransitionParams]
|
|
314
|
+
RemainingTime: number; // 0x0018 (0x0004) [float]
|
|
315
|
+
SnapshotPOV: FCameraOrientation; // 0x001c (0x002c) [FCameraOrientation]
|
|
316
|
+
bStarted: boolean; // 0x0048 (0x0004) [bool : 0x1]
|
|
317
|
+
};
|
|
318
|
+
|
|
319
|
+
/**
|
|
320
|
+
* ScriptStruct ProjectX._Types_X.CarInteractionConfig
|
|
321
|
+
* Size: 0x0104
|
|
322
|
+
*/
|
|
323
|
+
export type FCarInteractionConfig = {
|
|
324
|
+
PushFactor: number; // 0x0000 (0x0004) [float]
|
|
325
|
+
BumperPushFactorCurveGround: FInterpCurveFloat; // 0x0008 (0x0018) [FInterpCurveFloat]
|
|
326
|
+
BumperPushFactorCurveAir: FInterpCurveFloat; // 0x0020 (0x0018) [FInterpCurveFloat]
|
|
327
|
+
ZPushFactorCurve: FInterpCurveFloat; // 0x0038 (0x0018) [FInterpCurveFloat]
|
|
328
|
+
BumpInterval: number; // 0x0050 (0x0004) [float]
|
|
329
|
+
COMAngleCheck: FBumpAngleCheckConfig; // 0x0054 (0x0014) [FBumpAngleCheckConfig]
|
|
330
|
+
VictimHitAngleCheck: FBumpAngleCheckConfig; // 0x0068 (0x0014) [FBumpAngleCheckConfig]
|
|
331
|
+
AttackerHitAngleCheck: FBumpAngleCheckConfig; // 0x007c (0x0014) [FBumpAngleCheckConfig]
|
|
332
|
+
VictimHitAngleCurveCheck: FBumpAngleCurveCheckConfig; // 0x0090 (0x0068) [FBumpAngleCurveCheckConfig]
|
|
333
|
+
bCheckImpactNormal: boolean; // 0x00f8 (0x0004) [bool : 0x1]
|
|
334
|
+
ImpactNormalDotProductDemo: number; // 0x00fc (0x0004) [float]
|
|
335
|
+
ImpactNormalDotProductBump: number; // 0x0100 (0x0004) [float]
|
|
336
|
+
};
|
|
337
|
+
|
|
338
|
+
/**
|
|
339
|
+
* ScriptStruct ProjectX.PresetMutators_X.CategorySettingPair
|
|
340
|
+
* Size: 0x0014
|
|
341
|
+
*/
|
|
342
|
+
export type FCategorySettingPair = {
|
|
343
|
+
Category: FName; // 0x0000 (0x0008) [FName]
|
|
344
|
+
Setting: FName; // 0x0008 (0x0008) [FName]
|
|
345
|
+
bLockSetting: boolean; // 0x0010 (0x0004) [bool : 0x1]
|
|
346
|
+
};
|
|
347
|
+
|
|
348
|
+
/**
|
|
349
|
+
* ScriptStruct ProjectX.EpicConfig_X.ChatPermissionPair
|
|
350
|
+
* Size: 0x0011
|
|
351
|
+
*/
|
|
352
|
+
export type FChatPermissionPair = {
|
|
353
|
+
PermissionLabel: string; // 0x0000 (0x0010) [FString]
|
|
354
|
+
Level: EChatPermissionLevel; // 0x0010 (0x0001) [EChatPermissionLevel]
|
|
355
|
+
};
|
|
356
|
+
|
|
357
|
+
/**
|
|
358
|
+
* ScriptStruct ProjectX.RPC_CheckReplacementDedicatedServer_X.CheckReplacementDedicatedServerData
|
|
359
|
+
* Size: 0x0034
|
|
360
|
+
*/
|
|
361
|
+
export type FCheckReplacementDedicatedServerData = {
|
|
362
|
+
ServerId: string; // 0x0000 (0x0010) [FString]
|
|
363
|
+
IP: string; // 0x0010 (0x0010) [FString]
|
|
364
|
+
Host: string; // 0x0020 (0x0010) [FString]
|
|
365
|
+
Port: number; // 0x0030 (0x0004) [int32]
|
|
366
|
+
};
|
|
367
|
+
|
|
368
|
+
/**
|
|
369
|
+
* ScriptStruct ProjectX._Types_X.CheckReservationResponse
|
|
370
|
+
* Size: 0x007C
|
|
371
|
+
*/
|
|
372
|
+
export type FCheckReservationResponse = {
|
|
373
|
+
IP: string; // 0x0000 (0x0010) [FString]
|
|
374
|
+
ServerName: string; // 0x0010 (0x0010) [FString]
|
|
375
|
+
Playlist: number; // 0x0020 (0x0004) [int32]
|
|
376
|
+
Region: string; // 0x0028 (0x0010) [FString]
|
|
377
|
+
Host: string; // 0x0038 (0x0010) [FString]
|
|
378
|
+
Port: number; // 0x0048 (0x0004) [int32]
|
|
379
|
+
ReservationID: string; // 0x0050 (0x0010) [FString]
|
|
380
|
+
DSConnectToken: string; // 0x0060 (0x0010) [FString]
|
|
381
|
+
Keys: UNetworkEncryptionKey; // 0x0070 (0x0008) [UNetworkEncryptionKey*]
|
|
382
|
+
IsServerKey: boolean; // 0x0078 (0x0004) [bool : 0x1]
|
|
383
|
+
};
|
|
384
|
+
|
|
385
|
+
/**
|
|
386
|
+
* ScriptStruct ProjectX.RPC_GetClubStats_X.ClubCareerStats
|
|
387
|
+
* Size: 0x0078
|
|
388
|
+
*/
|
|
389
|
+
export type FClubCareerStats = {
|
|
390
|
+
MatchPlayed: number; // 0x0000 (0x0004) [int32]
|
|
391
|
+
Win: number; // 0x0004 (0x0004) [int32]
|
|
392
|
+
TimePlayed: bigint; // 0x0008 (0x0008) [uint64]
|
|
393
|
+
Goal: number; // 0x0010 (0x0004) [int32]
|
|
394
|
+
AerialGoal: number; // 0x0014 (0x0004) [int32]
|
|
395
|
+
LongGoal: number; // 0x0018 (0x0004) [int32]
|
|
396
|
+
BackwardsGoal: number; // 0x001c (0x0004) [int32]
|
|
397
|
+
OvertimeGoal: number; // 0x0020 (0x0004) [int32]
|
|
398
|
+
TurtleGoal: number; // 0x0024 (0x0004) [int32]
|
|
399
|
+
Assist: number; // 0x0028 (0x0004) [int32]
|
|
400
|
+
Playmaker: number; // 0x002c (0x0004) [int32]
|
|
401
|
+
Save: number; // 0x0030 (0x0004) [int32]
|
|
402
|
+
EpicSave: number; // 0x0034 (0x0004) [int32]
|
|
403
|
+
Savior: number; // 0x0038 (0x0004) [int32]
|
|
404
|
+
Shot: number; // 0x003c (0x0004) [int32]
|
|
405
|
+
Center: number; // 0x0040 (0x0004) [int32]
|
|
406
|
+
Clear: number; // 0x0044 (0x0004) [int32]
|
|
407
|
+
AerialHit: number; // 0x0048 (0x0004) [int32]
|
|
408
|
+
BicycleHit: number; // 0x004c (0x0004) [int32]
|
|
409
|
+
JuggleHit: number; // 0x0050 (0x0004) [int32]
|
|
410
|
+
Demolish: number; // 0x0054 (0x0004) [int32]
|
|
411
|
+
Demolition: number; // 0x0058 (0x0004) [int32]
|
|
412
|
+
FirstTouch: number; // 0x005c (0x0004) [int32]
|
|
413
|
+
PoolShot: number; // 0x0060 (0x0004) [int32]
|
|
414
|
+
LowFive: number; // 0x0064 (0x0004) [int32]
|
|
415
|
+
HighFive: number; // 0x0068 (0x0004) [int32]
|
|
416
|
+
BreakoutDamage: number; // 0x006c (0x0004) [int32]
|
|
417
|
+
BreakoutDamageLarge: number; // 0x0070 (0x0004) [int32]
|
|
418
|
+
HoopsSwishGoal: number; // 0x0074 (0x0004) [int32]
|
|
419
|
+
};
|
|
420
|
+
|
|
421
|
+
/**
|
|
422
|
+
* ScriptStruct ProjectX._Types_X.ClubColorSet
|
|
423
|
+
* Size: 0x0008
|
|
424
|
+
*/
|
|
425
|
+
export type FClubColorSet = {
|
|
426
|
+
TeamColorID: number; // 0x0000 (0x0001) [uint8]
|
|
427
|
+
CustomColorID: number; // 0x0001 (0x0001) [uint8]
|
|
428
|
+
bTeamColorSet: boolean; // 0x0004 (0x0004) [bool : 0x1]
|
|
429
|
+
bCustomColorSet: boolean; // 0x0004 (0x0004) [bool : 0x2]
|
|
430
|
+
};
|
|
431
|
+
|
|
432
|
+
/**
|
|
433
|
+
* ScriptStruct ProjectX._Types_X.ClubMember
|
|
434
|
+
* Size: 0x00B1
|
|
435
|
+
*/
|
|
436
|
+
export type FClubMember = {
|
|
437
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
438
|
+
EpicPlayerID: FUniqueNetId; // 0x0048 (0x0048) [FUniqueNetId]
|
|
439
|
+
PlayerName: string; // 0x0090 (0x0010) [FString]
|
|
440
|
+
EpicPlayerName: string; // 0x00a0 (0x0010) [FString]
|
|
441
|
+
RoleID: EClubRole; // 0x00b0 (0x0001) [EClubRole]
|
|
442
|
+
};
|
|
443
|
+
|
|
444
|
+
/**
|
|
445
|
+
* ScriptStruct ProjectX._Types_X.ClubReplicationInfo
|
|
446
|
+
* Size: 0x0043
|
|
447
|
+
*/
|
|
448
|
+
export type FClubReplicationInfo = {
|
|
449
|
+
ClubID: bigint; // 0x0000 (0x0008) [uint64]
|
|
450
|
+
bVerified: boolean; // 0x0008 (0x0004) [bool : 0x1]
|
|
451
|
+
EquippedTitle: FName; // 0x000c (0x0008) [FName]
|
|
452
|
+
ClubName: string; // 0x0018 (0x0010) [FString]
|
|
453
|
+
ClubTag: string; // 0x0028 (0x0010) [FString]
|
|
454
|
+
PrimaryColor: number; // 0x0038 (0x0004) [int32]
|
|
455
|
+
AccentColor: number; // 0x003c (0x0004) [int32]
|
|
456
|
+
FirstBadgeTier: EClubBadge; // 0x0040 (0x0001) [EClubBadge]
|
|
457
|
+
SecondBadgeTier: EClubBadge; // 0x0041 (0x0001) [EClubBadge]
|
|
458
|
+
ThirdBadgeTier: EClubBadge; // 0x0042 (0x0001) [EClubBadge]
|
|
459
|
+
};
|
|
460
|
+
|
|
461
|
+
/**
|
|
462
|
+
* ScriptStruct ProjectX.RPC_ClubsRecordStats_X.ClubStatRecord
|
|
463
|
+
* Size: 0x0088
|
|
464
|
+
*/
|
|
465
|
+
export type FClubStatRecord = {
|
|
466
|
+
ClubID: number; // 0x0000 (0x0004) [int32]
|
|
467
|
+
Win: boolean; // 0x0004 (0x0004) [bool : 0x1]
|
|
468
|
+
TimePlayed: number; // 0x0008 (0x0004) [int32]
|
|
469
|
+
Goal: number; // 0x000c (0x0004) [int32]
|
|
470
|
+
AerialGoal: number; // 0x0010 (0x0004) [int32]
|
|
471
|
+
LongGoal: number; // 0x0014 (0x0004) [int32]
|
|
472
|
+
BackwardsGoal: number; // 0x0018 (0x0004) [int32]
|
|
473
|
+
OvertimeGoal: number; // 0x001c (0x0004) [int32]
|
|
474
|
+
TurtleGoal: number; // 0x0020 (0x0004) [int32]
|
|
475
|
+
Assist: number; // 0x0024 (0x0004) [int32]
|
|
476
|
+
Playmaker: number; // 0x0028 (0x0004) [int32]
|
|
477
|
+
Save: number; // 0x002c (0x0004) [int32]
|
|
478
|
+
EpicSave: number; // 0x0030 (0x0004) [int32]
|
|
479
|
+
Savior: number; // 0x0034 (0x0004) [int32]
|
|
480
|
+
Shot: number; // 0x0038 (0x0004) [int32]
|
|
481
|
+
Center: number; // 0x003c (0x0004) [int32]
|
|
482
|
+
Clear: number; // 0x0040 (0x0004) [int32]
|
|
483
|
+
AerialHit: number; // 0x0044 (0x0004) [int32]
|
|
484
|
+
BicycleHit: number; // 0x0048 (0x0004) [int32]
|
|
485
|
+
JuggleHit: number; // 0x004c (0x0004) [int32]
|
|
486
|
+
Demolish: number; // 0x0050 (0x0004) [int32]
|
|
487
|
+
Demolition: number; // 0x0054 (0x0004) [int32]
|
|
488
|
+
FirstTouch: number; // 0x0058 (0x0004) [int32]
|
|
489
|
+
PoolShot: number; // 0x005c (0x0004) [int32]
|
|
490
|
+
LowFive: number; // 0x0060 (0x0004) [int32]
|
|
491
|
+
HighFive: number; // 0x0064 (0x0004) [int32]
|
|
492
|
+
BreakoutDamage: number; // 0x0068 (0x0004) [int32]
|
|
493
|
+
BreakoutDamageLarge: number; // 0x006c (0x0004) [int32]
|
|
494
|
+
HoopsSwishGoal: number; // 0x0070 (0x0004) [int32]
|
|
495
|
+
Players: FUniqueNetId[]; // 0x0078 (0x0010) [TArray<FUniqueNetId>]
|
|
496
|
+
};
|
|
497
|
+
|
|
498
|
+
/**
|
|
499
|
+
* ScriptStruct ProjectX.ParameterDispenser_X.ColorParamPair
|
|
500
|
+
* Size: 0x0018
|
|
501
|
+
*/
|
|
502
|
+
export type FColorParamPair = {
|
|
503
|
+
Key: FName; // 0x0000 (0x0008) [FName]
|
|
504
|
+
Value: FLinearColor; // 0x0008 (0x0010) [FLinearColor]
|
|
505
|
+
};
|
|
506
|
+
|
|
507
|
+
/**
|
|
508
|
+
* ScriptStruct ProjectX.ColorPalette_X.ColorPosition
|
|
509
|
+
* Size: 0x0008
|
|
510
|
+
*/
|
|
511
|
+
export type FColorPosition = {
|
|
512
|
+
Row: number; // 0x0000 (0x0004) [int32]
|
|
513
|
+
Column: number; // 0x0004 (0x0004) [int32]
|
|
514
|
+
};
|
|
515
|
+
|
|
516
|
+
/**
|
|
517
|
+
* ScriptStruct ProjectX.ExplosionHitHandler_X.ContactInformation
|
|
518
|
+
* Size: 0x001C
|
|
519
|
+
*/
|
|
520
|
+
export type FContactInformation = {
|
|
521
|
+
ContactLocation: FVector; // 0x0000 (0x000c) [FVector]
|
|
522
|
+
ContactVelocity: FVector; // 0x000c (0x000c) [FVector]
|
|
523
|
+
ContactTime: number; // 0x0018 (0x0004) [float]
|
|
524
|
+
};
|
|
525
|
+
|
|
526
|
+
/**
|
|
527
|
+
* ScriptStruct ProjectX.ContentConfig_X.ContentPair
|
|
528
|
+
* Size: 0x0020
|
|
529
|
+
*/
|
|
530
|
+
export type FContentPair = {
|
|
531
|
+
KeyName: FName; // 0x0000 (0x0008) [FName]
|
|
532
|
+
Content: string; // 0x0008 (0x0010) [FString]
|
|
533
|
+
Index: FEncryptedKeyIndex; // 0x0018 (0x0004) [FEncryptedKeyIndex]
|
|
534
|
+
bUnreleased: boolean; // 0x001c (0x0004) [bool : 0x1]
|
|
535
|
+
};
|
|
536
|
+
|
|
537
|
+
/**
|
|
538
|
+
* ScriptStruct ProjectX.SystemMetrics_X.CpuMetrics
|
|
539
|
+
* Size: 0x0040
|
|
540
|
+
*/
|
|
541
|
+
export type FCpuMetrics = {
|
|
542
|
+
Type: string; // 0x0000 (0x0010) [FString]
|
|
543
|
+
Desc: string; // 0x0010 (0x0010) [FString]
|
|
544
|
+
Cores: string; // 0x0020 (0x0010) [FString]
|
|
545
|
+
Threads: string; // 0x0030 (0x0010) [FString]
|
|
546
|
+
};
|
|
547
|
+
|
|
548
|
+
/**
|
|
549
|
+
* ScriptStruct ProjectX._Types_X.CrossplayGroup
|
|
550
|
+
* Size: 0x0010
|
|
551
|
+
*/
|
|
552
|
+
export type FCrossplayGroup = {
|
|
553
|
+
Platforms: OnlinePlatform[]; // 0x0000 (0x0010) [TArray<OnlinePlatform>]
|
|
554
|
+
};
|
|
555
|
+
|
|
556
|
+
/**
|
|
557
|
+
* ScriptStruct ProjectX._Types_X.CustomMatchSettings
|
|
558
|
+
* Size: 0x0088
|
|
559
|
+
*/
|
|
560
|
+
export type FCustomMatchSettings = {
|
|
561
|
+
GameTags: string; // 0x0000 (0x0010) [FString]
|
|
562
|
+
MapName: FName; // 0x0010 (0x0008) [FName]
|
|
563
|
+
GameMode: number; // 0x0018 (0x0001) [uint8]
|
|
564
|
+
MaxPlayerCount: number; // 0x001c (0x0004) [int32]
|
|
565
|
+
ServerName: string; // 0x0020 (0x0010) [FString]
|
|
566
|
+
Password: string; // 0x0030 (0x0010) [FString]
|
|
567
|
+
bPublic: boolean; // 0x0040 (0x0004) [bool : 0x1]
|
|
568
|
+
bClubServer: boolean; // 0x0040 (0x0004) [bool : 0x2]
|
|
569
|
+
TeamSettings: FCustomMatchTeamSettings; // 0x0048 (0x0040) [FCustomMatchTeamSettings]
|
|
570
|
+
};
|
|
571
|
+
|
|
572
|
+
/**
|
|
573
|
+
* ScriptStruct ProjectX._Types_X.CustomMatchTeamSettings
|
|
574
|
+
* Size: 0x001C
|
|
575
|
+
*/
|
|
576
|
+
export type FCustomMatchTeamSettings = {
|
|
577
|
+
Name: string; // 0x0000 (0x0010) [FString]
|
|
578
|
+
Colors: FClubColorSet; // 0x0010 (0x0008) [FClubColorSet]
|
|
579
|
+
GameScore: number; // 0x0018 (0x0004) [int32]
|
|
580
|
+
};
|
|
581
|
+
|
|
582
|
+
/**
|
|
583
|
+
* ScriptStruct ProjectX.DDoSService_X.DDoSServicePayloadStruct
|
|
584
|
+
* Size: 0x0038
|
|
585
|
+
*/
|
|
586
|
+
export type FDDoSServicePayloadStruct = {
|
|
587
|
+
Enabled: boolean; // 0x0000 (0x0004) [bool : 0x1]
|
|
588
|
+
Port: string; // 0x0008 (0x0010) [FString]
|
|
589
|
+
iid: string; // 0x0018 (0x0010) [FString]
|
|
590
|
+
ip_addresses: string[]; // 0x0028 (0x0010) [TArray<FString>]
|
|
591
|
+
};
|
|
592
|
+
|
|
593
|
+
/**
|
|
594
|
+
* ScriptStruct ProjectX.GFxEngine_X.DirtyObject
|
|
595
|
+
* Size: 0x0014
|
|
596
|
+
*/
|
|
597
|
+
export type FDirtyObject = {
|
|
598
|
+
Object: UObject; // 0x0000 (0x0008) [UObject*]
|
|
599
|
+
Property: UProperty; // 0x0008 (0x0008) [UProperty*]
|
|
600
|
+
Index: number; // 0x0010 (0x0004) [int32]
|
|
601
|
+
};
|
|
602
|
+
|
|
603
|
+
/**
|
|
604
|
+
* ScriptStruct ProjectX._Types_X.DownloadedImage
|
|
605
|
+
* Size: 0x0018
|
|
606
|
+
*/
|
|
607
|
+
export type FDownloadedImage = {
|
|
608
|
+
URL: string; // 0x0000 (0x0010) [FString]
|
|
609
|
+
Texture: UTexture2DDynamic; // 0x0010 (0x0008) [UTexture2DDynamic*]
|
|
610
|
+
};
|
|
611
|
+
|
|
612
|
+
/**
|
|
613
|
+
* ScriptStruct ProjectX.OnlineGameMatchmaking_X.DSRegionInfo
|
|
614
|
+
* Size: 0x0014
|
|
615
|
+
*/
|
|
616
|
+
export type FDSRegionInfo = {
|
|
617
|
+
Name: string; // 0x0000 (0x0010) [FString]
|
|
618
|
+
Ping: number; // 0x0010 (0x0004) [int32]
|
|
619
|
+
};
|
|
620
|
+
|
|
621
|
+
/**
|
|
622
|
+
* ScriptStruct ProjectX.EngineShare_X.DynamicallyLoadedPackage
|
|
623
|
+
* Size: 0x0020
|
|
624
|
+
*/
|
|
625
|
+
export type FDynamicallyLoadedPackage = {
|
|
626
|
+
Tag: string; // 0x0000 (0x0010) [FString]
|
|
627
|
+
PackageName: string; // 0x0010 (0x0010) [FString]
|
|
628
|
+
};
|
|
629
|
+
|
|
630
|
+
/**
|
|
631
|
+
* ScriptStruct ProjectX.EffectsMap_X.EffectsMapping
|
|
632
|
+
* Size: 0x0010
|
|
633
|
+
*/
|
|
634
|
+
export type FEffectsMapping = {
|
|
635
|
+
PhysicalMaterial: UPhysicalMaterial; // 0x0000 (0x0008) [UPhysicalMaterial*]
|
|
636
|
+
Particle: UParticleSystem; // 0x0008 (0x0008) [UParticleSystem*]
|
|
637
|
+
};
|
|
638
|
+
|
|
639
|
+
/**
|
|
640
|
+
* ScriptStruct ProjectX.EOS_GetAccountsResponse.EOSAccountInfo
|
|
641
|
+
* Size: 0x0038
|
|
642
|
+
*/
|
|
643
|
+
export type FEOSAccountInfo = {
|
|
644
|
+
AccountId: string; // 0x0000 (0x0010) [FString]
|
|
645
|
+
Created: string; // 0x0010 (0x0010) [FString]
|
|
646
|
+
Favorite: boolean; // 0x0020 (0x0004) [bool : 0x1]
|
|
647
|
+
NickName: string; // 0x0028 (0x0010) [FString]
|
|
648
|
+
};
|
|
649
|
+
|
|
650
|
+
/**
|
|
651
|
+
* ScriptStruct ProjectX.OnlinePlayerFriends_X.EpicSocialTaskData
|
|
652
|
+
* Size: 0x0060
|
|
653
|
+
*/
|
|
654
|
+
export type FEpicSocialTaskData = {
|
|
655
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
656
|
+
OnCompleteCallback: FScriptDelegate; // 0x0048 (0x0018) [FScriptDelegate]
|
|
657
|
+
};
|
|
658
|
+
|
|
659
|
+
/**
|
|
660
|
+
* ScriptStruct ProjectX.EpochTimerTick_X.EpochTimer
|
|
661
|
+
* Size: 0x0020
|
|
662
|
+
*/
|
|
663
|
+
export type FEpochTimer = {
|
|
664
|
+
Callback: FScriptDelegate; // 0x0000 (0x0018) [FScriptDelegate]
|
|
665
|
+
EpochTime: bigint; // 0x0018 (0x0008) [uint64]
|
|
666
|
+
};
|
|
667
|
+
|
|
668
|
+
/**
|
|
669
|
+
* ScriptStruct ProjectX.FakeData_X.FakeData1
|
|
670
|
+
* Size: 0x0035
|
|
671
|
+
*/
|
|
672
|
+
export type FFakeData1 = {
|
|
673
|
+
string1: string; // 0x0000 (0x0010) [FString]
|
|
674
|
+
name1: FName; // 0x0010 (0x0008) [FName]
|
|
675
|
+
bool1: boolean; // 0x0018 (0x0004) [bool : 0x1]
|
|
676
|
+
qword1: bigint; // 0x0020 (0x0008) [uint64]
|
|
677
|
+
float1: number; // 0x0028 (0x0004) [float]
|
|
678
|
+
byte1: number; // 0x002c (0x0001) [uint8]
|
|
679
|
+
int1: number; // 0x0030 (0x0004) [int32]
|
|
680
|
+
enum1: FakeDataEnum; // 0x0034 (0x0001) [FakeDataEnum]
|
|
681
|
+
};
|
|
682
|
+
|
|
683
|
+
/**
|
|
684
|
+
* ScriptStruct ProjectX.FakeData_X.FakeData2
|
|
685
|
+
* Size: 0x0090
|
|
686
|
+
*/
|
|
687
|
+
export type FFakeData2 = {
|
|
688
|
+
struct1: FFakeData1; // 0x0000 (0x0038) [FFakeData1]
|
|
689
|
+
string1: string; // 0x0038 (0x0010) [FString]
|
|
690
|
+
name1: FName; // 0x0048 (0x0008) [FName]
|
|
691
|
+
bool1: boolean; // 0x0050 (0x0004) [bool : 0x1]
|
|
692
|
+
qword1: bigint; // 0x0058 (0x0008) [uint64]
|
|
693
|
+
float1: number; // 0x0060 (0x0004) [float]
|
|
694
|
+
byte1: number; // 0x0064 (0x0001) [uint8]
|
|
695
|
+
int1: number; // 0x0068 (0x0004) [int32]
|
|
696
|
+
enum1: FakeDataEnum; // 0x006c (0x0001) [FakeDataEnum]
|
|
697
|
+
array1: FFakeData1[]; // 0x0070 (0x0010) [TArray<FFakeData1>]
|
|
698
|
+
array2: string[]; // 0x0080 (0x0010) [TArray<FString>]
|
|
699
|
+
};
|
|
700
|
+
|
|
701
|
+
/**
|
|
702
|
+
* ScriptStruct ProjectX.FakeData_X.FakeData3
|
|
703
|
+
* Size: 0x0130
|
|
704
|
+
*/
|
|
705
|
+
export type FFakeData3 = {
|
|
706
|
+
array1: FFakeData2[]; // 0x0000 (0x0010) [TArray<FFakeData2>]
|
|
707
|
+
string1: string; // 0x0010 (0x0010) [FString]
|
|
708
|
+
struct1: FFakeData1; // 0x0020 (0x0038) [FFakeData1]
|
|
709
|
+
name1: FName; // 0x0058 (0x0008) [FName]
|
|
710
|
+
array2: FFakeData2[]; // 0x0060 (0x0010) [TArray<FFakeData2>]
|
|
711
|
+
array3: FFakeData2[]; // 0x0070 (0x0010) [TArray<FFakeData2>]
|
|
712
|
+
bool1: boolean; // 0x0080 (0x0004) [bool : 0x1]
|
|
713
|
+
qword1: bigint; // 0x0088 (0x0008) [uint64]
|
|
714
|
+
float1: number; // 0x0090 (0x0004) [float]
|
|
715
|
+
byte1: number; // 0x0094 (0x0001) [uint8]
|
|
716
|
+
int1: number; // 0x0098 (0x0004) [int32]
|
|
717
|
+
enum1: FakeDataEnum; // 0x009c (0x0001) [FakeDataEnum]
|
|
718
|
+
struct2: FFakeData2; // 0x00a0 (0x0090) [FFakeData2]
|
|
719
|
+
};
|
|
720
|
+
|
|
721
|
+
/**
|
|
722
|
+
* ScriptStruct ProjectX.FakeData_X.FakeData4
|
|
723
|
+
* Size: 0x011D
|
|
724
|
+
*/
|
|
725
|
+
export type FFakeData4 = {
|
|
726
|
+
struct2: FFakeData2; // 0x0000 (0x0090) [FFakeData2]
|
|
727
|
+
array1: FFakeData3[]; // 0x0090 (0x0010) [TArray<FFakeData3>]
|
|
728
|
+
struct1: FFakeData1; // 0x00a0 (0x0038) [FFakeData1]
|
|
729
|
+
array2: FFakeData2[]; // 0x00d8 (0x0010) [TArray<FFakeData2>]
|
|
730
|
+
string1: string; // 0x00e8 (0x0010) [FString]
|
|
731
|
+
name1: FName; // 0x00f8 (0x0008) [FName]
|
|
732
|
+
bool1: boolean; // 0x0100 (0x0004) [bool : 0x1]
|
|
733
|
+
qword1: bigint; // 0x0108 (0x0008) [uint64]
|
|
734
|
+
float1: number; // 0x0110 (0x0004) [float]
|
|
735
|
+
byte1: number; // 0x0114 (0x0001) [uint8]
|
|
736
|
+
int1: number; // 0x0118 (0x0004) [int32]
|
|
737
|
+
enum1: FakeDataEnum; // 0x011c (0x0001) [FakeDataEnum]
|
|
738
|
+
};
|
|
739
|
+
|
|
740
|
+
/**
|
|
741
|
+
* ScriptStruct ProjectX.ParameterDispenser_X.FloatParamPair
|
|
742
|
+
* Size: 0x000C
|
|
743
|
+
*/
|
|
744
|
+
export type FFloatParamPair = {
|
|
745
|
+
Key: FName; // 0x0000 (0x0008) [FName]
|
|
746
|
+
Value: number; // 0x0008 (0x0004) [float]
|
|
747
|
+
};
|
|
748
|
+
|
|
749
|
+
/**
|
|
750
|
+
* ScriptStruct ProjectX.FXActor_X.FXActorEventCheck
|
|
751
|
+
* Size: 0x000C
|
|
752
|
+
*/
|
|
753
|
+
export type FFXActorEventCheck = {
|
|
754
|
+
Event: UFXActorEvent_X; // 0x0000 (0x0008) [UFXActorEvent_X*]
|
|
755
|
+
bHasTicked: boolean; // 0x0008 (0x0004) [bool : 0x1]
|
|
756
|
+
};
|
|
757
|
+
|
|
758
|
+
/**
|
|
759
|
+
* ScriptStruct ProjectX.FXActor_X.FXAttachment
|
|
760
|
+
* Size: 0x012C
|
|
761
|
+
*/
|
|
762
|
+
export type FFXAttachment = {
|
|
763
|
+
Name: FName; // 0x0000 (0x0008) [FName]
|
|
764
|
+
SkeletalMeshAttachName: FName; // 0x0008 (0x0008) [FName]
|
|
765
|
+
SocketOrBoneName: FName; // 0x0010 (0x0008) [FName]
|
|
766
|
+
AttachToParameter: FName; // 0x0018 (0x0008) [FName]
|
|
767
|
+
AttachDelay: number; // 0x0020 (0x0004) [float]
|
|
768
|
+
DetachDelay: number; // 0x0024 (0x0004) [float]
|
|
769
|
+
LifeTime: number; // 0x0028 (0x0004) [float]
|
|
770
|
+
Target: EFXComponentTarget; // 0x002c (0x0001) [EFXComponentTarget]
|
|
771
|
+
Component: UActorComponent; // 0x0030 (0x0008) [UActorComponent*]
|
|
772
|
+
AttachAny: UFXActorEvent_X[]; // 0x0038 (0x0010) [TArray<UFXActorEvent_X*>]
|
|
773
|
+
DetachAny: UFXActorEvent_X[]; // 0x0048 (0x0010) [TArray<UFXActorEvent_X*>]
|
|
774
|
+
AttachAll: UFXActorEvent_X[]; // 0x0058 (0x0010) [TArray<UFXActorEvent_X*>]
|
|
775
|
+
RuntimeParameters: URuntimeParameterBase_X[]; // 0x0068 (0x0010) [TArray<URuntimeParameterBase_X*>]
|
|
776
|
+
Traits: UFXAttachmentTraitBase_X[]; // 0x0078 (0x0010) [TArray<UFXAttachmentTraitBase_X*>]
|
|
777
|
+
AttachToParameterActor: FAttachToParameterWithUnlockAxes; // 0x0088 (0x000c) [FAttachToParameterWithUnlockAxes]
|
|
778
|
+
OverrideAttachBehavior: EFXOverrideAttachBehavior; // 0x0094 (0x0001) [EFXOverrideAttachBehavior]
|
|
779
|
+
OverrideAttachLocationOffset: FVector; // 0x0098 (0x000c) [FVector]
|
|
780
|
+
OverrideAttachRotationOffset: FRotator; // 0x00a4 (0x000c) [FRotator]
|
|
781
|
+
bCreateDuplicates: boolean; // 0x00b0 (0x0004) [bool : 0x1]
|
|
782
|
+
bWantsAttachment: boolean; // 0x00b0 (0x0004) [bool : 0x2]
|
|
783
|
+
bInitializedTraits: boolean; // 0x00b0 (0x0004) [bool : 0x4]
|
|
784
|
+
bWarnedMissingSocket: boolean; // 0x00b0 (0x0004) [bool : 0x8]
|
|
785
|
+
bExistingComponent: boolean; // 0x00b0 (0x0004) [bool : 0x10]
|
|
786
|
+
bExistingAttachment: boolean; // 0x00b0 (0x0004) [bool : 0x20]
|
|
787
|
+
AttachedTime: number; // 0x00b4 (0x0004) [float]
|
|
788
|
+
State: EFXComponentState; // 0x00b8 (0x0001) [EFXComponentState]
|
|
789
|
+
WantsAttachmentChangeTime: number; // 0x00bc (0x0004) [float]
|
|
790
|
+
AttachedToMesh: USkeletalMeshComponent; // 0x00c0 (0x0008) [USkeletalMeshComponent*]
|
|
791
|
+
RelativeTransform: FMatrix; // 0x00d0 (0x0040) [FMatrix]
|
|
792
|
+
BoneIndex: number; // 0x0110 (0x0004) [int32]
|
|
793
|
+
AttachToActor: UActor; // 0x0118 (0x0008) [UActor*]
|
|
794
|
+
OffsetToAttachActor: FVector; // 0x0120 (0x000c) [FVector]
|
|
795
|
+
};
|
|
796
|
+
|
|
797
|
+
/**
|
|
798
|
+
* ScriptStruct ProjectX.FXActor_X.FXEventSubscription
|
|
799
|
+
* Size: 0x0038
|
|
800
|
+
*/
|
|
801
|
+
export type FFXEventSubscription = {
|
|
802
|
+
Event: UFXActorEvent_X; // 0x0000 (0x0008) [UFXActorEvent_X*]
|
|
803
|
+
OnPushed: FScriptDelegate; // 0x0008 (0x0018) [FScriptDelegate]
|
|
804
|
+
OnPopped: FScriptDelegate; // 0x0020 (0x0018) [FScriptDelegate]
|
|
805
|
+
};
|
|
806
|
+
|
|
807
|
+
/**
|
|
808
|
+
* ScriptStruct ProjectX.PlayerInput_X.GamepadDeadzoneSettings
|
|
809
|
+
* Size: 0x0010
|
|
810
|
+
*/
|
|
811
|
+
export type FGamepadDeadzoneSettings = {
|
|
812
|
+
Type: EInputPlatformType; // 0x0000 (0x0001) [EInputPlatformType]
|
|
813
|
+
Key: FName; // 0x0004 (0x0008) [FName]
|
|
814
|
+
Deadzone: number; // 0x000c (0x0004) [float]
|
|
815
|
+
};
|
|
816
|
+
|
|
817
|
+
/**
|
|
818
|
+
* ScriptStruct ProjectX.GameSettingConfig_X.GameSettingHidingOverride
|
|
819
|
+
* Size: 0x000C
|
|
820
|
+
*/
|
|
821
|
+
export type FGameSettingHidingOverride = {
|
|
822
|
+
SettingName: FName; // 0x0000 (0x0008) [FName]
|
|
823
|
+
bHidden: boolean; // 0x0008 (0x0004) [bool : 0x1]
|
|
824
|
+
};
|
|
825
|
+
|
|
826
|
+
/**
|
|
827
|
+
* ScriptStruct ProjectX.RPC_GetGameServerPingList2_X.GetGameServerPingListData
|
|
828
|
+
* Size: 0x0058
|
|
829
|
+
*/
|
|
830
|
+
export type FGetGameServerPingListData = {
|
|
831
|
+
Region: string; // 0x0000 (0x0010) [FString]
|
|
832
|
+
IP: string; // 0x0010 (0x0010) [FString]
|
|
833
|
+
Host: string; // 0x0020 (0x0010) [FString]
|
|
834
|
+
Port: number; // 0x0030 (0x0004) [int32]
|
|
835
|
+
Address: string; // 0x0038 (0x0010) [FString]
|
|
836
|
+
SubRegion: string; // 0x0048 (0x0010) [FString]
|
|
837
|
+
};
|
|
838
|
+
|
|
839
|
+
/**
|
|
840
|
+
* ScriptStruct ProjectX.RPC_GetGameServerPingList_X.GetGameServerPingListData_Deprecated
|
|
841
|
+
* Size: 0x0048
|
|
842
|
+
*/
|
|
843
|
+
export type FGetGameServerPingListData_Deprecated = {
|
|
844
|
+
Region: string; // 0x0000 (0x0010) [FString]
|
|
845
|
+
IP: string; // 0x0010 (0x0010) [FString]
|
|
846
|
+
Host: string; // 0x0020 (0x0010) [FString]
|
|
847
|
+
Port: number; // 0x0030 (0x0004) [int32]
|
|
848
|
+
Address: string; // 0x0038 (0x0010) [FString]
|
|
849
|
+
};
|
|
850
|
+
|
|
851
|
+
/**
|
|
852
|
+
* ScriptStruct ProjectX.RPC_GetGenericDataAll_X.GetGenericDataAllData
|
|
853
|
+
* Size: 0x0018
|
|
854
|
+
*/
|
|
855
|
+
export type FGetGenericDataAllData = {
|
|
856
|
+
DataKey: FName; // 0x0000 (0x0008) [FName]
|
|
857
|
+
DataValue: string; // 0x0008 (0x0010) [FString]
|
|
858
|
+
};
|
|
859
|
+
|
|
860
|
+
/**
|
|
861
|
+
* ScriptStruct ProjectX.RPC_GetLeaderboardBase_X.GetLeaderboardBaseData
|
|
862
|
+
* Size: 0x0060
|
|
863
|
+
*/
|
|
864
|
+
export type FGetLeaderboardBaseData = {
|
|
865
|
+
PlayerName: string; // 0x0000 (0x0010) [FString]
|
|
866
|
+
PlayerID: FUniqueNetId; // 0x0010 (0x0048) [FUniqueNetId]
|
|
867
|
+
Value: number; // 0x0058 (0x0004) [int32]
|
|
868
|
+
MMR: number; // 0x005c (0x0004) [float]
|
|
869
|
+
};
|
|
870
|
+
|
|
871
|
+
/**
|
|
872
|
+
* ScriptStruct ProjectX.RPC_GetLeaderboardBase_X.GetLeaderboardPlatformBaseData
|
|
873
|
+
* Size: 0x0020
|
|
874
|
+
*/
|
|
875
|
+
export type FGetLeaderboardPlatformBaseData = {
|
|
876
|
+
Platform: string; // 0x0000 (0x0010) [FString]
|
|
877
|
+
Players: FGetLeaderboardBaseData[]; // 0x0010 (0x0010) [TArray<FGetLeaderboardBaseData>]
|
|
878
|
+
};
|
|
879
|
+
|
|
880
|
+
/**
|
|
881
|
+
* ScriptStruct ProjectX.RPC_GetLeaderboardRankForUsersBase_X.GetLeaderboardRankForUserData
|
|
882
|
+
* Size: 0x0060
|
|
883
|
+
*/
|
|
884
|
+
export type FGetLeaderboardRankForUserData = {
|
|
885
|
+
PlayerName: string; // 0x0000 (0x0010) [FString]
|
|
886
|
+
PlayerID: FUniqueNetId; // 0x0010 (0x0048) [FUniqueNetId]
|
|
887
|
+
Value: number; // 0x0058 (0x0004) [int32]
|
|
888
|
+
MMR: number; // 0x005c (0x0004) [float]
|
|
889
|
+
};
|
|
890
|
+
|
|
891
|
+
/**
|
|
892
|
+
* ScriptStruct ProjectX.RPC_PlayerStorageGet_X.GetPlayerStorageRequestItem
|
|
893
|
+
* Size: 0x0018
|
|
894
|
+
*/
|
|
895
|
+
export type FGetPlayerStorageRequestItem = {
|
|
896
|
+
Category: FName; // 0x0000 (0x0008) [FName]
|
|
897
|
+
Tick: number; // 0x0008 (0x0004) [int32]
|
|
898
|
+
Checksum: number; // 0x000c (0x0004) [int32]
|
|
899
|
+
LocalRef: UObject; // 0x0010 (0x0008) [UObject*]
|
|
900
|
+
};
|
|
901
|
+
|
|
902
|
+
/**
|
|
903
|
+
* ScriptStruct ProjectX.RPC_GetPopulation_X.GetPopulationData
|
|
904
|
+
* Size: 0x0008
|
|
905
|
+
*/
|
|
906
|
+
export type FGetPopulationData = {
|
|
907
|
+
Playlist: number; // 0x0000 (0x0004) [int32]
|
|
908
|
+
PlayerCount: number; // 0x0004 (0x0004) [int32]
|
|
909
|
+
};
|
|
910
|
+
|
|
911
|
+
/**
|
|
912
|
+
* ScriptStruct ProjectX._Types_X.GFxBlurRect
|
|
913
|
+
* Size: 0x0020
|
|
914
|
+
*/
|
|
915
|
+
export type FGFxBlurRect = {
|
|
916
|
+
RectID: string; // 0x0000 (0x0010) [FString]
|
|
917
|
+
TopLeftX: number; // 0x0010 (0x0004) [float]
|
|
918
|
+
TopLeftY: number; // 0x0014 (0x0004) [float]
|
|
919
|
+
BottomRightX: number; // 0x0018 (0x0004) [float]
|
|
920
|
+
BottomRightY: number; // 0x001c (0x0004) [float]
|
|
921
|
+
};
|
|
922
|
+
|
|
923
|
+
/**
|
|
924
|
+
* ScriptStruct ProjectX.GFxDataStore_X.GFxDataStoreColumn
|
|
925
|
+
* Size: 0x000C
|
|
926
|
+
*/
|
|
927
|
+
export type FGFxDataStoreColumn = {
|
|
928
|
+
Type: ASType; // 0x0000 (0x0001) [ASType]
|
|
929
|
+
Name: FName; // 0x0004 (0x0008) [FName]
|
|
930
|
+
};
|
|
931
|
+
|
|
932
|
+
/**
|
|
933
|
+
* ScriptStruct ProjectX.GFxDataStore_X.GFxDataStoreRow
|
|
934
|
+
* Size: 0x0018
|
|
935
|
+
*/
|
|
936
|
+
export type FGFxDataStoreRow = {
|
|
937
|
+
Values: FASValue[]; // 0x0000 (0x0010) [TArray<FASValue>]
|
|
938
|
+
BoundObject: UGFxDataRow_X; // 0x0010 (0x0008) [UGFxDataRow_X*]
|
|
939
|
+
};
|
|
940
|
+
|
|
941
|
+
/**
|
|
942
|
+
* ScriptStruct ProjectX.GFxDataStore_X.GFxDataStoreTable
|
|
943
|
+
* Size: 0x0080
|
|
944
|
+
*/
|
|
945
|
+
export type FGFxDataStoreTable = {
|
|
946
|
+
Name: FName; // 0x0000 (0x0008) [FName]
|
|
947
|
+
Columns: FGFxDataStoreColumn[]; // 0x0008 (0x0010) [TArray<FGFxDataStoreColumn>]
|
|
948
|
+
Rows: FGFxDataStoreRow[]; // 0x0018 (0x0010) [TArray<FGFxDataStoreRow>]
|
|
949
|
+
bLevelTransitionPersistent: boolean; // 0x0028 (0x0004) [bool : 0x1]
|
|
950
|
+
PrimaryKeyMap: FMap_Mirror; // 0x0030 (0x0050) [FMap_Mirror]
|
|
951
|
+
};
|
|
952
|
+
|
|
953
|
+
/**
|
|
954
|
+
* ScriptStruct ProjectX.GFxDataStore_X.GFxDirtyRow
|
|
955
|
+
* Size: 0x0018
|
|
956
|
+
*/
|
|
957
|
+
export type FGFxDirtyRow = {
|
|
958
|
+
RowNum: number; // 0x0000 (0x0004) [int32]
|
|
959
|
+
DirtyValues: FName[]; // 0x0008 (0x0010) [TArray<FName>]
|
|
960
|
+
};
|
|
961
|
+
|
|
962
|
+
/**
|
|
963
|
+
* ScriptStruct ProjectX.GFxDataStore_X.GFxDirtyTable
|
|
964
|
+
* Size: 0x0018
|
|
965
|
+
*/
|
|
966
|
+
export type FGFxDirtyTable = {
|
|
967
|
+
Name: FName; // 0x0000 (0x0008) [FName]
|
|
968
|
+
DirtyRows: FGFxDirtyRow[]; // 0x0008 (0x0010) [TArray<FGFxDirtyRow>]
|
|
969
|
+
};
|
|
970
|
+
|
|
971
|
+
/**
|
|
972
|
+
* ScriptStruct ProjectX._Types_X.HonorDuelChallenge
|
|
973
|
+
* Size: 0x0090
|
|
974
|
+
*/
|
|
975
|
+
export type FHonorDuelChallenge = {
|
|
976
|
+
Challenger: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
977
|
+
Defender: FUniqueNetId; // 0x0048 (0x0048) [FUniqueNetId]
|
|
978
|
+
};
|
|
979
|
+
|
|
980
|
+
/**
|
|
981
|
+
* ScriptStruct ProjectX._Types_X.HTTPRequestCapturedParam
|
|
982
|
+
* Size: 0x0020
|
|
983
|
+
*/
|
|
984
|
+
export type FHTTPRequestCapturedParam = {
|
|
985
|
+
Name: string; // 0x0000 (0x0010) [FString]
|
|
986
|
+
Value: string; // 0x0010 (0x0010) [FString]
|
|
987
|
+
};
|
|
988
|
+
|
|
989
|
+
/**
|
|
990
|
+
* ScriptStruct ProjectX._Types_X.ImageContent
|
|
991
|
+
* Size: 0x0018
|
|
992
|
+
*/
|
|
993
|
+
export type FImageContent = {
|
|
994
|
+
Width: number; // 0x0000 (0x0004) [int32]
|
|
995
|
+
Height: number; // 0x0004 (0x0004) [int32]
|
|
996
|
+
URL: string; // 0x0008 (0x0010) [FString]
|
|
997
|
+
};
|
|
998
|
+
|
|
999
|
+
/**
|
|
1000
|
+
* ScriptStruct ProjectX._Types_X.IntVector3
|
|
1001
|
+
* Size: 0x000C
|
|
1002
|
+
*/
|
|
1003
|
+
export type FIntVector3 = {
|
|
1004
|
+
X: number; // 0x0000 (0x0004) [int32]
|
|
1005
|
+
Y: number; // 0x0004 (0x0004) [int32]
|
|
1006
|
+
Z: number; // 0x0008 (0x0004) [int32]
|
|
1007
|
+
};
|
|
1008
|
+
|
|
1009
|
+
/**
|
|
1010
|
+
* ScriptStruct ProjectX._Types_X.JoinMatchSettings
|
|
1011
|
+
* Size: 0x0020
|
|
1012
|
+
*/
|
|
1013
|
+
export type FJoinMatchSettings = {
|
|
1014
|
+
MatchType: EJoinMatchType; // 0x0000 (0x0001) [EJoinMatchType]
|
|
1015
|
+
PlaylistId: number; // 0x0004 (0x0004) [int32]
|
|
1016
|
+
bFriendJoin: boolean; // 0x0008 (0x0004) [bool : 0x1]
|
|
1017
|
+
bMigration: boolean; // 0x0008 (0x0004) [bool : 0x2]
|
|
1018
|
+
bRankedReconnect: boolean; // 0x0008 (0x0004) [bool : 0x4]
|
|
1019
|
+
Password: string; // 0x0010 (0x0010) [FString]
|
|
1020
|
+
};
|
|
1021
|
+
|
|
1022
|
+
/**
|
|
1023
|
+
* ScriptStruct ProjectX.PlayerInput_X.KeyboardAxisBlendSettings
|
|
1024
|
+
* Size: 0x000C
|
|
1025
|
+
*/
|
|
1026
|
+
export type FKeyboardAxisBlendSettings = {
|
|
1027
|
+
Axis: FName; // 0x0000 (0x0008) [FName]
|
|
1028
|
+
BlendTime: number; // 0x0008 (0x0004) [float]
|
|
1029
|
+
};
|
|
1030
|
+
|
|
1031
|
+
/**
|
|
1032
|
+
* ScriptStruct ProjectX.OnlineGameLeaderboards_X.LeaderboardData
|
|
1033
|
+
* Size: 0x0080
|
|
1034
|
+
*/
|
|
1035
|
+
export type FLeaderboardData = {
|
|
1036
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1037
|
+
UnSanitizedPlayerName: string; // 0x0048 (0x0010) [FString]
|
|
1038
|
+
PlayerName: string; // 0x0058 (0x0010) [FString]
|
|
1039
|
+
bPsyNetUser: boolean; // 0x0068 (0x0004) [bool : 0x1]
|
|
1040
|
+
Rank: number; // 0x006c (0x0004) [int32]
|
|
1041
|
+
Value: number; // 0x0070 (0x0004) [int32]
|
|
1042
|
+
MMR: number; // 0x0074 (0x0004) [float]
|
|
1043
|
+
Division: number; // 0x0078 (0x0004) [int32]
|
|
1044
|
+
bIsPrimaryPlayer: boolean; // 0x007c (0x0004) [bool : 0x1]
|
|
1045
|
+
};
|
|
1046
|
+
|
|
1047
|
+
/**
|
|
1048
|
+
* ScriptStruct ProjectX.LensFlareComponent_X.LensFlareFloatParamCurve
|
|
1049
|
+
* Size: 0x0038
|
|
1050
|
+
*/
|
|
1051
|
+
export type FLensFlareFloatParamCurve = {
|
|
1052
|
+
MaterialParamName: FName; // 0x0000 (0x0008) [FName]
|
|
1053
|
+
MaterialParamIndex: number; // 0x0008 (0x0004) [int32]
|
|
1054
|
+
ValueOverTime: FRawDistributionFloat; // 0x0010 (0x0028) [FRawDistributionFloat]
|
|
1055
|
+
};
|
|
1056
|
+
|
|
1057
|
+
/**
|
|
1058
|
+
* ScriptStruct ProjectX._Types_X.LinkedAccount
|
|
1059
|
+
* Size: 0x0020
|
|
1060
|
+
*/
|
|
1061
|
+
export type FLinkedAccount = {
|
|
1062
|
+
identityProviderId: string; // 0x0000 (0x0010) [FString]
|
|
1063
|
+
AccountId: string; // 0x0010 (0x0010) [FString]
|
|
1064
|
+
};
|
|
1065
|
+
|
|
1066
|
+
/**
|
|
1067
|
+
* ScriptStruct ProjectX.Camera_X.LocationCameraKnock
|
|
1068
|
+
* Size: 0x001C
|
|
1069
|
+
*/
|
|
1070
|
+
export type FLocationCameraKnock = FCameraKnockBase & {
|
|
1071
|
+
Amount: FVector; // 0x0010 (0x000c) [FVector]
|
|
1072
|
+
};
|
|
1073
|
+
|
|
1074
|
+
/**
|
|
1075
|
+
* ScriptStruct ProjectX.LocalizationConfig_X.LocOverride
|
|
1076
|
+
* Size: 0x0040
|
|
1077
|
+
*/
|
|
1078
|
+
export type FLocOverride = {
|
|
1079
|
+
Section: string; // 0x0000 (0x0010) [FString]
|
|
1080
|
+
Key: string; // 0x0010 (0x0010) [FString]
|
|
1081
|
+
Value: string; // 0x0020 (0x0010) [FString]
|
|
1082
|
+
Package: string; // 0x0030 (0x0010) [FString]
|
|
1083
|
+
};
|
|
1084
|
+
|
|
1085
|
+
/**
|
|
1086
|
+
* ScriptStruct ProjectX._Types_X.MapPrefs
|
|
1087
|
+
* Size: 0x0020
|
|
1088
|
+
*/
|
|
1089
|
+
export type FMapPrefs = {
|
|
1090
|
+
Likes: FName[]; // 0x0000 (0x0010) [TArray<FName>]
|
|
1091
|
+
Dislikes: FName[]; // 0x0010 (0x0010) [TArray<FName>]
|
|
1092
|
+
};
|
|
1093
|
+
|
|
1094
|
+
/**
|
|
1095
|
+
* ScriptStruct ProjectX.ServerExploitManager_X.MatchExploitReportData
|
|
1096
|
+
* Size: 0x0058
|
|
1097
|
+
*/
|
|
1098
|
+
export type FMatchExploitReportData = {
|
|
1099
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1100
|
+
ReportedReasons: EExploitType[]; // 0x0048 (0x0010) [TArray<EExploitType>]
|
|
1101
|
+
};
|
|
1102
|
+
|
|
1103
|
+
/**
|
|
1104
|
+
* ScriptStruct ProjectX.MatchInfoWebService_X.MatchInfoJson
|
|
1105
|
+
* Size: 0x0024
|
|
1106
|
+
*/
|
|
1107
|
+
export type FMatchInfoJson = {
|
|
1108
|
+
Guid: string; // 0x0000 (0x0010) [FString]
|
|
1109
|
+
ip_addresses: string[]; // 0x0010 (0x0010) [TArray<FString>]
|
|
1110
|
+
bIsPlaylistProtected: boolean; // 0x0020 (0x0004) [bool : 0x1]
|
|
1111
|
+
};
|
|
1112
|
+
|
|
1113
|
+
/**
|
|
1114
|
+
* ScriptStruct ProjectX.OnlineGameMatchmaking_X.MatchmakingRequestData
|
|
1115
|
+
* Size: 0x0060
|
|
1116
|
+
*/
|
|
1117
|
+
export type FMatchmakingRequestData = {
|
|
1118
|
+
PartyID: string; // 0x0000 (0x0010) [FString]
|
|
1119
|
+
Regions: FDSRegionInfo[]; // 0x0010 (0x0010) [TArray<FDSRegionInfo>]
|
|
1120
|
+
Playlists: number[]; // 0x0020 (0x0010) [TArray<int32>]
|
|
1121
|
+
SecondsSearching: number; // 0x0030 (0x0004) [int32]
|
|
1122
|
+
CurrentServerID: string; // 0x0038 (0x0010) [FString]
|
|
1123
|
+
bDisableCrossPlay: boolean; // 0x0048 (0x0004) [bool : 0x1]
|
|
1124
|
+
bIgnoreSkill: boolean; // 0x0048 (0x0004) [bool : 0x2]
|
|
1125
|
+
PartyMembers: FUniqueNetId[]; // 0x0050 (0x0010) [TArray<FUniqueNetId>]
|
|
1126
|
+
};
|
|
1127
|
+
|
|
1128
|
+
/**
|
|
1129
|
+
* ScriptStruct ProjectX.MatchPlayerData_X.MatchSkillUpdate
|
|
1130
|
+
* Size: 0x0024
|
|
1131
|
+
*/
|
|
1132
|
+
export type FMatchSkillUpdate = {
|
|
1133
|
+
bValid: boolean; // 0x0000 (0x0004) [bool : 0x1]
|
|
1134
|
+
Mu: number; // 0x0004 (0x0004) [float]
|
|
1135
|
+
Sigma: number; // 0x0008 (0x0004) [float]
|
|
1136
|
+
Tier: number; // 0x000c (0x0004) [int32]
|
|
1137
|
+
Division: number; // 0x0010 (0x0004) [int32]
|
|
1138
|
+
PrevMu: number; // 0x0014 (0x0004) [float]
|
|
1139
|
+
PrevSigma: number; // 0x0018 (0x0004) [float]
|
|
1140
|
+
PrevTier: number; // 0x001c (0x0004) [int32]
|
|
1141
|
+
PrevDivision: number; // 0x0020 (0x0004) [int32]
|
|
1142
|
+
};
|
|
1143
|
+
|
|
1144
|
+
/**
|
|
1145
|
+
* ScriptStruct ProjectX.SystemMetrics_X.MemoryMetrics
|
|
1146
|
+
* Size: 0x0004
|
|
1147
|
+
*/
|
|
1148
|
+
export type FMemoryMetrics = {
|
|
1149
|
+
Physical: number; // 0x0000 (0x0004) [float]
|
|
1150
|
+
};
|
|
1151
|
+
|
|
1152
|
+
/**
|
|
1153
|
+
* ScriptStruct ProjectX._Types_X.MessagePayload
|
|
1154
|
+
* Size: 0x0058
|
|
1155
|
+
*/
|
|
1156
|
+
export type FMessagePayload = {
|
|
1157
|
+
SenderId: string; // 0x0000 (0x0010) [FString]
|
|
1158
|
+
RoomId: string; // 0x0010 (0x0010) [FString]
|
|
1159
|
+
MessageText: string; // 0x0020 (0x0010) [FString]
|
|
1160
|
+
TimeStamp: bigint; // 0x0030 (0x0008) [uint64]
|
|
1161
|
+
SequenceNumber: number; // 0x0038 (0x0004) [int32]
|
|
1162
|
+
bWantsToRecord: boolean; // 0x003c (0x0004) [bool : 0x1]
|
|
1163
|
+
ChannelType: EChatChannel; // 0x0040 (0x0001) [EChatChannel]
|
|
1164
|
+
MessageId: string; // 0x0048 (0x0010) [FString]
|
|
1165
|
+
};
|
|
1166
|
+
|
|
1167
|
+
/**
|
|
1168
|
+
* ScriptStruct ProjectX.EOSMetrics_X.MetricEventJsonStruct
|
|
1169
|
+
* Size: 0x0010
|
|
1170
|
+
*/
|
|
1171
|
+
export type FMetricEventJsonStruct = {
|
|
1172
|
+
Events: UEOSMetricEvent_X[]; // 0x0000 (0x0010) [TArray<UEOSMetricEvent_X*>]
|
|
1173
|
+
};
|
|
1174
|
+
|
|
1175
|
+
/**
|
|
1176
|
+
* ScriptStruct ProjectX._Types_X.MetricsEvent
|
|
1177
|
+
* Size: 0x0070
|
|
1178
|
+
*/
|
|
1179
|
+
export type FMetricsEvent = {
|
|
1180
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1181
|
+
TimeSeconds: number; // 0x0048 (0x0004) [float]
|
|
1182
|
+
Version: number; // 0x004c (0x0004) [int32]
|
|
1183
|
+
EventName: string; // 0x0050 (0x0010) [FString]
|
|
1184
|
+
EventData: string; // 0x0060 (0x0010) [FString]
|
|
1185
|
+
};
|
|
1186
|
+
|
|
1187
|
+
/**
|
|
1188
|
+
* ScriptStruct ProjectX._Types_X.MigrationReservationData
|
|
1189
|
+
* Size: 0x0108
|
|
1190
|
+
*/
|
|
1191
|
+
export type FMigrationReservationData = {
|
|
1192
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1193
|
+
EpicID: string; // 0x0048 (0x0010) [FString]
|
|
1194
|
+
EpicPUID: string; // 0x0058 (0x0010) [FString]
|
|
1195
|
+
PlayerName: string; // 0x0068 (0x0010) [FString]
|
|
1196
|
+
PartyID: FUniqueNetId; // 0x0078 (0x0048) [FUniqueNetId]
|
|
1197
|
+
ClubID: bigint; // 0x00c0 (0x0008) [uint64]
|
|
1198
|
+
Status: EReservationStatus; // 0x00c8 (0x0001) [EReservationStatus]
|
|
1199
|
+
bDisableCrossPlay: boolean; // 0x00cc (0x0004) [bool : 0x1]
|
|
1200
|
+
Team: number; // 0x00d0 (0x0001) [uint8]
|
|
1201
|
+
Skill: FSkillRating; // 0x00d4 (0x0008) [FSkillRating]
|
|
1202
|
+
MapLikes: FName[]; // 0x00e0 (0x0010) [TArray<FName>]
|
|
1203
|
+
MapDislikes: FName[]; // 0x00f0 (0x0010) [TArray<FName>]
|
|
1204
|
+
SecurityKey: UNetworkEncryptionKey; // 0x0100 (0x0008) [UNetworkEncryptionKey*]
|
|
1205
|
+
};
|
|
1206
|
+
|
|
1207
|
+
/**
|
|
1208
|
+
* ScriptStruct ProjectX.RPC_GetClubStats_X.MilestoneTitleData
|
|
1209
|
+
* Size: 0x000C
|
|
1210
|
+
*/
|
|
1211
|
+
export type FMilestoneTitleData = {
|
|
1212
|
+
Badge: EClubBadge; // 0x0000 (0x0001) [EClubBadge]
|
|
1213
|
+
Title: FName; // 0x0004 (0x0008) [FName]
|
|
1214
|
+
};
|
|
1215
|
+
|
|
1216
|
+
/**
|
|
1217
|
+
* ScriptStruct ProjectX.OnlineConfig_X.ModifierSubscription
|
|
1218
|
+
* Size: 0x0038
|
|
1219
|
+
*/
|
|
1220
|
+
export type FModifierSubscription = {
|
|
1221
|
+
ObjClass: UObject; // 0x0000 (0x0008) [UObject*]
|
|
1222
|
+
OnAdd: FScriptDelegate; // 0x0008 (0x0018) [FScriptDelegate]
|
|
1223
|
+
OnRemove: FScriptDelegate; // 0x0020 (0x0018) [FScriptDelegate]
|
|
1224
|
+
};
|
|
1225
|
+
|
|
1226
|
+
/**
|
|
1227
|
+
* ScriptStruct ProjectX.ParameterDispenser_X.NameParamPair
|
|
1228
|
+
* Size: 0x0010
|
|
1229
|
+
*/
|
|
1230
|
+
export type FNameParamPair = {
|
|
1231
|
+
Key: FName; // 0x0000 (0x0008) [FName]
|
|
1232
|
+
Value: FName; // 0x0008 (0x0008) [FName]
|
|
1233
|
+
};
|
|
1234
|
+
|
|
1235
|
+
/**
|
|
1236
|
+
* ScriptStruct ProjectX._Types_X.NetStats
|
|
1237
|
+
* Size: 0x000C
|
|
1238
|
+
*/
|
|
1239
|
+
export type FNetStats = {
|
|
1240
|
+
PingMin: number; // 0x0000 (0x0004) [float]
|
|
1241
|
+
Jitter: number; // 0x0004 (0x0004) [float]
|
|
1242
|
+
LossPct: number; // 0x0008 (0x0004) [float]
|
|
1243
|
+
};
|
|
1244
|
+
|
|
1245
|
+
/**
|
|
1246
|
+
* ScriptStruct ProjectX.SystemMetrics_X.NetworkAdapterMetrics
|
|
1247
|
+
* Size: 0x0010
|
|
1248
|
+
*/
|
|
1249
|
+
export type FNetworkAdapterMetrics = {
|
|
1250
|
+
Types: string[]; // 0x0000 (0x0010) [TArray<FString>]
|
|
1251
|
+
};
|
|
1252
|
+
|
|
1253
|
+
/**
|
|
1254
|
+
* ScriptStruct ProjectX._Types_X.NewsContent
|
|
1255
|
+
* Size: 0x00F4
|
|
1256
|
+
*/
|
|
1257
|
+
export type FNewsContent = {
|
|
1258
|
+
Title: string; // 0x0000 (0x0010) [FString]
|
|
1259
|
+
DescriptionHeader: string; // 0x0010 (0x0010) [FString]
|
|
1260
|
+
Description: string; // 0x0020 (0x0010) [FString]
|
|
1261
|
+
SubDescriptionHeader: string; // 0x0030 (0x0010) [FString]
|
|
1262
|
+
WebURL: string; // 0x0040 (0x0010) [FString]
|
|
1263
|
+
CarName: string; // 0x0050 (0x0010) [FString]
|
|
1264
|
+
Image: FImageContent[]; // 0x0060 (0x0010) [TArray<FImageContent>]
|
|
1265
|
+
Thumbnail: FImageContent[]; // 0x0070 (0x0010) [TArray<FImageContent>]
|
|
1266
|
+
StartTime: string; // 0x0080 (0x0010) [FString]
|
|
1267
|
+
LinkType: string; // 0x0090 (0x0010) [FString]
|
|
1268
|
+
InfoURL: string; // 0x00a0 (0x0010) [FString]
|
|
1269
|
+
InfoButtonText: string; // 0x00b0 (0x0010) [FString]
|
|
1270
|
+
EndTime: string; // 0x00c0 (0x0010) [FString]
|
|
1271
|
+
StartTimeEpoch: bigint; // 0x00d0 (0x0008) [uint64]
|
|
1272
|
+
EndTimeEpoch: bigint; // 0x00d8 (0x0008) [uint64]
|
|
1273
|
+
ShopID: number; // 0x00e0 (0x0004) [int32]
|
|
1274
|
+
ShopItemID: number; // 0x00e4 (0x0004) [int32]
|
|
1275
|
+
ProductID: number; // 0x00e8 (0x0004) [int32]
|
|
1276
|
+
CategoryID: number; // 0x00ec (0x0004) [int32]
|
|
1277
|
+
PlaylistId: number; // 0x00f0 (0x0004) [int32]
|
|
1278
|
+
};
|
|
1279
|
+
|
|
1280
|
+
/**
|
|
1281
|
+
* ScriptStruct ProjectX._Types_X.NewsPlacement
|
|
1282
|
+
* Size: 0x0010
|
|
1283
|
+
*/
|
|
1284
|
+
export type FNewsPlacement = {
|
|
1285
|
+
TrackingId: string; // 0x0000 (0x0010) [FString]
|
|
1286
|
+
};
|
|
1287
|
+
|
|
1288
|
+
/**
|
|
1289
|
+
* ScriptStruct ProjectX._Types_X.NewsTileData
|
|
1290
|
+
* Size: 0x0108
|
|
1291
|
+
*/
|
|
1292
|
+
export type FNewsTileData = {
|
|
1293
|
+
ContentFields: FNewsContent; // 0x0000 (0x00f8) [FNewsContent]
|
|
1294
|
+
Placements: FNewsPlacement[]; // 0x00f8 (0x0010) [TArray<FNewsPlacement>]
|
|
1295
|
+
};
|
|
1296
|
+
|
|
1297
|
+
/**
|
|
1298
|
+
* ScriptStruct ProjectX.OnlineMessageComponent_X.OnlineMessageHandler
|
|
1299
|
+
* Size: 0x0018
|
|
1300
|
+
*/
|
|
1301
|
+
export type FOnlineMessageHandler = {
|
|
1302
|
+
MessageClass: UObject; // 0x0000 (0x0008) [UObject*]
|
|
1303
|
+
Delegates: FScriptDelegate[]; // 0x0008 (0x0010) [TArray<FScriptDelegate>]
|
|
1304
|
+
};
|
|
1305
|
+
|
|
1306
|
+
/**
|
|
1307
|
+
* ScriptStruct ProjectX.PsyNetService_PersonaInfo_X.OnlinePersonaData
|
|
1308
|
+
* Size: 0x0078
|
|
1309
|
+
*/
|
|
1310
|
+
export type FOnlinePersonaData = {
|
|
1311
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1312
|
+
PlayerName: string; // 0x0048 (0x0010) [FString]
|
|
1313
|
+
PresenceInfo: string; // 0x0058 (0x0010) [FString]
|
|
1314
|
+
PresenceState: string; // 0x0068 (0x0010) [FString]
|
|
1315
|
+
};
|
|
1316
|
+
|
|
1317
|
+
/**
|
|
1318
|
+
* ScriptStruct ProjectX.AddReservationMessagePublic_X.OnlinePlayerMapPrefs
|
|
1319
|
+
* Size: 0x0068
|
|
1320
|
+
*/
|
|
1321
|
+
export type FOnlinePlayerMapPrefs = {
|
|
1322
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1323
|
+
MapLikes: FName[]; // 0x0048 (0x0010) [TArray<FName>]
|
|
1324
|
+
MapDislikes: FName[]; // 0x0058 (0x0010) [TArray<FName>]
|
|
1325
|
+
};
|
|
1326
|
+
|
|
1327
|
+
/**
|
|
1328
|
+
* ScriptStruct ProjectX.OnlinePlayerStorageSync_X.OnlinePlayerStorageSyncRequest
|
|
1329
|
+
* Size: 0x000D
|
|
1330
|
+
*/
|
|
1331
|
+
export type FOnlinePlayerStorageSyncRequest = {
|
|
1332
|
+
DataObj: UObject; // 0x0000 (0x0008) [UObject*]
|
|
1333
|
+
ClientTick: number; // 0x0008 (0x0004) [int32]
|
|
1334
|
+
Encoding: EObjectEncoding; // 0x000c (0x0001) [EObjectEncoding]
|
|
1335
|
+
};
|
|
1336
|
+
|
|
1337
|
+
/**
|
|
1338
|
+
* ScriptStruct ProjectX.OnlinePlayerStorageSync_X.OnlinePlayerStorageSyncResult
|
|
1339
|
+
* Size: 0x001D
|
|
1340
|
+
*/
|
|
1341
|
+
export type FOnlinePlayerStorageSyncResult = {
|
|
1342
|
+
DataClass: UObject; // 0x0000 (0x0008) [UObject*]
|
|
1343
|
+
RemoteData: UObject; // 0x0008 (0x0008) [UObject*]
|
|
1344
|
+
ServerTick: number; // 0x0010 (0x0004) [int32]
|
|
1345
|
+
Checksum: number; // 0x0014 (0x0004) [int32]
|
|
1346
|
+
bChecksumMatch: boolean; // 0x0018 (0x0004) [bool : 0x1]
|
|
1347
|
+
Encoding: EObjectEncoding; // 0x001c (0x0001) [EObjectEncoding]
|
|
1348
|
+
};
|
|
1349
|
+
|
|
1350
|
+
/**
|
|
1351
|
+
* ScriptStruct ProjectX._Types_X.OnlineStatus
|
|
1352
|
+
* Size: 0x0059
|
|
1353
|
+
*/
|
|
1354
|
+
export type FOnlineStatus = {
|
|
1355
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1356
|
+
PresenceInfo: string; // 0x0048 (0x0010) [FString]
|
|
1357
|
+
PresenceState: EOnlineFriendState; // 0x0058 (0x0001) [EOnlineFriendState]
|
|
1358
|
+
};
|
|
1359
|
+
|
|
1360
|
+
/**
|
|
1361
|
+
* ScriptStruct ProjectX._SharedHelpers.Orientation
|
|
1362
|
+
* Size: 0x0018
|
|
1363
|
+
*/
|
|
1364
|
+
export type FOrientation = {
|
|
1365
|
+
Location: FVector; // 0x0000 (0x000c) [FVector]
|
|
1366
|
+
Rotation: FRotator; // 0x000c (0x000c) [FRotator]
|
|
1367
|
+
};
|
|
1368
|
+
|
|
1369
|
+
/**
|
|
1370
|
+
* ScriptStruct ProjectX.SystemMetrics_X.OSMetrics
|
|
1371
|
+
* Size: 0x0020
|
|
1372
|
+
*/
|
|
1373
|
+
export type FOSMetrics = {
|
|
1374
|
+
Type: string; // 0x0000 (0x0010) [FString]
|
|
1375
|
+
Bits: string; // 0x0010 (0x0010) [FString]
|
|
1376
|
+
};
|
|
1377
|
+
|
|
1378
|
+
/**
|
|
1379
|
+
* ScriptStruct ProjectX.OnlineGameReservations_AssignTeamsByParty_X.PartyByTeam
|
|
1380
|
+
* Size: 0x0050
|
|
1381
|
+
*/
|
|
1382
|
+
export type FPartyByTeam = {
|
|
1383
|
+
PartyID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1384
|
+
Team: number; // 0x0048 (0x0001) [uint8]
|
|
1385
|
+
Size: number; // 0x004c (0x0004) [int32]
|
|
1386
|
+
};
|
|
1387
|
+
|
|
1388
|
+
/**
|
|
1389
|
+
* ScriptStruct ProjectX.PsyNetService_PartyJoinRequestAccepted_X.PartyData
|
|
1390
|
+
* Size: 0x0080
|
|
1391
|
+
*/
|
|
1392
|
+
export type FPartyData = {
|
|
1393
|
+
Info: FPsyNetPartyInfo; // 0x0000 (0x0070) [FPsyNetPartyInfo]
|
|
1394
|
+
Members: FPsyNetPartyMember[]; // 0x0070 (0x0010) [TArray<FPsyNetPartyMember>]
|
|
1395
|
+
};
|
|
1396
|
+
|
|
1397
|
+
/**
|
|
1398
|
+
* ScriptStruct ProjectX.Parties_X.PartyInvite
|
|
1399
|
+
* Size: 0x0078
|
|
1400
|
+
*/
|
|
1401
|
+
export type FPartyInvite = {
|
|
1402
|
+
UserId: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1403
|
+
Username: string; // 0x0048 (0x0010) [FString]
|
|
1404
|
+
PartyID: string; // 0x0058 (0x0010) [FString]
|
|
1405
|
+
InvitedAt: bigint; // 0x0068 (0x0008) [uint64]
|
|
1406
|
+
AcceptedAt: bigint; // 0x0070 (0x0008) [uint64]
|
|
1407
|
+
};
|
|
1408
|
+
|
|
1409
|
+
/**
|
|
1410
|
+
* ScriptStruct ProjectX._Types_X.PartyJoinMatchSettings
|
|
1411
|
+
* Size: 0x0058
|
|
1412
|
+
*/
|
|
1413
|
+
export type FPartyJoinMatchSettings = {
|
|
1414
|
+
ServerName: string; // 0x0000 (0x0010) [FString]
|
|
1415
|
+
PlaylistId: number; // 0x0010 (0x0004) [int32]
|
|
1416
|
+
bFriendJoin: boolean; // 0x0014 (0x0004) [bool : 0x1]
|
|
1417
|
+
CustomPassword: string; // 0x0018 (0x0010) [FString]
|
|
1418
|
+
ReservationID: string; // 0x0028 (0x0010) [FString]
|
|
1419
|
+
JoinName: string; // 0x0038 (0x0010) [FString]
|
|
1420
|
+
JoinPassword: string; // 0x0048 (0x0010) [FString]
|
|
1421
|
+
};
|
|
1422
|
+
|
|
1423
|
+
/**
|
|
1424
|
+
* ScriptStruct ProjectX._Types_X.PartyMember
|
|
1425
|
+
* Size: 0x0180
|
|
1426
|
+
*/
|
|
1427
|
+
export type FPartyMember = {
|
|
1428
|
+
PrimaryMemberId: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1429
|
+
MemberId: FUniqueNetId; // 0x0048 (0x0048) [FUniqueNetId]
|
|
1430
|
+
MemberName: string; // 0x0090 (0x0010) [FString]
|
|
1431
|
+
MatchmakeRestrictions: number; // 0x00a0 (0x0004) [int32]
|
|
1432
|
+
LocalControllerId: number; // 0x00a4 (0x0004) [int32]
|
|
1433
|
+
bDataLoaded: boolean; // 0x00a8 (0x0004) [bool : 0x1]
|
|
1434
|
+
XpLevel: number; // 0x00ac (0x0004) [int32]
|
|
1435
|
+
bCompletedChallenges: boolean; // 0x00b0 (0x0004) [bool : 0x1]
|
|
1436
|
+
bLegacyPlayer: boolean; // 0x00b0 (0x0004) [bool : 0x2]
|
|
1437
|
+
bGuestAccount: boolean; // 0x00b0 (0x0004) [bool : 0x4]
|
|
1438
|
+
CrossChatState: ECrossPlatformChatState; // 0x00b4 (0x0001) [ECrossPlatformChatState]
|
|
1439
|
+
bDisableCrossPlay: boolean; // 0x00b8 (0x0004) [bool : 0x1]
|
|
1440
|
+
bTradingEnabled: boolean; // 0x00b8 (0x0004) [bool : 0x2]
|
|
1441
|
+
TradingMemberId: FUniqueNetId; // 0x00c0 (0x0048) [FUniqueNetId]
|
|
1442
|
+
TradeId: FGuid; // 0x0108 (0x0010) [FGuid]
|
|
1443
|
+
bReadyToLockTrade: boolean; // 0x0118 (0x0004) [bool : 0x1]
|
|
1444
|
+
bReadyToConfirmTrade: boolean; // 0x0118 (0x0004) [bool : 0x2]
|
|
1445
|
+
Server: FPartyMemberServer; // 0x0120 (0x0048) [FPartyMemberServer]
|
|
1446
|
+
PlatformParty: FUniqueLobbyId; // 0x0168 (0x0010) [FUniqueLobbyId]
|
|
1447
|
+
VoiceReportingLevel: EChatReportingLevel; // 0x0178 (0x0001) [EChatReportingLevel]
|
|
1448
|
+
TextReportingLevel: EChatReportingLevel; // 0x0179 (0x0001) [EChatReportingLevel]
|
|
1449
|
+
bAntiCheatEnabled: boolean; // 0x017c (0x0004) [bool : 0x1]
|
|
1450
|
+
};
|
|
1451
|
+
|
|
1452
|
+
/**
|
|
1453
|
+
* ScriptStruct ProjectX._Types_X.PartyMemberServer
|
|
1454
|
+
* Size: 0x0044
|
|
1455
|
+
*/
|
|
1456
|
+
export type FPartyMemberServer = {
|
|
1457
|
+
ServerName: string; // 0x0000 (0x0010) [FString]
|
|
1458
|
+
CustomPassword: string; // 0x0010 (0x0010) [FString]
|
|
1459
|
+
JoinName: string; // 0x0020 (0x0010) [FString]
|
|
1460
|
+
JoinPassword: string; // 0x0030 (0x0010) [FString]
|
|
1461
|
+
PlaylistId: number; // 0x0040 (0x0004) [int32]
|
|
1462
|
+
};
|
|
1463
|
+
|
|
1464
|
+
/**
|
|
1465
|
+
* ScriptStruct ProjectX.RPC_GetPartyMemberSkill_X.PartyMemberSkill
|
|
1466
|
+
* Size: 0x0058
|
|
1467
|
+
*/
|
|
1468
|
+
export type FPartyMemberSkill = {
|
|
1469
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1470
|
+
Skills: FPlayerSkillRating[]; // 0x0048 (0x0010) [TArray<FPlayerSkillRating>]
|
|
1471
|
+
};
|
|
1472
|
+
|
|
1473
|
+
/**
|
|
1474
|
+
* ScriptStruct ProjectX.PartyMetrics_X.PartyMetricsData
|
|
1475
|
+
* Size: 0x000C
|
|
1476
|
+
*/
|
|
1477
|
+
export type FPartyMetricsData = {
|
|
1478
|
+
LocalPlayers: number; // 0x0000 (0x0004) [int32]
|
|
1479
|
+
RemotePlayers: number; // 0x0004 (0x0004) [int32]
|
|
1480
|
+
bPartyLeader: boolean; // 0x0008 (0x0004) [bool : 0x1]
|
|
1481
|
+
};
|
|
1482
|
+
|
|
1483
|
+
/**
|
|
1484
|
+
* ScriptStruct ProjectX.GameInfo_X.PauserData
|
|
1485
|
+
* Size: 0x000C
|
|
1486
|
+
*/
|
|
1487
|
+
export type FPauserData = {
|
|
1488
|
+
PC: UPlayerController; // 0x0000 (0x0008) [UPlayerController*]
|
|
1489
|
+
PauseNum: number; // 0x0008 (0x0004) [int32]
|
|
1490
|
+
};
|
|
1491
|
+
|
|
1492
|
+
/**
|
|
1493
|
+
* ScriptStruct ProjectX.PsyNetChannel_X.PendingChannelService
|
|
1494
|
+
* Size: 0x001C
|
|
1495
|
+
*/
|
|
1496
|
+
export type FPendingChannelService = {
|
|
1497
|
+
Service: UPsyNetClientService_X; // 0x0000 (0x0008) [UPsyNetClientService_X*]
|
|
1498
|
+
MessageId: number; // 0x0008 (0x0004) [int32]
|
|
1499
|
+
Task: UAsyncTask; // 0x0010 (0x0008) [UAsyncTask*]
|
|
1500
|
+
ReceiveTime: number; // 0x0018 (0x0004) [float]
|
|
1501
|
+
};
|
|
1502
|
+
|
|
1503
|
+
/**
|
|
1504
|
+
* ScriptStruct ProjectX.PartyMessageQueue_X.PendingMessage
|
|
1505
|
+
* Size: 0x0020
|
|
1506
|
+
*/
|
|
1507
|
+
export type FPendingMessage = {
|
|
1508
|
+
LobbyId: FUniqueLobbyId; // 0x0000 (0x0010) [FUniqueLobbyId]
|
|
1509
|
+
Messages: string[]; // 0x0010 (0x0010) [TArray<FString>]
|
|
1510
|
+
};
|
|
1511
|
+
|
|
1512
|
+
/**
|
|
1513
|
+
* ScriptStruct ProjectX.OnlineGameReservations_X.PendingReservation
|
|
1514
|
+
* Size: 0x0018
|
|
1515
|
+
*/
|
|
1516
|
+
export type FPendingReservation = {
|
|
1517
|
+
Connection: UIReservationConnection_X; // 0x0000 (0x0010) [UIReservationConnection_X*]
|
|
1518
|
+
Message: UAddReservationMessage_X; // 0x0010 (0x0008) [UAddReservationMessage_X*]
|
|
1519
|
+
};
|
|
1520
|
+
|
|
1521
|
+
/**
|
|
1522
|
+
* ScriptStruct ProjectX.RPCQueue_X.PendingRPC
|
|
1523
|
+
* Size: 0x0020
|
|
1524
|
+
*/
|
|
1525
|
+
export type FPendingRPC = {
|
|
1526
|
+
RPC: URPC_X; // 0x0000 (0x0008) [URPC_X*]
|
|
1527
|
+
UniqueId: number; // 0x0008 (0x0004) [int32]
|
|
1528
|
+
CreationTime: number; // 0x000c (0x0004) [float]
|
|
1529
|
+
Failures: number; // 0x0010 (0x0004) [int32]
|
|
1530
|
+
NextSendTime: number; // 0x0014 (0x0004) [float]
|
|
1531
|
+
PendingError: UError; // 0x0018 (0x0008) [UError*]
|
|
1532
|
+
};
|
|
1533
|
+
|
|
1534
|
+
/**
|
|
1535
|
+
* ScriptStruct ProjectX.OnlinePlayerStorageQueue_X.PendingStorage
|
|
1536
|
+
* Size: 0x0014
|
|
1537
|
+
*/
|
|
1538
|
+
export type FPendingStorage = {
|
|
1539
|
+
Data: UObject; // 0x0000 (0x0008) [UObject*]
|
|
1540
|
+
DataClass: UObject; // 0x0008 (0x0008) [UObject*]
|
|
1541
|
+
Tick: number; // 0x0010 (0x0004) [int32]
|
|
1542
|
+
};
|
|
1543
|
+
|
|
1544
|
+
/**
|
|
1545
|
+
* ScriptStruct ProjectX.ClientNetMetrics_X.PingStats
|
|
1546
|
+
* Size: 0x0010
|
|
1547
|
+
*/
|
|
1548
|
+
export type FPingStats = {
|
|
1549
|
+
Min: number; // 0x0000 (0x0004) [float]
|
|
1550
|
+
Max: number; // 0x0004 (0x0004) [float]
|
|
1551
|
+
Average: number; // 0x0008 (0x0004) [float]
|
|
1552
|
+
Median: number; // 0x000c (0x0004) [float]
|
|
1553
|
+
};
|
|
1554
|
+
|
|
1555
|
+
/**
|
|
1556
|
+
* ScriptStruct ProjectX._Types_X.PlayerBinding
|
|
1557
|
+
* Size: 0x002C
|
|
1558
|
+
*/
|
|
1559
|
+
export type FPlayerBinding = {
|
|
1560
|
+
Action: FName; // 0x0000 (0x0008) [FName]
|
|
1561
|
+
Key: FName; // 0x0008 (0x0008) [FName]
|
|
1562
|
+
AxisSign: EAxisSign; // 0x0010 (0x0001) [EAxisSign]
|
|
1563
|
+
PressType: EButtonPressType; // 0x0011 (0x0001) [EButtonPressType]
|
|
1564
|
+
Speed: number; // 0x0014 (0x0004) [float]
|
|
1565
|
+
bRequired: boolean; // 0x0018 (0x0004) [bool : 0x1]
|
|
1566
|
+
Remappable: ERemappable; // 0x001c (0x0001) [ERemappable]
|
|
1567
|
+
PressedTime: number; // 0x0020 (0x0004) [float]
|
|
1568
|
+
ReleasedTime: number; // 0x0024 (0x0004) [float]
|
|
1569
|
+
bTapped: boolean; // 0x0028 (0x0004) [bool : 0x1]
|
|
1570
|
+
bToggled: boolean; // 0x0028 (0x0004) [bool : 0x2]
|
|
1571
|
+
};
|
|
1572
|
+
|
|
1573
|
+
/**
|
|
1574
|
+
* ScriptStruct ProjectX.BlockStatusReporter_X.PlayerBlockListenData
|
|
1575
|
+
* Size: 0x0028
|
|
1576
|
+
*/
|
|
1577
|
+
export type FPlayerBlockListenData = {
|
|
1578
|
+
EpicID: string; // 0x0000 (0x0010) [FString]
|
|
1579
|
+
Callback: FScriptDelegate; // 0x0010 (0x0018) [FScriptDelegate]
|
|
1580
|
+
};
|
|
1581
|
+
|
|
1582
|
+
/**
|
|
1583
|
+
* ScriptStruct ProjectX.LocalClubData_X.PlayerClubPair
|
|
1584
|
+
* Size: 0x0050
|
|
1585
|
+
*/
|
|
1586
|
+
export type FPlayerClubPair = {
|
|
1587
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1588
|
+
ClubID: bigint; // 0x0048 (0x0008) [uint64]
|
|
1589
|
+
};
|
|
1590
|
+
|
|
1591
|
+
/**
|
|
1592
|
+
* ScriptStruct ProjectX.OnlineClubProvider_X.PlayerClubSyncResult
|
|
1593
|
+
* Size: 0x0050
|
|
1594
|
+
*/
|
|
1595
|
+
export type FPlayerClubSyncResult = {
|
|
1596
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1597
|
+
Error: UError; // 0x0048 (0x0008) [UError*]
|
|
1598
|
+
};
|
|
1599
|
+
|
|
1600
|
+
/**
|
|
1601
|
+
* ScriptStruct ProjectX.OnlineGameDLC_X.PlayerDLCInfo
|
|
1602
|
+
* Size: 0x0074
|
|
1603
|
+
*/
|
|
1604
|
+
export type FPlayerDLCInfo = {
|
|
1605
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1606
|
+
DLCs: FSteamPlayerDLCOwnershipState[]; // 0x0048 (0x0010) [TArray<FSteamPlayerDLCOwnershipState>]
|
|
1607
|
+
ValidationReadyDelegate: FScriptDelegate; // 0x0058 (0x0018) [FScriptDelegate]
|
|
1608
|
+
TimeLastOwnershipRequest: number; // 0x0070 (0x0004) [float]
|
|
1609
|
+
};
|
|
1610
|
+
|
|
1611
|
+
/**
|
|
1612
|
+
* ScriptStruct ProjectX._Types_X.PlayerPermissions
|
|
1613
|
+
* Size: 0x0010
|
|
1614
|
+
*/
|
|
1615
|
+
export type FPlayerPermissions = {
|
|
1616
|
+
TextChat: EChatPermissionLevel; // 0x0000 (0x0001) [EChatPermissionLevel]
|
|
1617
|
+
VoiceChat: EChatPermissionLevel; // 0x0001 (0x0001) [EChatPermissionLevel]
|
|
1618
|
+
Trade: ETradePermissionLevel; // 0x0002 (0x0001) [ETradePermissionLevel]
|
|
1619
|
+
bRequirePinForFriends: boolean; // 0x0004 (0x0004) [bool : 0x1]
|
|
1620
|
+
bItemShopNotificationsAllowed: boolean; // 0x0004 (0x0004) [bool : 0x2]
|
|
1621
|
+
VoiceReporting: EChatReportingLevel; // 0x0008 (0x0001) [EChatReportingLevel]
|
|
1622
|
+
TextReporting: EChatReportingLevel; // 0x0009 (0x0001) [EChatReportingLevel]
|
|
1623
|
+
bFilterMatureLanguage: boolean; // 0x000c (0x0004) [bool : 0x1]
|
|
1624
|
+
bEnableCPCCShowRoWModal: boolean; // 0x000c (0x0004) [bool : 0x2]
|
|
1625
|
+
bEnableCPCCShowRealPrice: boolean; // 0x000c (0x0004) [bool : 0x4]
|
|
1626
|
+
bAllowTargetedNewsSetting_Functional: boolean; // 0x000c (0x0004) [bool : 0x8]
|
|
1627
|
+
bAllowTargetedNewsSetting_Marketing: boolean; // 0x000c (0x0004) [bool : 0x10]
|
|
1628
|
+
bAllowTargetedNewsSetting_Experience: boolean; // 0x000c (0x0004) [bool : 0x20]
|
|
1629
|
+
};
|
|
1630
|
+
|
|
1631
|
+
/**
|
|
1632
|
+
* ScriptStruct ProjectX._Types_X.PlayerPermissionsList
|
|
1633
|
+
* Size: 0x0058
|
|
1634
|
+
*/
|
|
1635
|
+
export type FPlayerPermissionsList = {
|
|
1636
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1637
|
+
Permissions: EOnlinePlayerPermission[]; // 0x0048 (0x0010) [TArray<EOnlinePlayerPermission>]
|
|
1638
|
+
};
|
|
1639
|
+
|
|
1640
|
+
/**
|
|
1641
|
+
* ScriptStruct ProjectX.RPC_GetPlayerPermissions_X.PlayerPermissionsReponse
|
|
1642
|
+
* Size: 0x0058
|
|
1643
|
+
*/
|
|
1644
|
+
export type FPlayerPermissionsReponse = {
|
|
1645
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1646
|
+
Permissions: FName[]; // 0x0048 (0x0010) [TArray<FName>]
|
|
1647
|
+
};
|
|
1648
|
+
|
|
1649
|
+
/**
|
|
1650
|
+
* ScriptStruct ProjectX._Types_X.PlayerSeasonRewardProgress
|
|
1651
|
+
* Size: 0x0050
|
|
1652
|
+
*/
|
|
1653
|
+
export type FPlayerSeasonRewardProgress = {
|
|
1654
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1655
|
+
SeasonLevel: number; // 0x0048 (0x0004) [int32]
|
|
1656
|
+
SeasonLevelWins: number; // 0x004c (0x0004) [int32]
|
|
1657
|
+
};
|
|
1658
|
+
|
|
1659
|
+
/**
|
|
1660
|
+
* ScriptStruct ProjectX._Types_X.SkillRating
|
|
1661
|
+
* Size: 0x0008
|
|
1662
|
+
*/
|
|
1663
|
+
export type FSkillRating = {
|
|
1664
|
+
Mu: number; // 0x0000 (0x0004) [float]
|
|
1665
|
+
Sigma: number; // 0x0004 (0x0004) [float]
|
|
1666
|
+
};
|
|
1667
|
+
|
|
1668
|
+
/**
|
|
1669
|
+
* ScriptStruct ProjectX._Types_X.TierSkillRating
|
|
1670
|
+
* Size: 0x0020
|
|
1671
|
+
*/
|
|
1672
|
+
export type FTierSkillRating = FSkillRating & {
|
|
1673
|
+
Tier: number; // 0x0008 (0x0004) [int32]
|
|
1674
|
+
Division: number; // 0x000c (0x0004) [int32]
|
|
1675
|
+
MatchesPlayed: number; // 0x0010 (0x0004) [int32]
|
|
1676
|
+
PlacementMatchesPlayed: number; // 0x0014 (0x0004) [int32]
|
|
1677
|
+
WinStreak: number; // 0x0018 (0x0004) [int32]
|
|
1678
|
+
MMR: number; // 0x001c (0x0004) [float]
|
|
1679
|
+
};
|
|
1680
|
+
|
|
1681
|
+
/**
|
|
1682
|
+
* ScriptStruct ProjectX._Types_X.PlaylistSkillRating
|
|
1683
|
+
* Size: 0x0024
|
|
1684
|
+
*/
|
|
1685
|
+
export type FPlaylistSkillRating = FTierSkillRating & {
|
|
1686
|
+
Playlist: number; // 0x0020 (0x0004) [int32]
|
|
1687
|
+
};
|
|
1688
|
+
|
|
1689
|
+
/**
|
|
1690
|
+
* ScriptStruct ProjectX._Types_X.PlayerSkillRating
|
|
1691
|
+
* Size: 0x0070
|
|
1692
|
+
*/
|
|
1693
|
+
export type FPlayerSkillRating = FPlaylistSkillRating & {
|
|
1694
|
+
PlayerID: FUniqueNetId; // 0x0028 (0x0048) [FUniqueNetId]
|
|
1695
|
+
};
|
|
1696
|
+
|
|
1697
|
+
/**
|
|
1698
|
+
* ScriptStruct ProjectX._Types_X.PlayerTitleCategory
|
|
1699
|
+
* Size: 0x0028
|
|
1700
|
+
*/
|
|
1701
|
+
export type FPlayerTitleCategory = {
|
|
1702
|
+
Id: FName; // 0x0000 (0x0008) [FName]
|
|
1703
|
+
Color: string; // 0x0008 (0x0010) [FString]
|
|
1704
|
+
GlowColor: string; // 0x0018 (0x0010) [FString]
|
|
1705
|
+
};
|
|
1706
|
+
|
|
1707
|
+
/**
|
|
1708
|
+
* ScriptStruct ProjectX._Types_X.PlayerTitleData
|
|
1709
|
+
* Size: 0x002C
|
|
1710
|
+
*/
|
|
1711
|
+
export type FPlayerTitleData = {
|
|
1712
|
+
Id: FName; // 0x0000 (0x0008) [FName]
|
|
1713
|
+
Text: string; // 0x0008 (0x0010) [FString]
|
|
1714
|
+
Category: FName; // 0x0018 (0x0008) [FName]
|
|
1715
|
+
SortPriority: number; // 0x0020 (0x0004) [int32]
|
|
1716
|
+
Color: FColor; // 0x0024 (0x0004) [FColor]
|
|
1717
|
+
GlowColor: FColor; // 0x0028 (0x0004) [FColor]
|
|
1718
|
+
};
|
|
1719
|
+
|
|
1720
|
+
/**
|
|
1721
|
+
* ScriptStruct ProjectX.OnlineGameParty_X.PlaylistRestrictionPlayer
|
|
1722
|
+
* Size: 0x004C
|
|
1723
|
+
*/
|
|
1724
|
+
export type FPlaylistRestrictionPlayer = {
|
|
1725
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1726
|
+
Tier: number; // 0x0048 (0x0004) [int32]
|
|
1727
|
+
};
|
|
1728
|
+
|
|
1729
|
+
/**
|
|
1730
|
+
* ScriptStruct ProjectX._Types_X.PlaylistTierSkillRating
|
|
1731
|
+
* Size: 0x0024
|
|
1732
|
+
*/
|
|
1733
|
+
export type FPlaylistTierSkillRating = FTierSkillRating & {
|
|
1734
|
+
Playlist: number; // 0x0020 (0x0004) [int32]
|
|
1735
|
+
};
|
|
1736
|
+
|
|
1737
|
+
/**
|
|
1738
|
+
* ScriptStruct ProjectX.PostProcessManager_X.PostProcessOverride
|
|
1739
|
+
* Size: 0x0184
|
|
1740
|
+
*/
|
|
1741
|
+
export type FPostProcessOverride = {
|
|
1742
|
+
Settings: FPostProcessSettings; // 0x0000 (0x0168) [FPostProcessSettings]
|
|
1743
|
+
Volume: UPostProcessVolume; // 0x0168 (0x0008) [UPostProcessVolume*]
|
|
1744
|
+
Id: FName; // 0x0170 (0x0008) [FName]
|
|
1745
|
+
BlendInTime: number; // 0x0178 (0x0004) [float]
|
|
1746
|
+
BlendOutTime: number; // 0x017c (0x0004) [float]
|
|
1747
|
+
bEnabled: boolean; // 0x0180 (0x0004) [bool : 0x1]
|
|
1748
|
+
bDefaultEnabled: boolean; // 0x0180 (0x0004) [bool : 0x2]
|
|
1749
|
+
};
|
|
1750
|
+
|
|
1751
|
+
/**
|
|
1752
|
+
* ScriptStruct ProjectX.PostProcessManager_X.PPChainInfo
|
|
1753
|
+
* Size: 0x0010
|
|
1754
|
+
*/
|
|
1755
|
+
export type FPPChainInfo = {
|
|
1756
|
+
ChainName: FName; // 0x0000 (0x0008) [FName]
|
|
1757
|
+
ChainReference: UPostProcessChain; // 0x0008 (0x0008) [UPostProcessChain*]
|
|
1758
|
+
};
|
|
1759
|
+
|
|
1760
|
+
/**
|
|
1761
|
+
* ScriptStruct ProjectX.PostProcessManager_X.PPEffectDefaults
|
|
1762
|
+
* Size: 0x000C
|
|
1763
|
+
*/
|
|
1764
|
+
export type FPPEffectDefaults = {
|
|
1765
|
+
EffectName: FName; // 0x0000 (0x0008) [FName]
|
|
1766
|
+
bEnabled: boolean; // 0x0008 (0x0004) [bool : 0x1]
|
|
1767
|
+
};
|
|
1768
|
+
|
|
1769
|
+
/**
|
|
1770
|
+
* ScriptStruct ProjectX.PostProcessManager_X.PPPersistentEffectDefaults
|
|
1771
|
+
* Size: 0x001C
|
|
1772
|
+
*/
|
|
1773
|
+
export type FPPPersistentEffectDefaults = {
|
|
1774
|
+
EffectName: FName; // 0x0000 (0x0008) [FName]
|
|
1775
|
+
MaterialEffectName: FName; // 0x0008 (0x0008) [FName]
|
|
1776
|
+
MaterialParamName: FName; // 0x0010 (0x0008) [FName]
|
|
1777
|
+
DefaultValue: number; // 0x0018 (0x0004) [float]
|
|
1778
|
+
};
|
|
1779
|
+
|
|
1780
|
+
/**
|
|
1781
|
+
* ScriptStruct ProjectX.RenderProfiler_X.PrimitiveComponentProfile
|
|
1782
|
+
* Size: 0x0070
|
|
1783
|
+
*/
|
|
1784
|
+
export type FPrimitiveComponentProfile = {
|
|
1785
|
+
ContentName: string; // 0x0000 (0x0010) [FString]
|
|
1786
|
+
Components: UPrimitiveComponent[]; // 0x0010 (0x0010) [TArray<UPrimitiveComponent*>]
|
|
1787
|
+
InclusiveProfile: FRenderProfile; // 0x0020 (0x0028) [FRenderProfile]
|
|
1788
|
+
ExclusiveProfile: FRenderProfile; // 0x0048 (0x0028) [FRenderProfile]
|
|
1789
|
+
};
|
|
1790
|
+
|
|
1791
|
+
/**
|
|
1792
|
+
* ScriptStruct ProjectX.EOS_AccountSummaryResponse.PrivacySettings
|
|
1793
|
+
* Size: 0x0010
|
|
1794
|
+
*/
|
|
1795
|
+
export type FPrivacySettings = {
|
|
1796
|
+
ReceiveInvites: string; // 0x0000 (0x0010) [FString]
|
|
1797
|
+
};
|
|
1798
|
+
|
|
1799
|
+
/**
|
|
1800
|
+
* ScriptStruct ProjectX.OnlineGamePrivateMatch_X.PrivateMatchmakingRequestData
|
|
1801
|
+
* Size: 0x0014
|
|
1802
|
+
*/
|
|
1803
|
+
export type FPrivateMatchmakingRequestData = {
|
|
1804
|
+
SubRegionToMatchmake: string; // 0x0000 (0x0010) [FString]
|
|
1805
|
+
PlaylistId: number; // 0x0010 (0x0004) [int32]
|
|
1806
|
+
};
|
|
1807
|
+
|
|
1808
|
+
/**
|
|
1809
|
+
* ScriptStruct ProjectX.ClassPropertyConfig_X.PropertyOverride
|
|
1810
|
+
* Size: 0x0030
|
|
1811
|
+
*/
|
|
1812
|
+
export type FPropertyOverride = {
|
|
1813
|
+
Class: string; // 0x0000 (0x0010) [FString]
|
|
1814
|
+
Property: string; // 0x0010 (0x0010) [FString]
|
|
1815
|
+
Value: string; // 0x0020 (0x0010) [FString]
|
|
1816
|
+
};
|
|
1817
|
+
|
|
1818
|
+
/**
|
|
1819
|
+
* ScriptStruct ProjectX._Types_X.PsyNetBeaconPartyReservation
|
|
1820
|
+
* Size: 0x0010
|
|
1821
|
+
*/
|
|
1822
|
+
export type FPsyNetBeaconPartyReservation = {
|
|
1823
|
+
Members: FUniqueNetId[]; // 0x0000 (0x0010) [TArray<FUniqueNetId>]
|
|
1824
|
+
};
|
|
1825
|
+
|
|
1826
|
+
/**
|
|
1827
|
+
* ScriptStruct ProjectX._Types_X.PsyNetBeaconPlayerReservation
|
|
1828
|
+
* Size: 0x00B8
|
|
1829
|
+
*/
|
|
1830
|
+
export type FPsyNetBeaconPlayerReservation = {
|
|
1831
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1832
|
+
Keys: UNetworkEncryptionKey; // 0x0048 (0x0008) [UNetworkEncryptionKey*]
|
|
1833
|
+
DSConnectToken: string; // 0x0050 (0x0010) [FString]
|
|
1834
|
+
EpicID: FUniqueNetId; // 0x0060 (0x0048) [FUniqueNetId]
|
|
1835
|
+
EpicPUID: string; // 0x00a8 (0x0010) [FString]
|
|
1836
|
+
};
|
|
1837
|
+
|
|
1838
|
+
/**
|
|
1839
|
+
* ScriptStruct ProjectX._Types_X.PsyNetBeaconReservation
|
|
1840
|
+
* Size: 0x0048
|
|
1841
|
+
*/
|
|
1842
|
+
export type FPsyNetBeaconReservation = {
|
|
1843
|
+
ReservationID: string; // 0x0000 (0x0010) [FString]
|
|
1844
|
+
Playlist: number; // 0x0010 (0x0004) [int32]
|
|
1845
|
+
IsBackfill: boolean; // 0x0014 (0x0004) [bool : 0x1]
|
|
1846
|
+
IsBotMatch: boolean; // 0x0014 (0x0004) [bool : 0x2]
|
|
1847
|
+
BotNames: string[]; // 0x0018 (0x0010) [TArray<FString>]
|
|
1848
|
+
Players: FPsyNetBeaconPlayerReservation[]; // 0x0028 (0x0010) [TArray<FPsyNetBeaconPlayerReservation>]
|
|
1849
|
+
Parties: FPsyNetBeaconPartyReservation[]; // 0x0038 (0x0010) [TArray<FPsyNetBeaconPartyReservation>]
|
|
1850
|
+
};
|
|
1851
|
+
|
|
1852
|
+
/**
|
|
1853
|
+
* ScriptStruct ProjectX.PsyNet_X.PsyNetKeys
|
|
1854
|
+
* Size: 0x0040
|
|
1855
|
+
*/
|
|
1856
|
+
export type FPsyNetKeys = {
|
|
1857
|
+
Environment: string; // 0x0000 (0x0010) [FString]
|
|
1858
|
+
PsyNetAuth: string; // 0x0010 (0x0010) [FString]
|
|
1859
|
+
PsyConfigAuth: string; // 0x0020 (0x0010) [FString]
|
|
1860
|
+
SteamPublisher: string; // 0x0030 (0x0010) [FString]
|
|
1861
|
+
};
|
|
1862
|
+
|
|
1863
|
+
/**
|
|
1864
|
+
* ScriptStruct ProjectX.Parties_X.PsyNetPartyInfo
|
|
1865
|
+
* Size: 0x0070
|
|
1866
|
+
*/
|
|
1867
|
+
export type FPsyNetPartyInfo = {
|
|
1868
|
+
PartyID: string; // 0x0000 (0x0010) [FString]
|
|
1869
|
+
CreatedAt: bigint; // 0x0010 (0x0008) [uint64]
|
|
1870
|
+
CreatedByUserId: FUniqueNetId; // 0x0018 (0x0048) [FUniqueNetId]
|
|
1871
|
+
JoinID: string; // 0x0060 (0x0010) [FString]
|
|
1872
|
+
};
|
|
1873
|
+
|
|
1874
|
+
/**
|
|
1875
|
+
* ScriptStruct ProjectX.Parties_X.PsyNetPartyMember
|
|
1876
|
+
* Size: 0x0080
|
|
1877
|
+
*/
|
|
1878
|
+
export type FPsyNetPartyMember = {
|
|
1879
|
+
PartyID: string; // 0x0000 (0x0010) [FString]
|
|
1880
|
+
UserId: FUniqueNetId; // 0x0010 (0x0048) [FUniqueNetId]
|
|
1881
|
+
Username: string; // 0x0058 (0x0010) [FString]
|
|
1882
|
+
JoinedAt: bigint; // 0x0068 (0x0008) [uint64]
|
|
1883
|
+
Role: string; // 0x0070 (0x0010) [FString]
|
|
1884
|
+
};
|
|
1885
|
+
|
|
1886
|
+
/**
|
|
1887
|
+
* ScriptStruct ProjectX._Types_X.PsyNetPersonaData
|
|
1888
|
+
* Size: 0x0078
|
|
1889
|
+
*/
|
|
1890
|
+
export type FPsyNetPersonaData = {
|
|
1891
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1892
|
+
PlayerName: string; // 0x0048 (0x0010) [FString]
|
|
1893
|
+
PresenceInfo: string; // 0x0058 (0x0010) [FString]
|
|
1894
|
+
PresenceState: string; // 0x0068 (0x0010) [FString]
|
|
1895
|
+
};
|
|
1896
|
+
|
|
1897
|
+
/**
|
|
1898
|
+
* ScriptStruct ProjectX.PsyNetRequestQue_X.PsyNetRequest
|
|
1899
|
+
* Size: 0x0018
|
|
1900
|
+
*/
|
|
1901
|
+
export type FPsyNetRequest = {
|
|
1902
|
+
Id: FName; // 0x0000 (0x0008) [FName]
|
|
1903
|
+
Task: UTAsyncResult__PsyNetMessage_X; // 0x0008 (0x0008) [UTAsyncResult__PsyNetMessage_X*]
|
|
1904
|
+
TimeoutTime: number; // 0x0010 (0x0004) [float]
|
|
1905
|
+
SendTime: number; // 0x0014 (0x0004) [float]
|
|
1906
|
+
};
|
|
1907
|
+
|
|
1908
|
+
/**
|
|
1909
|
+
* ScriptStruct ProjectX.PsyNetMessengerWebSocket_X.QueuedPsyNetMessage
|
|
1910
|
+
* Size: 0x0014
|
|
1911
|
+
*/
|
|
1912
|
+
export type FQueuedPsyNetMessage = {
|
|
1913
|
+
Message: UPsyNetMessage_X; // 0x0000 (0x0008) [UPsyNetMessage_X*]
|
|
1914
|
+
Task: UAsyncTask; // 0x0008 (0x0008) [UAsyncTask*]
|
|
1915
|
+
TimeoutTime: number; // 0x0010 (0x0004) [float]
|
|
1916
|
+
};
|
|
1917
|
+
|
|
1918
|
+
/**
|
|
1919
|
+
* ScriptStruct ProjectX.AprilConfig_X.QuickChatOverridePair
|
|
1920
|
+
* Size: 0x0020
|
|
1921
|
+
*/
|
|
1922
|
+
export type FQuickChatOverridePair = {
|
|
1923
|
+
Id: string; // 0x0000 (0x0010) [FString]
|
|
1924
|
+
Override: string; // 0x0010 (0x0010) [FString]
|
|
1925
|
+
};
|
|
1926
|
+
|
|
1927
|
+
/**
|
|
1928
|
+
* ScriptStruct ProjectX.RandomStream_X.RandomStream_Mirror
|
|
1929
|
+
* Size: 0x0004
|
|
1930
|
+
*/
|
|
1931
|
+
export type FRandomStream_Mirror = {
|
|
1932
|
+
Seed: number; // 0x0000 (0x0004) [int32]
|
|
1933
|
+
};
|
|
1934
|
+
|
|
1935
|
+
/**
|
|
1936
|
+
* ScriptStruct ProjectX._Types_X.RankedDisparitySettings
|
|
1937
|
+
* Size: 0x000C
|
|
1938
|
+
*/
|
|
1939
|
+
export type FRankedDisparitySettings = {
|
|
1940
|
+
MaximumRankDisparity: number; // 0x0000 (0x0004) [int32]
|
|
1941
|
+
HighestTierNewPlayersCanPlayWith: number; // 0x0004 (0x0004) [int32]
|
|
1942
|
+
HighestMuNewPlayersCanHave: number; // 0x0008 (0x0004) [int32]
|
|
1943
|
+
};
|
|
1944
|
+
|
|
1945
|
+
/**
|
|
1946
|
+
* ScriptStruct ProjectX.PlayerInput_X.RawAxisValue
|
|
1947
|
+
* Size: 0x0010
|
|
1948
|
+
*/
|
|
1949
|
+
export type FRawAxisValue = {
|
|
1950
|
+
Value: number; // 0x0000 (0x0004) [float]
|
|
1951
|
+
LastFrameChanged: bigint; // 0x0008 (0x0008) [uint64]
|
|
1952
|
+
};
|
|
1953
|
+
|
|
1954
|
+
/**
|
|
1955
|
+
* ScriptStruct ProjectX._Types_X.RegionSecret
|
|
1956
|
+
* Size: 0x0020
|
|
1957
|
+
*/
|
|
1958
|
+
export type FRegionSecret = {
|
|
1959
|
+
Region: string; // 0x0000 (0x0010) [FString]
|
|
1960
|
+
Secret: string; // 0x0010 (0x0010) [FString]
|
|
1961
|
+
};
|
|
1962
|
+
|
|
1963
|
+
/**
|
|
1964
|
+
* ScriptStruct ProjectX._Types_X.RenderProfile
|
|
1965
|
+
* Size: 0x0028
|
|
1966
|
+
*/
|
|
1967
|
+
export type FRenderProfile = {
|
|
1968
|
+
GameThreadTime: number; // 0x0000 (0x0004) [float]
|
|
1969
|
+
RenderThreadTime: number; // 0x0004 (0x0004) [float]
|
|
1970
|
+
GPUTime: number; // 0x0008 (0x0004) [float]
|
|
1971
|
+
FrameTime: number; // 0x000c (0x0004) [float]
|
|
1972
|
+
FPS: number; // 0x0010 (0x0004) [float]
|
|
1973
|
+
AccumGameThreadTime: number; // 0x0014 (0x0004) [float]
|
|
1974
|
+
AccumRenderThreadTime: number; // 0x0018 (0x0004) [float]
|
|
1975
|
+
AccumGPUTime: number; // 0x001c (0x0004) [float]
|
|
1976
|
+
AccumFrameTime: number; // 0x0020 (0x0004) [float]
|
|
1977
|
+
NumSamples: number; // 0x0024 (0x0004) [int32]
|
|
1978
|
+
};
|
|
1979
|
+
|
|
1980
|
+
/**
|
|
1981
|
+
* ScriptStruct ProjectX._Types_X.ReplicatedRBState
|
|
1982
|
+
* Size: 0x003C
|
|
1983
|
+
*/
|
|
1984
|
+
export type FReplicatedRBState = {
|
|
1985
|
+
Quaternion: FQuat; // 0x0000 (0x0010) [FQuat]
|
|
1986
|
+
Location: FVector; // 0x0010 (0x000c) [FVector]
|
|
1987
|
+
LinearVelocity: FVector; // 0x001c (0x000c) [FVector]
|
|
1988
|
+
AngularVelocity: FVector; // 0x0028 (0x000c) [FVector]
|
|
1989
|
+
Time: number; // 0x0034 (0x0004) [float]
|
|
1990
|
+
bSleeping: boolean; // 0x0038 (0x0004) [bool : 0x1]
|
|
1991
|
+
bNewData: boolean; // 0x0038 (0x0004) [bool : 0x2]
|
|
1992
|
+
};
|
|
1993
|
+
|
|
1994
|
+
/**
|
|
1995
|
+
* ScriptStruct ProjectX._Types_X.ReplicatedRBStateNoQuat
|
|
1996
|
+
* Size: 0x0038
|
|
1997
|
+
*/
|
|
1998
|
+
export type FReplicatedRBStateNoQuat = {
|
|
1999
|
+
QuatX: number; // 0x0000 (0x0004) [float]
|
|
2000
|
+
QuatY: number; // 0x0004 (0x0004) [float]
|
|
2001
|
+
QuatZ: number; // 0x0008 (0x0004) [float]
|
|
2002
|
+
QuatW: number; // 0x000c (0x0004) [float]
|
|
2003
|
+
Location: FVector; // 0x0010 (0x000c) [FVector]
|
|
2004
|
+
LinearVelocity: FVector; // 0x001c (0x000c) [FVector]
|
|
2005
|
+
AngularVelocity: FVector; // 0x0028 (0x000c) [FVector]
|
|
2006
|
+
bSleeping: boolean; // 0x0034 (0x0004) [bool : 0x1]
|
|
2007
|
+
};
|
|
2008
|
+
|
|
2009
|
+
/**
|
|
2010
|
+
* ScriptStruct ProjectX._Types_X.ReplicatedReservationData
|
|
2011
|
+
* Size: 0x0059
|
|
2012
|
+
*/
|
|
2013
|
+
export type FReplicatedReservationData = {
|
|
2014
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
2015
|
+
PlayerName: string; // 0x0048 (0x0010) [FString]
|
|
2016
|
+
Status: EReservationStatus; // 0x0058 (0x0001) [EReservationStatus]
|
|
2017
|
+
};
|
|
2018
|
+
|
|
2019
|
+
/**
|
|
2020
|
+
* ScriptStruct ProjectX._Types_X.ReservationData
|
|
2021
|
+
* Size: 0x0110
|
|
2022
|
+
*/
|
|
2023
|
+
export type FReservationData = {
|
|
2024
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
2025
|
+
PlayerName: string; // 0x0048 (0x0010) [FString]
|
|
2026
|
+
PartyID: FUniqueNetId; // 0x0058 (0x0048) [FUniqueNetId]
|
|
2027
|
+
Status: EReservationStatus; // 0x00a0 (0x0001) [EReservationStatus]
|
|
2028
|
+
TimeoutTime: number; // 0x00a4 (0x0004) [float]
|
|
2029
|
+
bDisableCrossPlay: boolean; // 0x00a8 (0x0004) [bool : 0x1]
|
|
2030
|
+
PRI: UPlayerReplicationInfo; // 0x00b0 (0x0008) [UPlayerReplicationInfo*]
|
|
2031
|
+
Team: number; // 0x00b8 (0x0001) [uint8]
|
|
2032
|
+
ClubID: bigint; // 0x00c0 (0x0008) [uint64]
|
|
2033
|
+
ReservationMessage: UAddReservationMessage_X; // 0x00c8 (0x0008) [UAddReservationMessage_X*]
|
|
2034
|
+
Connection: UIReservationConnection_X; // 0x00d0 (0x0010) [UIReservationConnection_X*]
|
|
2035
|
+
bIgnoreBeaconDisconnect: boolean; // 0x00e0 (0x0004) [bool : 0x1]
|
|
2036
|
+
Skill: FSkillRating; // 0x00e4 (0x0008) [FSkillRating]
|
|
2037
|
+
MapLikes: FName[]; // 0x00f0 (0x0010) [TArray<FName>]
|
|
2038
|
+
MapDislikes: FName[]; // 0x0100 (0x0010) [TArray<FName>]
|
|
2039
|
+
};
|
|
2040
|
+
|
|
2041
|
+
/**
|
|
2042
|
+
* ScriptStruct ProjectX._Types_X.ReservationPlayerData
|
|
2043
|
+
* Size: 0x00A0
|
|
2044
|
+
*/
|
|
2045
|
+
export type FReservationPlayerData = {
|
|
2046
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
2047
|
+
PlayerName: string; // 0x0048 (0x0010) [FString]
|
|
2048
|
+
SkillMu: number; // 0x0058 (0x0004) [float]
|
|
2049
|
+
SkillSigma: number; // 0x005c (0x0004) [float]
|
|
2050
|
+
Tier: number; // 0x0060 (0x0004) [int32]
|
|
2051
|
+
bRemotePlayer: boolean; // 0x0064 (0x0004) [bool : 0x1]
|
|
2052
|
+
Loadout: number[]; // 0x0068 (0x0010) [TArray<int32>]
|
|
2053
|
+
MapLikes: FName[]; // 0x0078 (0x0010) [TArray<FName>]
|
|
2054
|
+
MapDislikes: FName[]; // 0x0088 (0x0010) [TArray<FName>]
|
|
2055
|
+
ClubID: bigint; // 0x0098 (0x0008) [uint64]
|
|
2056
|
+
};
|
|
2057
|
+
|
|
2058
|
+
/**
|
|
2059
|
+
* ScriptStruct ProjectX.Camera_X.RotationCameraKnock
|
|
2060
|
+
* Size: 0x001C
|
|
2061
|
+
*/
|
|
2062
|
+
export type FRotationCameraKnock = FCameraKnockBase & {
|
|
2063
|
+
Amount: FRotator; // 0x0010 (0x000c) [FRotator]
|
|
2064
|
+
};
|
|
2065
|
+
|
|
2066
|
+
/**
|
|
2067
|
+
* ScriptStruct ProjectX.RPCQueue_X.RPCError
|
|
2068
|
+
* Size: 0x0020
|
|
2069
|
+
*/
|
|
2070
|
+
export type FRPCError = {
|
|
2071
|
+
Type: string; // 0x0000 (0x0010) [FString]
|
|
2072
|
+
Message: string; // 0x0010 (0x0010) [FString]
|
|
2073
|
+
};
|
|
2074
|
+
|
|
2075
|
+
/**
|
|
2076
|
+
* ScriptStruct ProjectX.RPCQueue_X.RPCResponse
|
|
2077
|
+
* Size: 0x0030
|
|
2078
|
+
*/
|
|
2079
|
+
export type FRPCResponse = {
|
|
2080
|
+
Id: number; // 0x0000 (0x0004) [int32]
|
|
2081
|
+
Error: FRPCError; // 0x0008 (0x0020) [FRPCError]
|
|
2082
|
+
Result: URPC_X; // 0x0028 (0x0008) [URPC_X*]
|
|
2083
|
+
};
|
|
2084
|
+
|
|
2085
|
+
/**
|
|
2086
|
+
* ScriptStruct ProjectX.RPC_Test_X.RPCTestItem
|
|
2087
|
+
* Size: 0x0078
|
|
2088
|
+
*/
|
|
2089
|
+
export type FRPCTestItem = {
|
|
2090
|
+
BoolItem: boolean; // 0x0000 (0x0004) [bool : 0x1]
|
|
2091
|
+
IntItem: number; // 0x0004 (0x0004) [int32]
|
|
2092
|
+
FloatItem: number; // 0x0008 (0x0004) [float]
|
|
2093
|
+
StringItem: string; // 0x0010 (0x0010) [FString]
|
|
2094
|
+
PlayerItem: FUniqueNetId; // 0x0020 (0x0048) [FUniqueNetId]
|
|
2095
|
+
StringItems: string[]; // 0x0068 (0x0010) [TArray<FString>]
|
|
2096
|
+
};
|
|
2097
|
+
|
|
2098
|
+
/**
|
|
2099
|
+
* ScriptStruct ProjectX.RPC_Test_X.RPCTestParam
|
|
2100
|
+
* Size: 0x0088
|
|
2101
|
+
*/
|
|
2102
|
+
export type FRPCTestParam = {
|
|
2103
|
+
TestItem: FRPCTestItem; // 0x0000 (0x0078) [FRPCTestItem]
|
|
2104
|
+
TestItems: FRPCTestItem[]; // 0x0078 (0x0010) [TArray<FRPCTestItem>]
|
|
2105
|
+
};
|
|
2106
|
+
|
|
2107
|
+
/**
|
|
2108
|
+
* ScriptStruct ProjectX.RPC_GetClubStats_X.SeasonalBadgeTierData
|
|
2109
|
+
* Size: 0x0018
|
|
2110
|
+
*/
|
|
2111
|
+
export type FSeasonalBadgeTierData = {
|
|
2112
|
+
Season: number; // 0x0000 (0x0004) [int32]
|
|
2113
|
+
Badges: FStatBadge[]; // 0x0008 (0x0010) [TArray<FStatBadge>]
|
|
2114
|
+
};
|
|
2115
|
+
|
|
2116
|
+
/**
|
|
2117
|
+
* ScriptStruct ProjectX._Types_X.ServerConnectionInfo
|
|
2118
|
+
* Size: 0x0030
|
|
2119
|
+
*/
|
|
2120
|
+
export type FServerConnectionInfo = {
|
|
2121
|
+
ServerAddress: string; // 0x0000 (0x0010) [FString]
|
|
2122
|
+
PingAddress: string; // 0x0010 (0x0010) [FString]
|
|
2123
|
+
ServerName: string; // 0x0020 (0x0010) [FString]
|
|
2124
|
+
};
|
|
2125
|
+
|
|
2126
|
+
/**
|
|
2127
|
+
* ScriptStruct ProjectX._Types_X.ServerReservationData
|
|
2128
|
+
* Size: 0x0070
|
|
2129
|
+
*/
|
|
2130
|
+
export type FServerReservationData = {
|
|
2131
|
+
ServerName: string; // 0x0000 (0x0010) [FString]
|
|
2132
|
+
Playlist: number; // 0x0010 (0x0004) [int32]
|
|
2133
|
+
Region: string; // 0x0018 (0x0010) [FString]
|
|
2134
|
+
ReservationID: string; // 0x0028 (0x0010) [FString]
|
|
2135
|
+
DSRToken: string; // 0x0038 (0x0010) [FString]
|
|
2136
|
+
Keys: UNetworkEncryptionKey; // 0x0048 (0x0008) [UNetworkEncryptionKey*]
|
|
2137
|
+
JoinName: string; // 0x0050 (0x0010) [FString]
|
|
2138
|
+
JoinPassword: string; // 0x0060 (0x0010) [FString]
|
|
2139
|
+
};
|
|
2140
|
+
|
|
2141
|
+
/**
|
|
2142
|
+
* ScriptStruct ProjectX._Types_X.ServerResult
|
|
2143
|
+
* Size: 0x00A8
|
|
2144
|
+
*/
|
|
2145
|
+
export type FServerResult = {
|
|
2146
|
+
Address: string; // 0x0000 (0x0010) [FString]
|
|
2147
|
+
ServerName: string; // 0x0010 (0x0010) [FString]
|
|
2148
|
+
Settings: FCustomMatchSettings; // 0x0020 (0x0088) [FCustomMatchSettings]
|
|
2149
|
+
};
|
|
2150
|
+
|
|
2151
|
+
/**
|
|
2152
|
+
* ScriptStruct ProjectX.PsyNetMetrics_X.ServiceErrorData
|
|
2153
|
+
* Size: 0x000C
|
|
2154
|
+
*/
|
|
2155
|
+
export type FServiceErrorData = {
|
|
2156
|
+
Type: FName; // 0x0000 (0x0008) [FName]
|
|
2157
|
+
Count: number; // 0x0008 (0x0004) [int32]
|
|
2158
|
+
};
|
|
2159
|
+
|
|
2160
|
+
/**
|
|
2161
|
+
* ScriptStruct ProjectX.PsyNetMetrics_X.ServiceMetricsData
|
|
2162
|
+
* Size: 0x0024
|
|
2163
|
+
*/
|
|
2164
|
+
export type FServiceMetricsData = {
|
|
2165
|
+
Service: string; // 0x0000 (0x0010) [FString]
|
|
2166
|
+
Attempts: number; // 0x0010 (0x0004) [int32]
|
|
2167
|
+
Failures: number; // 0x0014 (0x0004) [int32]
|
|
2168
|
+
MinLatency: number; // 0x0018 (0x0004) [float]
|
|
2169
|
+
MaxLatency: number; // 0x001c (0x0004) [float]
|
|
2170
|
+
AvgLatency: number; // 0x0020 (0x0004) [float]
|
|
2171
|
+
};
|
|
2172
|
+
|
|
2173
|
+
/**
|
|
2174
|
+
* ScriptStruct ProjectX.PsyNetServiceSubscriptions_X.ServiceSubscription
|
|
2175
|
+
* Size: 0x0020
|
|
2176
|
+
*/
|
|
2177
|
+
export type FServiceSubscription = {
|
|
2178
|
+
Class: UPsyNetClientService_X; // 0x0000 (0x0008) [UPsyNetClientService_X*]
|
|
2179
|
+
Callback: FScriptDelegate; // 0x0008 (0x0018) [FScriptDelegate]
|
|
2180
|
+
};
|
|
2181
|
+
|
|
2182
|
+
/**
|
|
2183
|
+
* ScriptStruct ProjectX.RPC_PlayerStorageSet_X.SetPlayerStorageRequestItem
|
|
2184
|
+
* Size: 0x0021
|
|
2185
|
+
*/
|
|
2186
|
+
export type FSetPlayerStorageRequestItem = {
|
|
2187
|
+
Category: FName; // 0x0000 (0x0008) [FName]
|
|
2188
|
+
Tick: number; // 0x0008 (0x0004) [int32]
|
|
2189
|
+
Checksum: number; // 0x000c (0x0004) [int32]
|
|
2190
|
+
Data: string; // 0x0010 (0x0010) [FString]
|
|
2191
|
+
Encoding: EObjectEncoding; // 0x0020 (0x0001) [EObjectEncoding]
|
|
2192
|
+
};
|
|
2193
|
+
|
|
2194
|
+
/**
|
|
2195
|
+
* ScriptStruct ProjectX.SetPlayerStorageResult_X.SetPlayerStorageResultItem
|
|
2196
|
+
* Size: 0x0010
|
|
2197
|
+
*/
|
|
2198
|
+
export type FSetPlayerStorageResultItem = {
|
|
2199
|
+
Category: FName; // 0x0000 (0x0008) [FName]
|
|
2200
|
+
Tick: number; // 0x0008 (0x0004) [int32]
|
|
2201
|
+
bOutOfSync: boolean; // 0x000c (0x0004) [bool : 0x1]
|
|
2202
|
+
};
|
|
2203
|
+
|
|
2204
|
+
/**
|
|
2205
|
+
* ScriptStruct ProjectX.ShakeComponent_X.ShakeReceiver
|
|
2206
|
+
* Size: 0x000C
|
|
2207
|
+
*/
|
|
2208
|
+
export type FShakeReceiver = {
|
|
2209
|
+
Player: UPlayerController; // 0x0000 (0x0008) [UPlayerController*]
|
|
2210
|
+
Scale: number; // 0x0008 (0x0004) [float]
|
|
2211
|
+
};
|
|
2212
|
+
|
|
2213
|
+
/**
|
|
2214
|
+
* ScriptStruct ProjectX._Types_X.SignedMessagePacket
|
|
2215
|
+
* Size: 0x0048
|
|
2216
|
+
*/
|
|
2217
|
+
export type FSignedMessagePacket = {
|
|
2218
|
+
MessagePayload: string; // 0x0000 (0x0010) [FString]
|
|
2219
|
+
Signature: string; // 0x0010 (0x0010) [FString]
|
|
2220
|
+
ReceivingTimestamp: bigint; // 0x0020 (0x0008) [uint64]
|
|
2221
|
+
SanitizedReceivedTextMessage: string; // 0x0028 (0x0010) [FString]
|
|
2222
|
+
PublicKey: string; // 0x0038 (0x0010) [FString]
|
|
2223
|
+
};
|
|
2224
|
+
|
|
2225
|
+
/**
|
|
2226
|
+
* ScriptStruct ProjectX.PartyMessage_LocalPlayers_X.SimplePartyMember
|
|
2227
|
+
* Size: 0x0058
|
|
2228
|
+
*/
|
|
2229
|
+
export type FSimplePartyMember = {
|
|
2230
|
+
MemberId: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
2231
|
+
MemberName: string; // 0x0048 (0x0010) [FString]
|
|
2232
|
+
};
|
|
2233
|
+
|
|
2234
|
+
/**
|
|
2235
|
+
* ScriptStruct ProjectX._Types_X.SkillMatchData
|
|
2236
|
+
* Size: 0x0024
|
|
2237
|
+
*/
|
|
2238
|
+
export type FSkillMatchData = {
|
|
2239
|
+
ServerId: string; // 0x0000 (0x0010) [FString]
|
|
2240
|
+
Playlist: number; // 0x0010 (0x0004) [int32]
|
|
2241
|
+
WinningTeam: number; // 0x0014 (0x0004) [int32]
|
|
2242
|
+
Team0Score: number; // 0x0018 (0x0004) [int32]
|
|
2243
|
+
Team1Score: number; // 0x001c (0x0004) [int32]
|
|
2244
|
+
bOverTime: boolean; // 0x0020 (0x0004) [bool : 0x1]
|
|
2245
|
+
};
|
|
2246
|
+
|
|
2247
|
+
/**
|
|
2248
|
+
* ScriptStruct ProjectX._Types_X.SkillMatchParty
|
|
2249
|
+
* Size: 0x0020
|
|
2250
|
+
*/
|
|
2251
|
+
export type FSkillMatchParty = {
|
|
2252
|
+
PartyID: number; // 0x0000 (0x0004) [int32]
|
|
2253
|
+
PctTimePlayed: number; // 0x0004 (0x0004) [float]
|
|
2254
|
+
bQuitter: boolean; // 0x0008 (0x0004) [bool : 0x1]
|
|
2255
|
+
Players: FUniqueNetId[]; // 0x0010 (0x0010) [TArray<FUniqueNetId>]
|
|
2256
|
+
};
|
|
2257
|
+
|
|
2258
|
+
/**
|
|
2259
|
+
* ScriptStruct ProjectX._Types_X.SkillMatchPartyRating
|
|
2260
|
+
* Size: 0x0024
|
|
2261
|
+
*/
|
|
2262
|
+
export type FSkillMatchPartyRating = FTierSkillRating & {
|
|
2263
|
+
PartyID: number; // 0x0020 (0x0004) [int32]
|
|
2264
|
+
};
|
|
2265
|
+
|
|
2266
|
+
/**
|
|
2267
|
+
* ScriptStruct ProjectX._Types_X.SkillMatchPlayer
|
|
2268
|
+
* Size: 0x0060
|
|
2269
|
+
*/
|
|
2270
|
+
export type FSkillMatchPlayer = {
|
|
2271
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
2272
|
+
PctTimePlayed: number; // 0x0048 (0x0004) [float]
|
|
2273
|
+
TimePlayed: number; // 0x004c (0x0004) [float]
|
|
2274
|
+
bQuitter: boolean; // 0x0050 (0x0004) [bool : 0x1]
|
|
2275
|
+
PartyID: number; // 0x0054 (0x0004) [int32]
|
|
2276
|
+
Score: number; // 0x0058 (0x0004) [int32]
|
|
2277
|
+
Team: number; // 0x005c (0x0004) [int32]
|
|
2278
|
+
};
|
|
2279
|
+
|
|
2280
|
+
/**
|
|
2281
|
+
* ScriptStruct ProjectX.OnlineGameSkill_X.SkillSyncRequest
|
|
2282
|
+
* Size: 0x0068
|
|
2283
|
+
*/
|
|
2284
|
+
export type FSkillSyncRequest = {
|
|
2285
|
+
RPC: URPC_X; // 0x0000 (0x0008) [URPC_X*]
|
|
2286
|
+
PlayerID: FUniqueNetId; // 0x0008 (0x0048) [FUniqueNetId]
|
|
2287
|
+
Callback: FScriptDelegate; // 0x0050 (0x0018) [FScriptDelegate]
|
|
2288
|
+
};
|
|
2289
|
+
|
|
2290
|
+
/**
|
|
2291
|
+
* ScriptStruct ProjectX.GFxSoundPack_X.SoundPackSoundRef
|
|
2292
|
+
* Size: 0x0010
|
|
2293
|
+
*/
|
|
2294
|
+
export type FSoundPackSoundRef = {
|
|
2295
|
+
Sound: UAkSoundCue; // 0x0000 (0x0008) [UAkSoundCue*]
|
|
2296
|
+
Name: FName; // 0x0008 (0x0008) [FName]
|
|
2297
|
+
};
|
|
2298
|
+
|
|
2299
|
+
/**
|
|
2300
|
+
* ScriptStruct ProjectX.ClubDetails_X.StatBadge
|
|
2301
|
+
* Size: 0x0009
|
|
2302
|
+
*/
|
|
2303
|
+
export type FStatBadge = {
|
|
2304
|
+
Stat: FName; // 0x0000 (0x0008) [FName]
|
|
2305
|
+
Badge: EClubBadge; // 0x0008 (0x0001) [EClubBadge]
|
|
2306
|
+
};
|
|
2307
|
+
|
|
2308
|
+
/**
|
|
2309
|
+
* ScriptStruct ProjectX.RPC_GetClubStats_X.StatMilestoneData
|
|
2310
|
+
* Size: 0x001D
|
|
2311
|
+
*/
|
|
2312
|
+
export type FStatMilestoneData = {
|
|
2313
|
+
Stat: FName; // 0x0000 (0x0008) [FName]
|
|
2314
|
+
Milestones: number[]; // 0x0008 (0x0010) [TArray<int32>]
|
|
2315
|
+
Value: number; // 0x0018 (0x0004) [int32]
|
|
2316
|
+
Badge: EClubBadge; // 0x001c (0x0001) [EClubBadge]
|
|
2317
|
+
};
|
|
2318
|
+
|
|
2319
|
+
/**
|
|
2320
|
+
* ScriptStruct ProjectX.OnlineGameDLC_X.SteamJsonResponseGetPublisherAppOwnership
|
|
2321
|
+
* Size: 0x0010
|
|
2322
|
+
*/
|
|
2323
|
+
export type FSteamJsonResponseGetPublisherAppOwnership = {
|
|
2324
|
+
AppOwnership: FSteamJsonResponseGetPublisherAppOwnership2; // 0x0000 (0x0010) [FSteamJsonResponseGetPublisherAppOwnership2]
|
|
2325
|
+
};
|
|
2326
|
+
|
|
2327
|
+
/**
|
|
2328
|
+
* ScriptStruct ProjectX.OnlineGameDLC_X.SteamJsonResponseGetPublisherAppOwnership2
|
|
2329
|
+
* Size: 0x0010
|
|
2330
|
+
*/
|
|
2331
|
+
export type FSteamJsonResponseGetPublisherAppOwnership2 = {
|
|
2332
|
+
Apps: FSteamJsonResponseGetPublisherAppOwnership3[]; // 0x0000 (0x0010) [TArray<FSteamJsonResponseGetPublisherAppOwnership3>]
|
|
2333
|
+
};
|
|
2334
|
+
|
|
2335
|
+
/**
|
|
2336
|
+
* ScriptStruct ProjectX.OnlineGameDLC_X.SteamJsonResponseGetPublisherAppOwnership3
|
|
2337
|
+
* Size: 0x0028
|
|
2338
|
+
*/
|
|
2339
|
+
export type FSteamJsonResponseGetPublisherAppOwnership3 = {
|
|
2340
|
+
AppID: bigint; // 0x0000 (0x0008) [uint64]
|
|
2341
|
+
OwnerSteamID: bigint; // 0x0008 (0x0008) [uint64]
|
|
2342
|
+
OwnsApp: boolean; // 0x0010 (0x0004) [bool : 0x1]
|
|
2343
|
+
Permanent: boolean; // 0x0010 (0x0004) [bool : 0x2]
|
|
2344
|
+
TimeStamp: string; // 0x0018 (0x0010) [FString]
|
|
2345
|
+
};
|
|
2346
|
+
|
|
2347
|
+
/**
|
|
2348
|
+
* ScriptStruct ProjectX.OnlineGameDLC_X.SteamPlayerDLCOwnershipState
|
|
2349
|
+
* Size: 0x0011
|
|
2350
|
+
*/
|
|
2351
|
+
export type FSteamPlayerDLCOwnershipState = {
|
|
2352
|
+
Name: FName; // 0x0000 (0x0008) [FName]
|
|
2353
|
+
AppID: bigint; // 0x0008 (0x0008) [uint64]
|
|
2354
|
+
State: DLCOwnershipState; // 0x0010 (0x0001) [DLCOwnershipState]
|
|
2355
|
+
};
|
|
2356
|
+
|
|
2357
|
+
/**
|
|
2358
|
+
* ScriptStruct ProjectX.OnlineGameDLC_X.SteamWebRequestData
|
|
2359
|
+
* Size: 0x0050
|
|
2360
|
+
*/
|
|
2361
|
+
export type FSteamWebRequestData = {
|
|
2362
|
+
Request: UWebRequest_X; // 0x0000 (0x0008) [UWebRequest_X*]
|
|
2363
|
+
PlayerID: FUniqueNetId; // 0x0008 (0x0048) [FUniqueNetId]
|
|
2364
|
+
};
|
|
2365
|
+
|
|
2366
|
+
/**
|
|
2367
|
+
* ScriptStruct ProjectX.OnlinePlayerStorageQueue_X.StorageMaxSize
|
|
2368
|
+
* Size: 0x000C
|
|
2369
|
+
*/
|
|
2370
|
+
export type FStorageMaxSize = {
|
|
2371
|
+
Category: FName; // 0x0000 (0x0008) [FName]
|
|
2372
|
+
MaxSizeBytes: number; // 0x0008 (0x0004) [int32]
|
|
2373
|
+
};
|
|
2374
|
+
|
|
2375
|
+
/**
|
|
2376
|
+
* ScriptStruct ProjectX.OnlinePlayerStorageManifest_X.StorageMetadata
|
|
2377
|
+
* Size: 0x000D
|
|
2378
|
+
*/
|
|
2379
|
+
export type FStorageMetadata = {
|
|
2380
|
+
Category: FName; // 0x0000 (0x0008) [FName]
|
|
2381
|
+
Checksum: number; // 0x0008 (0x0004) [int32]
|
|
2382
|
+
Encoding: EObjectEncoding; // 0x000c (0x0001) [EObjectEncoding]
|
|
2383
|
+
};
|
|
2384
|
+
|
|
2385
|
+
/**
|
|
2386
|
+
* ScriptStruct ProjectX._Types_X.SuperRegionData
|
|
2387
|
+
* Size: 0x0030
|
|
2388
|
+
*/
|
|
2389
|
+
export type FSuperRegionData = {
|
|
2390
|
+
Region: string; // 0x0000 (0x0010) [FString]
|
|
2391
|
+
Label: string; // 0x0010 (0x0010) [FString]
|
|
2392
|
+
SubRegions: string[]; // 0x0020 (0x0010) [TArray<FString>]
|
|
2393
|
+
};
|
|
2394
|
+
|
|
2395
|
+
/**
|
|
2396
|
+
* ScriptStruct ProjectX._Types_X.SuperSonicConfig
|
|
2397
|
+
* Size: 0x000C
|
|
2398
|
+
*/
|
|
2399
|
+
export type FSuperSonicConfig = {
|
|
2400
|
+
Speed: number; // 0x0000 (0x0004) [float]
|
|
2401
|
+
TurnoffSpeedBuffer: number; // 0x0004 (0x0004) [float]
|
|
2402
|
+
TurnoffTime: number; // 0x0008 (0x0004) [float]
|
|
2403
|
+
};
|
|
2404
|
+
|
|
2405
|
+
/**
|
|
2406
|
+
* ScriptStruct ProjectX.OnlineGameReservations_X.TeamPairHistory
|
|
2407
|
+
* Size: 0x0094
|
|
2408
|
+
*/
|
|
2409
|
+
export type FTeamPairHistory = {
|
|
2410
|
+
PartyA: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
2411
|
+
PartyB: FUniqueNetId; // 0x0048 (0x0048) [FUniqueNetId]
|
|
2412
|
+
Count: number; // 0x0090 (0x0004) [int32]
|
|
2413
|
+
};
|
|
2414
|
+
|
|
2415
|
+
/**
|
|
2416
|
+
* ScriptStruct ProjectX.CheatManager_X.TestStructEvent
|
|
2417
|
+
* Size: 0x0018
|
|
2418
|
+
*/
|
|
2419
|
+
export type FTestStructEvent = {
|
|
2420
|
+
Callback: FScriptDelegate; // 0x0000 (0x0018) [FScriptDelegate]
|
|
2421
|
+
};
|
|
2422
|
+
|
|
2423
|
+
/**
|
|
2424
|
+
* ScriptStruct ProjectX.EpicConfig_X.TradePermissionEnabledPair
|
|
2425
|
+
* Size: 0x0008
|
|
2426
|
+
*/
|
|
2427
|
+
export type FTradePermissionEnabledPair = {
|
|
2428
|
+
Level: ETradePermissionLevel; // 0x0000 (0x0001) [ETradePermissionLevel]
|
|
2429
|
+
bEnabled: boolean; // 0x0004 (0x0004) [bool : 0x1]
|
|
2430
|
+
};
|
|
2431
|
+
|
|
2432
|
+
/**
|
|
2433
|
+
* ScriptStruct ProjectX.EpicConfig_X.TradePermissionPair
|
|
2434
|
+
* Size: 0x0011
|
|
2435
|
+
*/
|
|
2436
|
+
export type FTradePermissionPair = {
|
|
2437
|
+
PermissionLabel: string; // 0x0000 (0x0010) [FString]
|
|
2438
|
+
Level: ETradePermissionLevel; // 0x0010 (0x0001) [ETradePermissionLevel]
|
|
2439
|
+
};
|
|
2440
|
+
|
|
2441
|
+
/**
|
|
2442
|
+
* ScriptStruct ProjectX._Types_X.UpdatedPlayerSkillRating
|
|
2443
|
+
* Size: 0x0084
|
|
2444
|
+
*/
|
|
2445
|
+
export type FUpdatedPlayerSkillRating = FPlayerSkillRating & {
|
|
2446
|
+
PrevMu: number; // 0x0070 (0x0004) [float]
|
|
2447
|
+
PrevSigma: number; // 0x0074 (0x0004) [float]
|
|
2448
|
+
PrevTier: number; // 0x0078 (0x0004) [int32]
|
|
2449
|
+
PrevDivision: number; // 0x007c (0x0004) [int32]
|
|
2450
|
+
PrevMMR: number; // 0x0080 (0x0004) [float]
|
|
2451
|
+
};
|
|
2452
|
+
|
|
2453
|
+
/**
|
|
2454
|
+
* ScriptStruct ProjectX.OnlineGameStats_X.UploadStatData
|
|
2455
|
+
* Size: 0x004C
|
|
2456
|
+
*/
|
|
2457
|
+
export type FUploadStatData = {
|
|
2458
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
2459
|
+
Value: number; // 0x0048 (0x0004) [int32]
|
|
2460
|
+
};
|
|
2461
|
+
|
|
2462
|
+
/**
|
|
2463
|
+
* ScriptStruct ProjectX.OnlineGameStats_X.UploadStatDataSet
|
|
2464
|
+
* Size: 0x0018
|
|
2465
|
+
*/
|
|
2466
|
+
export type FUploadStatDataSet = {
|
|
2467
|
+
StatId: FName; // 0x0000 (0x0008) [FName]
|
|
2468
|
+
Data: FUploadStatData[]; // 0x0008 (0x0010) [TArray<FUploadStatData>]
|
|
2469
|
+
};
|
|
2470
|
+
|
|
2471
|
+
/**
|
|
2472
|
+
* ScriptStruct ProjectX.Camera_X.VectorInterpRate
|
|
2473
|
+
* Size: 0x0018
|
|
2474
|
+
*/
|
|
2475
|
+
export type FVectorInterpRate = {
|
|
2476
|
+
MaxDistance: number; // 0x0000 (0x0004) [float]
|
|
2477
|
+
InterpRate: number; // 0x0004 (0x0004) [float]
|
|
2478
|
+
ForwardScale: number; // 0x0008 (0x0004) [float]
|
|
2479
|
+
BackwardScale: number; // 0x000c (0x0004) [float]
|
|
2480
|
+
SideScale: number; // 0x0010 (0x0004) [float]
|
|
2481
|
+
UpDownScale: number; // 0x0014 (0x0004) [float]
|
|
2482
|
+
};
|
|
2483
|
+
|
|
2484
|
+
/**
|
|
2485
|
+
* ScriptStruct ProjectX.ParameterDispenser_X.VectorParamPair
|
|
2486
|
+
* Size: 0x0014
|
|
2487
|
+
*/
|
|
2488
|
+
export type FVectorParamPair = {
|
|
2489
|
+
Key: FName; // 0x0000 (0x0008) [FName]
|
|
2490
|
+
Value: FVector; // 0x0008 (0x000c) [FVector]
|
|
2491
|
+
};
|
|
2492
|
+
|
|
2493
|
+
/**
|
|
2494
|
+
* ScriptStruct ProjectX.SystemMetrics_X.VideoCardMetrics
|
|
2495
|
+
* Size: 0x0014
|
|
2496
|
+
*/
|
|
2497
|
+
export type FVideoCardMetrics = {
|
|
2498
|
+
Type: string; // 0x0000 (0x0010) [FString]
|
|
2499
|
+
RAM: number; // 0x0010 (0x0004) [int32]
|
|
2500
|
+
};
|
|
2501
|
+
|
|
2502
|
+
/**
|
|
2503
|
+
* ScriptStruct ProjectX.WordFilterTypes_X.WordFilterPair
|
|
2504
|
+
* Size: 0x0078
|
|
2505
|
+
*/
|
|
2506
|
+
export type FWordFilterPair = {
|
|
2507
|
+
Id: string; // 0x0000 (0x0010) [FString]
|
|
2508
|
+
Key: string; // 0x0010 (0x0010) [FString]
|
|
2509
|
+
Value: string; // 0x0020 (0x0010) [FString]
|
|
2510
|
+
Usage: EWordFilterUsage; // 0x0030 (0x0001) [EWordFilterUsage]
|
|
2511
|
+
bPending: boolean; // 0x0034 (0x0004) [bool : 0x1]
|
|
2512
|
+
LastRequestTime: number; // 0x0038 (0x0004) [float]
|
|
2513
|
+
Error: UError; // 0x0040 (0x0008) [UError*]
|
|
2514
|
+
Callback: FScriptDelegate; // 0x0048 (0x0018) [FScriptDelegate]
|
|
2515
|
+
ErrorCallback: FScriptDelegate; // 0x0060 (0x0018) [FScriptDelegate]
|
|
2516
|
+
};
|
|
2517
|
+
|
|
2518
|
+
/**
|
|
2519
|
+
* ScriptStruct ProjectX.OnlineGameWordFilterProcessor_X.WordFilterRequest
|
|
2520
|
+
* Size: 0x0040
|
|
2521
|
+
*/
|
|
2522
|
+
export type FWordFilterRequest = {
|
|
2523
|
+
Request: UWebRequest_X; // 0x0000 (0x0008) [UWebRequest_X*]
|
|
2524
|
+
Comment: string; // 0x0008 (0x0010) [FString]
|
|
2525
|
+
Sanitized: string; // 0x0018 (0x0010) [FString]
|
|
2526
|
+
Callback: FScriptDelegate; // 0x0028 (0x0018) [FScriptDelegate]
|
|
2527
|
+
};
|