@rlsdk/steam 1.0.1 → 1.0.3
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 +1 -1
- package/classes/AkAudio.ts +2 -13
- package/classes/Core.ts +64 -59
- package/classes/Engine.ts +33 -75
- package/classes/GFxUI.ts +3 -31
- package/classes/IpDrv.ts +10 -20
- package/classes/OnlineSubsystemEOS.ts +60 -164
- package/classes/OnlineSubsystemSteamworks.ts +175 -183
- package/classes/ProjectX.ts +103 -69
- package/classes/TAGame.ts +3239 -2558
- package/classes/WinDrv.ts +1 -8
- package/constants/TAGame.ts +3 -1
- package/enums/Core.ts +54 -0
- package/enums/Engine.ts +2 -72
- package/enums/TAGame.ts +46 -4
- package/offsets/AkAudio.ts +1 -1
- package/offsets/Core.ts +64 -59
- package/offsets/Engine.ts +29 -51
- package/offsets/IpDrv.ts +38 -39
- package/offsets/OnlineSubsystemEOS.ts +94 -136
- package/offsets/OnlineSubsystemSteamworks.ts +212 -213
- package/offsets/ProjectX.ts +82 -46
- package/offsets/TAGame.ts +2977 -2390
- package/offsets/globals.ts +2 -2
- package/package.json +5 -4
- package/parameters/AkAudio.ts +2 -18
- package/parameters/Core.ts +2 -27
- package/parameters/Engine.ts +23 -239
- package/parameters/GFxUI.ts +1 -9
- package/parameters/IpDrv.ts +2 -19
- package/parameters/OnlineSubsystemEOS.ts +8 -231
- package/parameters/ProjectX.ts +335 -282
- package/parameters/TAGame.ts +4082 -2448
- package/structs/Core.ts +1 -7
- package/structs/Engine.ts +0 -12
- package/structs/OnlineSubsystemSteamworks.ts +2 -13
- package/structs/ProjectX.ts +3 -18
- package/structs/TAGame.ts +186 -104
package/structs/Core.ts
CHANGED
|
@@ -4,13 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import type { FScriptDelegate } from '../types/GameDefines';
|
|
7
|
-
import type {
|
|
8
|
-
UDistributionFloat,
|
|
9
|
-
UDistributionVector,
|
|
10
|
-
UInterfaceProperty,
|
|
11
|
-
UObject,
|
|
12
|
-
UObjectProperty,
|
|
13
|
-
} from '../classes/Core';
|
|
7
|
+
import type { UDistributionFloat, UDistributionVector, UInterfaceProperty, UObject, UObjectProperty } from '../classes/Core';
|
|
14
8
|
import type { AlphaBlendType, EInterpCurveMode, EInterpMethodType, OnlinePlatform } from '../enums/Core';
|
|
15
9
|
|
|
16
10
|
/**
|
package/structs/Engine.ts
CHANGED
|
@@ -1838,18 +1838,6 @@ export type FGameClassShortName = {
|
|
|
1838
1838
|
GameClassName: string; // 0x0010 (0x0010) [FString]
|
|
1839
1839
|
};
|
|
1840
1840
|
|
|
1841
|
-
/**
|
|
1842
|
-
* ScriptStruct Engine._Types_Engine.GameClipsMaskArea
|
|
1843
|
-
* Size: 0x0018
|
|
1844
|
-
*/
|
|
1845
|
-
export type FGameClipsMaskArea = {
|
|
1846
|
-
MaskId: bigint; // 0x0000 (0x0008) [uint64]
|
|
1847
|
-
TopLeftX: number; // 0x0008 (0x0004) [float]
|
|
1848
|
-
TopLeftY: number; // 0x000c (0x0004) [float]
|
|
1849
|
-
BottomRightX: number; // 0x0010 (0x0004) [float]
|
|
1850
|
-
BottomRightY: number; // 0x0014 (0x0004) [float]
|
|
1851
|
-
};
|
|
1852
|
-
|
|
1853
1841
|
/**
|
|
1854
1842
|
* ScriptStruct Engine.GameViewportClient.GamepadInfo
|
|
1855
1843
|
* Size: 0x0008
|
|
@@ -4,20 +4,9 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
|
-
import type {
|
|
8
|
-
UHttpRequestInterface,
|
|
9
|
-
UOnlineGameSearch,
|
|
10
|
-
UOnlineGameSettings,
|
|
11
|
-
UOnlineProfileSettings,
|
|
12
|
-
} from '../classes/Engine';
|
|
7
|
+
import type { UHttpRequestInterface, UOnlineGameSearch, UOnlineGameSettings, UOnlineProfileSettings } from '../classes/Engine';
|
|
13
8
|
import type { EOnlineGameSearchEntryType } from '../enums/Engine';
|
|
14
|
-
import type {
|
|
15
|
-
ELeaderboardFormat,
|
|
16
|
-
ELeaderboardSortType,
|
|
17
|
-
ELeaderboardUpdateType,
|
|
18
|
-
EMuteType,
|
|
19
|
-
ESteamMatchmakingType,
|
|
20
|
-
} from '../enums/OnlineSubsystemSteamworks';
|
|
9
|
+
import type { ELeaderboardFormat, ELeaderboardSortType, ELeaderboardUpdateType, EMuteType, ESteamMatchmakingType } from '../enums/OnlineSubsystemSteamworks';
|
|
21
10
|
import type { FMultiMap_Mirror, FPointer, FUniqueNetId } from './Core';
|
|
22
11
|
import type { FEmsFile, FLocalTalker, FOnlinePlayerScore, FSettingsData, FTitleFile } from './Engine';
|
|
23
12
|
|
package/structs/ProjectX.ts
CHANGED
|
@@ -62,23 +62,7 @@ import type {
|
|
|
62
62
|
EWordFilterUsage,
|
|
63
63
|
FakeDataEnum,
|
|
64
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';
|
|
65
|
+
import type { FColor, FEncryptedKeyIndex, FGuid, FInterpCurveFloat, FInterpCurveLinearColor, FInterpCurveVector, FLinearColor, FMap_Mirror, FMatrix, FPointer, FQuat, FRawDistributionFloat, FRotator, FUniqueNetId, FVector } from './Core';
|
|
82
66
|
import type { FPostProcessSettings, FUniqueLobbyId, FViewTargetTransitionParams } from './Engine';
|
|
83
67
|
import type { FASValue } from './GFxUI';
|
|
84
68
|
|
|
@@ -1365,11 +1349,12 @@ export type FOrientation = {
|
|
|
1365
1349
|
|
|
1366
1350
|
/**
|
|
1367
1351
|
* ScriptStruct ProjectX.SystemMetrics_X.OSMetrics
|
|
1368
|
-
* Size:
|
|
1352
|
+
* Size: 0x0030
|
|
1369
1353
|
*/
|
|
1370
1354
|
export type FOSMetrics = {
|
|
1371
1355
|
Type: string; // 0x0000 (0x0010) [FString]
|
|
1372
1356
|
Bits: string; // 0x0010 (0x0010) [FString]
|
|
1357
|
+
Native: string; // 0x0020 (0x0010) [FString]
|
|
1373
1358
|
};
|
|
1374
1359
|
|
|
1375
1360
|
/**
|
package/structs/TAGame.ts
CHANGED
|
@@ -31,17 +31,7 @@ import type {
|
|
|
31
31
|
UTexture2D,
|
|
32
32
|
UTexture2DDynamic,
|
|
33
33
|
} from '../classes/Engine';
|
|
34
|
-
import type {
|
|
35
|
-
UCameraState_X,
|
|
36
|
-
UClubServerResult_X,
|
|
37
|
-
UFXActorEvent_X,
|
|
38
|
-
UFXActor_X,
|
|
39
|
-
UGFxModal_X,
|
|
40
|
-
UGFxShell_X,
|
|
41
|
-
UOnlinePlayer_X,
|
|
42
|
-
URPC_X,
|
|
43
|
-
USignedMessageObject_X,
|
|
44
|
-
} from '../classes/ProjectX';
|
|
34
|
+
import type { UCameraState_X, UClubServerResult_X, UFXActorEvent_X, UFXActor_X, UGFxModal_X, UGFxShell_X, UOnlinePlayer_X, URPC_X, USignedMessageObject_X } from '../classes/ProjectX';
|
|
45
35
|
import type {
|
|
46
36
|
UAnimStateComponent_TA,
|
|
47
37
|
UAntennaComponent_TA,
|
|
@@ -157,6 +147,7 @@ import type {
|
|
|
157
147
|
EProductQuality,
|
|
158
148
|
EProductTradeRestriction,
|
|
159
149
|
EQuickChatState,
|
|
150
|
+
ERemediationMethod,
|
|
160
151
|
ERocketPassNotificationRewardType,
|
|
161
152
|
ERocketPassTierLockState,
|
|
162
153
|
ERocketPassTierType,
|
|
@@ -183,40 +174,9 @@ import type {
|
|
|
183
174
|
RocketPassNotificationType,
|
|
184
175
|
SearchMessageType,
|
|
185
176
|
} from '../enums/TAGame';
|
|
186
|
-
import type {
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
FLinearColor,
|
|
190
|
-
FMap_Mirror,
|
|
191
|
-
FMatrix,
|
|
192
|
-
FPlane,
|
|
193
|
-
FPointer,
|
|
194
|
-
FProductHashID,
|
|
195
|
-
FProductInstanceID,
|
|
196
|
-
FRotator,
|
|
197
|
-
FRotatorRadians,
|
|
198
|
-
FUniqueNetId,
|
|
199
|
-
FVector,
|
|
200
|
-
} from './Core';
|
|
201
|
-
import type {
|
|
202
|
-
FOnlineFriend,
|
|
203
|
-
FParticleSysParam,
|
|
204
|
-
FScalarParameterValue,
|
|
205
|
-
FTextureParameterValue,
|
|
206
|
-
FUniqueLobbyId,
|
|
207
|
-
FVectorParameterValue,
|
|
208
|
-
FViewTargetTransitionParams,
|
|
209
|
-
} from './Engine';
|
|
210
|
-
import type {
|
|
211
|
-
FBindingAction,
|
|
212
|
-
FCustomMatchTeamSettings,
|
|
213
|
-
FEffectsMapping,
|
|
214
|
-
FMapPrefs,
|
|
215
|
-
FPlayerBinding,
|
|
216
|
-
FRankedDisparitySettings,
|
|
217
|
-
FReplicatedRBState,
|
|
218
|
-
FSignedMessagePacket,
|
|
219
|
-
} from './ProjectX';
|
|
177
|
+
import type { FColor, FInterpCurveFloat, FLinearColor, FMap_Mirror, FMatrix, FPlane, FPointer, FProductHashID, FProductInstanceID, FRotator, FRotatorRadians, FUniqueNetId, FVector } from './Core';
|
|
178
|
+
import type { FOnlineFriend, FParticleSysParam, FScalarParameterValue, FTextureParameterValue, FUniqueLobbyId, FVectorParameterValue, FViewTargetTransitionParams } from './Engine';
|
|
179
|
+
import type { FBindingAction, FCustomMatchTeamSettings, FEffectsMapping, FMapPrefs, FPlayerBinding, FRankedDisparitySettings, FReplicatedRBState, FSignedMessagePacket } from './ProjectX';
|
|
220
180
|
|
|
221
181
|
/**
|
|
222
182
|
* ScriptStruct TAGame._Types_TA.AccumulatedRigidBodyCollision
|
|
@@ -551,6 +511,15 @@ export type FBallData = {
|
|
|
551
511
|
LastHitTime: number; // 0x0018 (0x0004) [float]
|
|
552
512
|
};
|
|
553
513
|
|
|
514
|
+
/**
|
|
515
|
+
* ScriptStruct TAGame.Ball_TA.BallExtraData
|
|
516
|
+
* Size: 0x0008
|
|
517
|
+
*/
|
|
518
|
+
export type FBallExtraData = {
|
|
519
|
+
DamageIndex: number; // 0x0000 (0x0004) [int32]
|
|
520
|
+
TargetSpeed: number; // 0x0004 (0x0004) [float]
|
|
521
|
+
};
|
|
522
|
+
|
|
554
523
|
/**
|
|
555
524
|
* ScriptStruct TAGame.CrowdActorSettings_TA.BallHitCrowdNoise
|
|
556
525
|
* Size: 0x0010
|
|
@@ -763,6 +732,19 @@ export type FBoostOptionData = {
|
|
|
763
732
|
LocalizedName: string; // 0x0000 (0x0010) [FString]
|
|
764
733
|
};
|
|
765
734
|
|
|
735
|
+
/**
|
|
736
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.BoostPickupEvent
|
|
737
|
+
* Size: 0x004C
|
|
738
|
+
*/
|
|
739
|
+
export type FBoostPickupEvent = {
|
|
740
|
+
MatchGUID: string; // 0x0000 (0x0010) [FString]
|
|
741
|
+
Player: FPlayerDataPacket; // 0x0010 (0x0018) [FPlayerDataPacket]
|
|
742
|
+
Location: FVector; // 0x0028 (0x000c) [FVector]
|
|
743
|
+
BoostAmount: number; // 0x0034 (0x0004) [float]
|
|
744
|
+
BoostType: string; // 0x0038 (0x0010) [FString]
|
|
745
|
+
bReplay: boolean; // 0x0048 (0x0004) [bool : 0x1]
|
|
746
|
+
};
|
|
747
|
+
|
|
766
748
|
/**
|
|
767
749
|
* ScriptStruct TAGame.SkeletalMeshActorMAT_Products_TA.BothWheelAssets
|
|
768
750
|
* Size: 0x0010
|
|
@@ -1848,14 +1830,30 @@ export type FDemolishInvulnerability = {
|
|
|
1848
1830
|
DemolishSources: EDemolishSource[]; // 0x0008 (0x0010) [TArray<EDemolishSource>]
|
|
1849
1831
|
};
|
|
1850
1832
|
|
|
1833
|
+
/**
|
|
1834
|
+
* ScriptStruct TAGame.DemoSpawnSelectMetrics_TA.DemoSpawnEvent
|
|
1835
|
+
* Size: 0x0058
|
|
1836
|
+
*/
|
|
1837
|
+
export type FDemoSpawnEvent = {
|
|
1838
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1839
|
+
Preference: EDemoSpawnPreference; // 0x0048 (0x0001) [EDemoSpawnPreference]
|
|
1840
|
+
TeamNum: number; // 0x004c (0x0004) [int32]
|
|
1841
|
+
SecondsRemaining: number; // 0x0050 (0x0004) [float]
|
|
1842
|
+
bOverTime: boolean; // 0x0054 (0x0004) [bool : 0x1]
|
|
1843
|
+
};
|
|
1844
|
+
|
|
1851
1845
|
/**
|
|
1852
1846
|
* ScriptStruct TAGame._Types_TA.DemoSpawnSelectionData
|
|
1853
|
-
* Size:
|
|
1847
|
+
* Size: 0x002C
|
|
1854
1848
|
*/
|
|
1855
1849
|
export type FDemoSpawnSelectionData = {
|
|
1856
1850
|
SpawnPreference: EDemoSpawnPreference; // 0x0000 (0x0001) [EDemoSpawnPreference]
|
|
1857
1851
|
SelectionState: EDemoSelectionState; // 0x0001 (0x0001) [EDemoSelectionState]
|
|
1858
1852
|
PercentageTimeLeft: number; // 0x0004 (0x0004) [int32]
|
|
1853
|
+
SpawnActor: UActor; // 0x0008 (0x0008) [UActor*]
|
|
1854
|
+
SpawnIndex: number; // 0x0010 (0x0004) [int32]
|
|
1855
|
+
SpawnLocation: FVector; // 0x0014 (0x000c) [FVector]
|
|
1856
|
+
SpawnRotation: FRotator; // 0x0020 (0x000c) [FRotator]
|
|
1859
1857
|
};
|
|
1860
1858
|
|
|
1861
1859
|
/**
|
|
@@ -2005,29 +2003,6 @@ export type FEngineAudioNativeState_OnGround = FEngineAudioNativeState & {
|
|
|
2005
2003
|
Gear: number; // 0x0044 (0x0004) [int32]
|
|
2006
2004
|
};
|
|
2007
2005
|
|
|
2008
|
-
/**
|
|
2009
|
-
* ScriptStruct TAGame.EOSGameClipsMetrics_TA.EOSGameClipsAccountLinkInfo
|
|
2010
|
-
* Size: 0x0028
|
|
2011
|
-
*/
|
|
2012
|
-
export type FEOSGameClipsAccountLinkInfo = {
|
|
2013
|
-
EpicAccountId: string; // 0x0000 (0x0010) [FString]
|
|
2014
|
-
bLinkedToPostparty: boolean; // 0x0010 (0x0004) [bool : 0x1]
|
|
2015
|
-
Errors: FName[]; // 0x0018 (0x0010) [TArray<FName>]
|
|
2016
|
-
};
|
|
2017
|
-
|
|
2018
|
-
/**
|
|
2019
|
-
* ScriptStruct TAGame.EOSGameClipsMetrics_TA.EOSGameClipsClipInfo
|
|
2020
|
-
* Size: 0x0040
|
|
2021
|
-
*/
|
|
2022
|
-
export type FEOSGameClipsClipInfo = {
|
|
2023
|
-
EpicAccountId: string; // 0x0000 (0x0010) [FString]
|
|
2024
|
-
ClipId: number; // 0x0010 (0x0004) [int32]
|
|
2025
|
-
ClipType: string; // 0x0018 (0x0010) [FString]
|
|
2026
|
-
ClipUploadStartTimestamp: number; // 0x0028 (0x0004) [float]
|
|
2027
|
-
ClipUploadEndTimestamp: number; // 0x002c (0x0004) [float]
|
|
2028
|
-
Errors: FName[]; // 0x0030 (0x0010) [TArray<FName>]
|
|
2029
|
-
};
|
|
2030
|
-
|
|
2031
2006
|
/**
|
|
2032
2007
|
* ScriptStruct TAGame.EOSUserPermissions_TA.EOSPermissionsResponse
|
|
2033
2008
|
* Size: 0x0138
|
|
@@ -2113,6 +2088,7 @@ export type FESportEventData = {
|
|
|
2113
2088
|
ButtonDescription: string; // 0x00c0 (0x0010) [FString]
|
|
2114
2089
|
bShowLiveNow: boolean; // 0x00d0 (0x0004) [bool : 0x1]
|
|
2115
2090
|
bCanNavigateToEventURL: boolean; // 0x00d0 (0x0004) [bool : 0x2]
|
|
2091
|
+
bWorldCup: boolean; // 0x00d0 (0x0004) [bool : 0x4]
|
|
2116
2092
|
};
|
|
2117
2093
|
|
|
2118
2094
|
/**
|
|
@@ -2460,13 +2436,14 @@ export type FGameModeData = {
|
|
|
2460
2436
|
*/
|
|
2461
2437
|
export type FGameUpdateState = {
|
|
2462
2438
|
Teams: FTeamUpdateState[]; // 0x0000 (0x0010) [TArray<FTeamUpdateState>]
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2439
|
+
PlaylistId: number; // 0x0010 (0x0004) [int32]
|
|
2440
|
+
TimeSeconds: number; // 0x0014 (0x0004) [int32]
|
|
2441
|
+
bOverTime: boolean; // 0x0018 (0x0004) [bool : 0x1]
|
|
2442
|
+
frame: number; // 0x001c (0x0004) [int32]
|
|
2443
|
+
Elapsed: number; // 0x0020 (0x0004) [float]
|
|
2444
|
+
Ball: FBallUpdateState; // 0x0024 (0x0008) [FBallUpdateState]
|
|
2445
|
+
bReplay: boolean; // 0x002c (0x0004) [bool : 0x1]
|
|
2446
|
+
bHasWinner: boolean; // 0x002c (0x0004) [bool : 0x2]
|
|
2470
2447
|
Winner: string; // 0x0030 (0x0010) [FString]
|
|
2471
2448
|
Arena: string; // 0x0040 (0x0010) [FString]
|
|
2472
2449
|
bHasTarget: boolean; // 0x0050 (0x0004) [bool : 0x1]
|
|
@@ -3170,7 +3147,7 @@ export type FJiggleCarData = {
|
|
|
3170
3147
|
export type FJsonMetadata = {
|
|
3171
3148
|
UserId: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
3172
3149
|
platformKey: string; // 0x0048 (0x0010) [FString]
|
|
3173
|
-
|
|
3150
|
+
SchemaVersion: number; // 0x0058 (0x0004) [int32]
|
|
3174
3151
|
clientVersion: number; // 0x005c (0x0004) [int32]
|
|
3175
3152
|
timestampUtc: bigint; // 0x0060 (0x0008) [uint64]
|
|
3176
3153
|
settingsVersion: number; // 0x0068 (0x0004) [int32]
|
|
@@ -3248,6 +3225,15 @@ export type FK3SOptions = {
|
|
|
3248
3225
|
Value: string; // 0x0030 (0x0010) [FString]
|
|
3249
3226
|
};
|
|
3250
3227
|
|
|
3228
|
+
/**
|
|
3229
|
+
* ScriptStruct TAGame.K3SUserPermissions_TA.K3SRemediation
|
|
3230
|
+
* Size: 0x0018
|
|
3231
|
+
*/
|
|
3232
|
+
export type FK3SRemediation = {
|
|
3233
|
+
remediationMethod: ERemediationMethod; // 0x0000 (0x0001) [ERemediationMethod]
|
|
3234
|
+
remediationUrl: string; // 0x0008 (0x0010) [FString]
|
|
3235
|
+
};
|
|
3236
|
+
|
|
3251
3237
|
/**
|
|
3252
3238
|
* ScriptStruct TAGame.K3SUserPermissions_TA.K3SResponse
|
|
3253
3239
|
* Size: 0x0010
|
|
@@ -3273,6 +3259,7 @@ export type FK3SSetting = {
|
|
|
3273
3259
|
ParentLimitFromOrgLevel: boolean; // 0x01e8 (0x0004) [bool : 0x1]
|
|
3274
3260
|
PreferredValueFromOrgLevel: boolean; // 0x01e8 (0x0004) [bool : 0x2]
|
|
3275
3261
|
IsOrgLevel: boolean; // 0x01e8 (0x0004) [bool : 0x4]
|
|
3262
|
+
Allowed: boolean; // 0x01e8 (0x0004) [bool : 0x8]
|
|
3276
3263
|
};
|
|
3277
3264
|
|
|
3278
3265
|
/**
|
|
@@ -3352,6 +3339,14 @@ export type FLoadObjectResult = {
|
|
|
3352
3339
|
Code: EBasicLoadResult; // 0x0020 (0x0001) [EBasicLoadResult]
|
|
3353
3340
|
};
|
|
3354
3341
|
|
|
3342
|
+
/**
|
|
3343
|
+
* ScriptStruct TAGame._Types_TA.LoadoutAssetNames
|
|
3344
|
+
* Size: 0x0010
|
|
3345
|
+
*/
|
|
3346
|
+
export type FLoadoutAssetNames = {
|
|
3347
|
+
Assets: string[]; // 0x0000 (0x0010) [TArray<FString>]
|
|
3348
|
+
};
|
|
3349
|
+
|
|
3355
3350
|
/**
|
|
3356
3351
|
* ScriptStruct TAGame._Types_TA.LoadoutAttributesArray
|
|
3357
3352
|
* Size: 0x0010
|
|
@@ -4579,6 +4574,16 @@ export type FPlayerActorIDPair = {
|
|
|
4579
4574
|
PlayerID: FUniqueNetId; // 0x0008 (0x0048) [FUniqueNetId]
|
|
4580
4575
|
};
|
|
4581
4576
|
|
|
4577
|
+
/**
|
|
4578
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.PlayerChangeEvent
|
|
4579
|
+
* Size: 0x0030
|
|
4580
|
+
*/
|
|
4581
|
+
export type FPlayerChangeEvent = {
|
|
4582
|
+
MatchGUID: string; // 0x0000 (0x0010) [FString]
|
|
4583
|
+
PlayerName: string; // 0x0010 (0x0010) [FString]
|
|
4584
|
+
PrimaryID: string; // 0x0020 (0x0010) [FString]
|
|
4585
|
+
};
|
|
4586
|
+
|
|
4582
4587
|
/**
|
|
4583
4588
|
* ScriptStruct TAGame._Types_TA.PlayerChatMessage
|
|
4584
4589
|
* Size: 0x0068
|
|
@@ -4646,6 +4651,16 @@ export type FPlayerMessageInfo = {
|
|
|
4646
4651
|
DisplayName: string; // 0x0010 (0x0010) [FString]
|
|
4647
4652
|
};
|
|
4648
4653
|
|
|
4654
|
+
/**
|
|
4655
|
+
* ScriptStruct TAGame.RLBot_Util_TA.PlayerPickupData
|
|
4656
|
+
* Size: 0x0010
|
|
4657
|
+
*/
|
|
4658
|
+
export type FPlayerPickupData = {
|
|
4659
|
+
PickupClass: FName; // 0x0000 (0x0008) [FName]
|
|
4660
|
+
TimeTillItem: number; // 0x0008 (0x0004) [int32]
|
|
4661
|
+
MaxTimeTillItem: number; // 0x000c (0x0004) [int32]
|
|
4662
|
+
};
|
|
4663
|
+
|
|
4649
4664
|
/**
|
|
4650
4665
|
* ScriptStruct TAGame._Types_TA.PlayerPrivateMatchData
|
|
4651
4666
|
* Size: 0x0050
|
|
@@ -4665,6 +4680,15 @@ export type FPlayerReportReason = {
|
|
|
4665
4680
|
Reason: string; // 0x0008 (0x0010) [FString]
|
|
4666
4681
|
};
|
|
4667
4682
|
|
|
4683
|
+
/**
|
|
4684
|
+
* ScriptStruct TAGame.RPC_GetWorldCupPlayerCountries_TA.PlayerRepresentingTeamData
|
|
4685
|
+
* Size: 0x0058
|
|
4686
|
+
*/
|
|
4687
|
+
export type FPlayerRepresentingTeamData = {
|
|
4688
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
4689
|
+
Country: string; // 0x0048 (0x0010) [FString]
|
|
4690
|
+
};
|
|
4691
|
+
|
|
4668
4692
|
/**
|
|
4669
4693
|
* ScriptStruct TAGame.RLBot_Util_TA.PlayerStats
|
|
4670
4694
|
* Size: 0x001C
|
|
@@ -4681,7 +4705,7 @@ export type FPlayerStats = {
|
|
|
4681
4705
|
|
|
4682
4706
|
/**
|
|
4683
4707
|
* ScriptStruct TAGame._StatsAPITypes_TA.PlayerUpdateState
|
|
4684
|
-
* Size:
|
|
4708
|
+
* Size: 0x0098
|
|
4685
4709
|
*/
|
|
4686
4710
|
export type FPlayerUpdateState = {
|
|
4687
4711
|
Name: string; // 0x0000 (0x0010) [FString]
|
|
@@ -4696,16 +4720,18 @@ export type FPlayerUpdateState = {
|
|
|
4696
4720
|
Touches: number; // 0x003c (0x0004) [int32]
|
|
4697
4721
|
CarTouches: number; // 0x0040 (0x0004) [int32]
|
|
4698
4722
|
Demos: number; // 0x0044 (0x0004) [int32]
|
|
4699
|
-
|
|
4700
|
-
|
|
4701
|
-
|
|
4702
|
-
|
|
4703
|
-
|
|
4704
|
-
|
|
4705
|
-
|
|
4706
|
-
|
|
4707
|
-
|
|
4708
|
-
|
|
4723
|
+
Loadout: string[]; // 0x0048 (0x0010) [TArray<FString>]
|
|
4724
|
+
bOnWall: boolean; // 0x0058 (0x0004) [bool : 0x1]
|
|
4725
|
+
bOnGround: boolean; // 0x0058 (0x0004) [bool : 0x2]
|
|
4726
|
+
bPowersliding: boolean; // 0x0058 (0x0004) [bool : 0x4]
|
|
4727
|
+
bDemolished: boolean; // 0x0058 (0x0004) [bool : 0x8]
|
|
4728
|
+
Attacker: FPlayerDataPacket; // 0x0060 (0x0018) [FPlayerDataPacket]
|
|
4729
|
+
bHasCar: boolean; // 0x0078 (0x0004) [bool : 0x1]
|
|
4730
|
+
Speed: number; // 0x007c (0x0004) [float]
|
|
4731
|
+
Boost: number; // 0x0080 (0x0004) [int32]
|
|
4732
|
+
bBoosting: boolean; // 0x0084 (0x0004) [bool : 0x1]
|
|
4733
|
+
bSupersonic: boolean; // 0x0084 (0x0004) [bool : 0x2]
|
|
4734
|
+
PickupClass: string; // 0x0088 (0x0010) [FString]
|
|
4709
4735
|
};
|
|
4710
4736
|
|
|
4711
4737
|
/**
|
|
@@ -4771,6 +4797,17 @@ export type FPlaylistTitleTrack = FPlaylistTrack & {
|
|
|
4771
4797
|
StartupLogoDisplayDurationMS: number; // 0x0010 (0x0004) [float]
|
|
4772
4798
|
};
|
|
4773
4799
|
|
|
4800
|
+
/**
|
|
4801
|
+
* ScriptStruct TAGame.EOSPermissions_TA.PolicyDecisionAggregation
|
|
4802
|
+
* Size: 0x0030
|
|
4803
|
+
*/
|
|
4804
|
+
export type FPolicyDecisionAggregation = {
|
|
4805
|
+
bDecisionPresent: boolean; // 0x0000 (0x0004) [bool : 0x1]
|
|
4806
|
+
bDecisionDenied: boolean; // 0x0000 (0x0004) [bool : 0x2]
|
|
4807
|
+
DenyReason: string; // 0x0008 (0x0010) [FString]
|
|
4808
|
+
PrimaryRemediation: FK3SRemediation; // 0x0018 (0x0018) [FK3SRemediation]
|
|
4809
|
+
};
|
|
4810
|
+
|
|
4774
4811
|
/**
|
|
4775
4812
|
* ScriptStruct TAGame.GFxData_Credits_TA.PostCreditData
|
|
4776
4813
|
* Size: 0x0040
|
|
@@ -4903,6 +4940,18 @@ export type FProductAttributesArray = {
|
|
|
4903
4940
|
Attributes: UProductAttribute_TA[]; // 0x0000 (0x0010) [TArray<UProductAttribute_TA*>]
|
|
4904
4941
|
};
|
|
4905
4942
|
|
|
4943
|
+
/**
|
|
4944
|
+
* ScriptStruct TAGame.SettingsSnapshotManager_TA.ProductData
|
|
4945
|
+
* Size: 0x0020
|
|
4946
|
+
*/
|
|
4947
|
+
export type FProductData = {
|
|
4948
|
+
InstanceID: FProductInstanceID; // 0x0000 (0x0010) [FProductInstanceID]
|
|
4949
|
+
ProductID: number; // 0x0010 (0x0004) [int32]
|
|
4950
|
+
PaintID: number; // 0x0014 (0x0004) [int32]
|
|
4951
|
+
SpecialEditionID: number; // 0x0018 (0x0004) [int32]
|
|
4952
|
+
TeamEditionId: number; // 0x001c (0x0004) [int32]
|
|
4953
|
+
};
|
|
4954
|
+
|
|
4906
4955
|
/**
|
|
4907
4956
|
* ScriptStruct TAGame._Types_TA.ProductDrop
|
|
4908
4957
|
* Size: 0x0024
|
|
@@ -5092,6 +5141,16 @@ export type FProfileAutoCamSettings = {
|
|
|
5092
5141
|
bFocusOnGoals: boolean; // 0x0024 (0x0004) [bool : 0x2]
|
|
5093
5142
|
};
|
|
5094
5143
|
|
|
5144
|
+
/**
|
|
5145
|
+
* ScriptStruct TAGame._Types_TA.ProfileCameraInputSettings
|
|
5146
|
+
* Size: 0x0004
|
|
5147
|
+
*/
|
|
5148
|
+
export type FProfileCameraInputSettings = {
|
|
5149
|
+
bInvertSwivelPitch: boolean; // 0x0000 (0x0004) [bool : 0x1]
|
|
5150
|
+
bUnconstrainRotation: boolean; // 0x0000 (0x0004) [bool : 0x2]
|
|
5151
|
+
bFreeLookSmoothing: boolean; // 0x0000 (0x0004) [bool : 0x4]
|
|
5152
|
+
};
|
|
5153
|
+
|
|
5095
5154
|
/**
|
|
5096
5155
|
* ScriptStruct TAGame._Types_TA.ProfileCameraSettings
|
|
5097
5156
|
* Size: 0x0020
|
|
@@ -5105,8 +5164,7 @@ export type FProfileCameraSettings = {
|
|
|
5105
5164
|
SwivelSpeed: number; // 0x0014 (0x0004) [float]
|
|
5106
5165
|
TransitionSpeed: number; // 0x0018 (0x0004) [float]
|
|
5107
5166
|
bUnconstrainRotation: boolean; // 0x001c (0x0004) [bool : 0x1]
|
|
5108
|
-
|
|
5109
|
-
bFreeLookSmoothing: boolean; // 0x001c (0x0004) [bool : 0x4]
|
|
5167
|
+
bFreeLookSmoothing: boolean; // 0x001c (0x0004) [bool : 0x2]
|
|
5110
5168
|
};
|
|
5111
5169
|
|
|
5112
5170
|
/**
|
|
@@ -5428,6 +5486,15 @@ export type FReplayScoreData = {
|
|
|
5428
5486
|
ScoreTeam: number; // 0x0018 (0x0001) [uint8]
|
|
5429
5487
|
};
|
|
5430
5488
|
|
|
5489
|
+
/**
|
|
5490
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.ReplayStartedEvent
|
|
5491
|
+
* Size: 0x0020
|
|
5492
|
+
*/
|
|
5493
|
+
export type FReplayStartedEvent = {
|
|
5494
|
+
Filename: string; // 0x0000 (0x0010) [FString]
|
|
5495
|
+
Date: string; // 0x0010 (0x0010) [FString]
|
|
5496
|
+
};
|
|
5497
|
+
|
|
5431
5498
|
/**
|
|
5432
5499
|
* ScriptStruct TAGame.ReplayManager_TA.ReplayTypeData
|
|
5433
5500
|
* Size: 0x0020
|
|
@@ -5489,7 +5556,7 @@ export type FReservationLoadout = {
|
|
|
5489
5556
|
|
|
5490
5557
|
/**
|
|
5491
5558
|
* ScriptStruct TAGame.PhysicsMetrics_TA.ResimMetricData
|
|
5492
|
-
* Size:
|
|
5559
|
+
* Size: 0x0024
|
|
5493
5560
|
*/
|
|
5494
5561
|
export type FResimMetricData = {
|
|
5495
5562
|
GameStateName: FName; // 0x0000 (0x0008) [FName]
|
|
@@ -5498,6 +5565,8 @@ export type FResimMetricData = {
|
|
|
5498
5565
|
MinNumResimFramesPerEvent: number; // 0x0010 (0x0004) [int32]
|
|
5499
5566
|
MaxNumResimFramesPerEvent: number; // 0x0014 (0x0004) [int32]
|
|
5500
5567
|
AverageNumResimFramesPerEvent: number; // 0x0018 (0x0004) [float]
|
|
5568
|
+
AverageCorrectionEventsPerSecond: number; // 0x001c (0x0004) [float]
|
|
5569
|
+
AverageResimFramesPerSecond: number; // 0x0020 (0x0004) [float]
|
|
5501
5570
|
};
|
|
5502
5571
|
|
|
5503
5572
|
/**
|
|
@@ -6507,7 +6576,7 @@ export type FStateParams = {
|
|
|
6507
6576
|
|
|
6508
6577
|
/**
|
|
6509
6578
|
* ScriptStruct TAGame.StatFactory_TA.StatEventCollection
|
|
6510
|
-
* Size:
|
|
6579
|
+
* Size: 0x0250
|
|
6511
6580
|
*/
|
|
6512
6581
|
export type FStatEventCollection = {
|
|
6513
6582
|
Win: UStatEvent_TA; // 0x0000 (0x0008) [UStatEvent_TA*]
|
|
@@ -6572,17 +6641,18 @@ export type FStatEventCollection = {
|
|
|
6572
6641
|
CrossbarHits: UStatEvent_TA; // 0x01d8 (0x0008) [UStatEvent_TA*]
|
|
6573
6642
|
DoubleGrapple: UStatEvent_TA; // 0x01e0 (0x0008) [UStatEvent_TA*]
|
|
6574
6643
|
MaxDodgeStreak: UStatEvent_TA; // 0x01e8 (0x0008) [UStatEvent_TA*]
|
|
6575
|
-
|
|
6576
|
-
|
|
6577
|
-
|
|
6578
|
-
|
|
6579
|
-
|
|
6580
|
-
|
|
6581
|
-
|
|
6582
|
-
|
|
6583
|
-
|
|
6584
|
-
|
|
6585
|
-
|
|
6644
|
+
PowerUpsUsed: UStatEvent_TA; // 0x01f0 (0x0008) [UStatEvent_TA*]
|
|
6645
|
+
InfectedPlayersDefeated: UStatEvent_TA; // 0x01f8 (0x0008) [UStatEvent_TA*]
|
|
6646
|
+
PlayersInfected: UStatEvent_TA; // 0x0200 (0x0008) [UStatEvent_TA*]
|
|
6647
|
+
KeepUpPoint: UStatEvent_TA; // 0x0208 (0x0008) [UStatEvent_TA*]
|
|
6648
|
+
KeepUpPossession: UStatEvent_TA; // 0x0210 (0x0008) [UStatEvent_TA*]
|
|
6649
|
+
KeepUpDenial: UStatEvent_TA; // 0x0218 (0x0008) [UStatEvent_TA*]
|
|
6650
|
+
KeepUpClear: UStatEvent_TA; // 0x0220 (0x0008) [UStatEvent_TA*]
|
|
6651
|
+
FlipReset: UStatEvent_TA; // 0x0228 (0x0008) [UStatEvent_TA*]
|
|
6652
|
+
AerialFlipReset: UStatEvent_TA; // 0x0230 (0x0008) [UStatEvent_TA*]
|
|
6653
|
+
BellyFlipReset: UStatEvent_TA; // 0x0238 (0x0008) [UStatEvent_TA*]
|
|
6654
|
+
AerialBellyFlipReset: UStatEvent_TA; // 0x0240 (0x0008) [UStatEvent_TA*]
|
|
6655
|
+
MaxFlipResetStreak: UStatEvent_TA; // 0x0248 (0x0008) [UStatEvent_TA*]
|
|
6586
6656
|
};
|
|
6587
6657
|
|
|
6588
6658
|
/**
|
|
@@ -7261,10 +7331,11 @@ export type FTurningCircle = {
|
|
|
7261
7331
|
|
|
7262
7332
|
/**
|
|
7263
7333
|
* ScriptStruct TAGame.GFxData_Controls_TA.UIPlayerBinding
|
|
7264
|
-
* Size:
|
|
7334
|
+
* Size: 0x0050
|
|
7265
7335
|
*/
|
|
7266
7336
|
export type FUIPlayerBinding = FPlayerBinding & {
|
|
7267
7337
|
UIKey: string; // 0x0030 (0x0010) [FString]
|
|
7338
|
+
UIAxisKey: string; // 0x0040 (0x0010) [FString]
|
|
7268
7339
|
};
|
|
7269
7340
|
|
|
7270
7341
|
/**
|
|
@@ -7671,6 +7742,17 @@ export type FWorldContactData = {
|
|
|
7671
7742
|
Normal: FVector; // 0x001c (0x000c) [FVector]
|
|
7672
7743
|
};
|
|
7673
7744
|
|
|
7745
|
+
/**
|
|
7746
|
+
* ScriptStruct TAGame.WorldCupConfig_TA.WorldCupData
|
|
7747
|
+
* Size: 0x0034
|
|
7748
|
+
*/
|
|
7749
|
+
export type FWorldCupData = {
|
|
7750
|
+
TeamCodeName: string; // 0x0000 (0x0010) [FString]
|
|
7751
|
+
TeamColor: FLinearColor; // 0x0010 (0x0010) [FLinearColor]
|
|
7752
|
+
TeamColorSecondary: FLinearColor; // 0x0020 (0x0010) [FLinearColor]
|
|
7753
|
+
CosmeticID: number; // 0x0030 (0x0004) [int32]
|
|
7754
|
+
};
|
|
7755
|
+
|
|
7674
7756
|
/**
|
|
7675
7757
|
* ScriptStruct TAGame._Types_TA.XPInfo
|
|
7676
7758
|
* Size: 0x0020
|