@rlsdk/steam 1.0.0 → 1.0.1
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/classes/Core.ts +57 -34
- package/classes/Engine.ts +1 -0
- package/classes/OnlineSubsystemEOS.ts +119 -49
- package/classes/ProjectX.ts +150 -29
- package/classes/TAGame.ts +1341 -835
- package/enums/Core.ts +22 -0
- package/enums/Engine.ts +2 -1
- package/enums/TAGame.ts +39 -3
- package/offsets/Core.ts +45 -34
- package/offsets/OnlineSubsystemEOS.ts +86 -48
- package/offsets/ProjectX.ts +154 -55
- package/offsets/TAGame.ts +1368 -865
- package/offsets/globals.ts +2 -2
- package/package.json +1 -1
- package/parameters/Core.ts +82 -0
- package/parameters/Engine.ts +8 -0
- package/parameters/OnlineSubsystemEOS.ts +170 -1
- package/parameters/ProjectX.ts +208 -9
- package/parameters/TAGame.ts +1563 -66
- package/structs/ProjectX.ts +23 -16
- package/structs/TAGame.ts +210 -4
package/structs/ProjectX.ts
CHANGED
|
@@ -1252,7 +1252,7 @@ export type FNetworkAdapterMetrics = {
|
|
|
1252
1252
|
|
|
1253
1253
|
/**
|
|
1254
1254
|
* ScriptStruct ProjectX._Types_X.NewsContent
|
|
1255
|
-
* Size:
|
|
1255
|
+
* Size: 0x00D4
|
|
1256
1256
|
*/
|
|
1257
1257
|
export type FNewsContent = {
|
|
1258
1258
|
Title: string; // 0x0000 (0x0010) [FString]
|
|
@@ -1263,18 +1263,15 @@ export type FNewsContent = {
|
|
|
1263
1263
|
CarName: string; // 0x0050 (0x0010) [FString]
|
|
1264
1264
|
Image: FImageContent[]; // 0x0060 (0x0010) [TArray<FImageContent>]
|
|
1265
1265
|
Thumbnail: FImageContent[]; // 0x0070 (0x0010) [TArray<FImageContent>]
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
ProductID: number; // 0x00e8 (0x0004) [int32]
|
|
1276
|
-
CategoryID: number; // 0x00ec (0x0004) [int32]
|
|
1277
|
-
PlaylistId: number; // 0x00f0 (0x0004) [int32]
|
|
1266
|
+
LinkType: string; // 0x0080 (0x0010) [FString]
|
|
1267
|
+
InfoURL: string; // 0x0090 (0x0010) [FString]
|
|
1268
|
+
InfoButtonText: string; // 0x00a0 (0x0010) [FString]
|
|
1269
|
+
EventFolderID: string; // 0x00b0 (0x0010) [FString]
|
|
1270
|
+
ShopID: number; // 0x00c0 (0x0004) [int32]
|
|
1271
|
+
ShopItemID: number; // 0x00c4 (0x0004) [int32]
|
|
1272
|
+
ProductID: number; // 0x00c8 (0x0004) [int32]
|
|
1273
|
+
CategoryID: number; // 0x00cc (0x0004) [int32]
|
|
1274
|
+
PlaylistId: number; // 0x00d0 (0x0004) [int32]
|
|
1278
1275
|
};
|
|
1279
1276
|
|
|
1280
1277
|
/**
|
|
@@ -1287,11 +1284,11 @@ export type FNewsPlacement = {
|
|
|
1287
1284
|
|
|
1288
1285
|
/**
|
|
1289
1286
|
* ScriptStruct ProjectX._Types_X.NewsTileData
|
|
1290
|
-
* Size:
|
|
1287
|
+
* Size: 0x00E8
|
|
1291
1288
|
*/
|
|
1292
1289
|
export type FNewsTileData = {
|
|
1293
|
-
ContentFields: FNewsContent; // 0x0000 (
|
|
1294
|
-
Placements: FNewsPlacement[]; //
|
|
1290
|
+
ContentFields: FNewsContent; // 0x0000 (0x00d8) [FNewsContent]
|
|
1291
|
+
Placements: FNewsPlacement[]; // 0x00d8 (0x0010) [TArray<FNewsPlacement>]
|
|
1295
1292
|
};
|
|
1296
1293
|
|
|
1297
1294
|
/**
|
|
@@ -1608,6 +1605,16 @@ export type FPlayerDLCInfo = {
|
|
|
1608
1605
|
TimeLastOwnershipRequest: number; // 0x0070 (0x0004) [float]
|
|
1609
1606
|
};
|
|
1610
1607
|
|
|
1608
|
+
/**
|
|
1609
|
+
* ScriptStruct ProjectX.ServerPlayerIdCache_X.PlayerIdLink
|
|
1610
|
+
* Size: 0x0068
|
|
1611
|
+
*/
|
|
1612
|
+
export type FPlayerIdLink = {
|
|
1613
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1614
|
+
EpicAccountId: string; // 0x0048 (0x0010) [FString]
|
|
1615
|
+
ProductUserId: string; // 0x0058 (0x0010) [FString]
|
|
1616
|
+
};
|
|
1617
|
+
|
|
1611
1618
|
/**
|
|
1612
1619
|
* ScriptStruct ProjectX._Types_X.PlayerPermissions
|
|
1613
1620
|
* Size: 0x0010
|
package/structs/TAGame.ts
CHANGED
|
@@ -131,6 +131,8 @@ import type {
|
|
|
131
131
|
ECopyAxis,
|
|
132
132
|
ECrowdValueType,
|
|
133
133
|
ECurrency,
|
|
134
|
+
EDemoSelectionState,
|
|
135
|
+
EDemoSpawnPreference,
|
|
134
136
|
EDemolishSource,
|
|
135
137
|
EDifficulty,
|
|
136
138
|
EEngagementEventType,
|
|
@@ -438,6 +440,15 @@ export type FAnimatedMaterialParamFloat = FAnimatedMaterialParam & {
|
|
|
438
440
|
Value: UDistributionFloat; // 0x0008 (0x0008) [UDistributionFloat*]
|
|
439
441
|
};
|
|
440
442
|
|
|
443
|
+
/**
|
|
444
|
+
* ScriptStruct TAGame.AntiCheatMessenger_TA.AntiCheatMessage
|
|
445
|
+
* Size: 0x0018
|
|
446
|
+
*/
|
|
447
|
+
export type FAntiCheatMessage = {
|
|
448
|
+
MessageId: number; // 0x0000 (0x0004) [int32]
|
|
449
|
+
MessageParts: string[]; // 0x0008 (0x0010) [TArray<FString>]
|
|
450
|
+
};
|
|
451
|
+
|
|
441
452
|
/**
|
|
442
453
|
* ScriptStruct TAGame._Types_TA.AppliedBreakoutDamage
|
|
443
454
|
* Size: 0x0018
|
|
@@ -591,6 +602,15 @@ export type FBallInfo = {
|
|
|
591
602
|
CrossbarHitTime: number; // 0x003c (0x0004) [float]
|
|
592
603
|
};
|
|
593
604
|
|
|
605
|
+
/**
|
|
606
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.BallLastTouchData
|
|
607
|
+
* Size: 0x001C
|
|
608
|
+
*/
|
|
609
|
+
export type FBallLastTouchData = {
|
|
610
|
+
Player: FPlayerDataPacket; // 0x0000 (0x0018) [FPlayerDataPacket]
|
|
611
|
+
Speed: number; // 0x0018 (0x0004) [float]
|
|
612
|
+
};
|
|
613
|
+
|
|
594
614
|
/**
|
|
595
615
|
* ScriptStruct TAGame._Types_TA.BallPredictionInfo
|
|
596
616
|
* Size: 0x003C
|
|
@@ -606,6 +626,25 @@ export type FBallPredictionInfo = {
|
|
|
606
626
|
bHitGround: boolean; // 0x0038 (0x0004) [bool : 0x2]
|
|
607
627
|
};
|
|
608
628
|
|
|
629
|
+
/**
|
|
630
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.BallPreHitData
|
|
631
|
+
* Size: 0x0014
|
|
632
|
+
*/
|
|
633
|
+
export type FBallPreHitData = {
|
|
634
|
+
PreHitSpeed: number; // 0x0000 (0x0004) [float]
|
|
635
|
+
PostHitSpeed: number; // 0x0004 (0x0004) [float]
|
|
636
|
+
Location: FVector; // 0x0008 (0x000c) [FVector]
|
|
637
|
+
};
|
|
638
|
+
|
|
639
|
+
/**
|
|
640
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.BallUpdateState
|
|
641
|
+
* Size: 0x0008
|
|
642
|
+
*/
|
|
643
|
+
export type FBallUpdateState = {
|
|
644
|
+
Speed: number; // 0x0000 (0x0004) [float]
|
|
645
|
+
TeamNum: number; // 0x0004 (0x0004) [int32]
|
|
646
|
+
};
|
|
647
|
+
|
|
609
648
|
/**
|
|
610
649
|
* ScriptStruct TAGame.SonyPricingInfo_TA.BaseInput
|
|
611
650
|
* Size: 0x0044
|
|
@@ -1417,6 +1456,16 @@ export type FClientPacketData = {
|
|
|
1417
1456
|
Frames: FClientFrameData[]; // 0x0020 (0x0010) [TArray<FClientFrameData>]
|
|
1418
1457
|
};
|
|
1419
1458
|
|
|
1459
|
+
/**
|
|
1460
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.ClockUpdatedEvent
|
|
1461
|
+
* Size: 0x0018
|
|
1462
|
+
*/
|
|
1463
|
+
export type FClockUpdatedEvent = {
|
|
1464
|
+
MatchGUID: string; // 0x0000 (0x0010) [FString]
|
|
1465
|
+
TimeSeconds: number; // 0x0010 (0x0004) [int32]
|
|
1466
|
+
bOverTime: boolean; // 0x0014 (0x0004) [bool : 0x1]
|
|
1467
|
+
};
|
|
1468
|
+
|
|
1420
1469
|
/**
|
|
1421
1470
|
* ScriptStruct TAGame.GameEvent_Soccar_TA.ClubMemberCount
|
|
1422
1471
|
* Size: 0x0010
|
|
@@ -1524,6 +1573,18 @@ export type FCredentialItem = {
|
|
|
1524
1573
|
Credentials: FTourPrivateCredentials; // 0x0008 (0x0020) [FTourPrivateCredentials]
|
|
1525
1574
|
};
|
|
1526
1575
|
|
|
1576
|
+
/**
|
|
1577
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.CrossbarHitData
|
|
1578
|
+
* Size: 0x0048
|
|
1579
|
+
*/
|
|
1580
|
+
export type FCrossbarHitData = {
|
|
1581
|
+
MatchGUID: string; // 0x0000 (0x0010) [FString]
|
|
1582
|
+
BallLocation: FVector; // 0x0010 (0x000c) [FVector]
|
|
1583
|
+
BallSpeed: number; // 0x001c (0x0004) [float]
|
|
1584
|
+
ImpactForce: number; // 0x0020 (0x0004) [float]
|
|
1585
|
+
BallLastTouch: FBallLastTouchData; // 0x0028 (0x0020) [FBallLastTouchData]
|
|
1586
|
+
};
|
|
1587
|
+
|
|
1527
1588
|
/**
|
|
1528
1589
|
* ScriptStruct TAGame.PlayerController_TA.CrosshairExtentInfo
|
|
1529
1590
|
* Size: 0x0010
|
|
@@ -1787,6 +1848,16 @@ export type FDemolishInvulnerability = {
|
|
|
1787
1848
|
DemolishSources: EDemolishSource[]; // 0x0008 (0x0010) [TArray<EDemolishSource>]
|
|
1788
1849
|
};
|
|
1789
1850
|
|
|
1851
|
+
/**
|
|
1852
|
+
* ScriptStruct TAGame._Types_TA.DemoSpawnSelectionData
|
|
1853
|
+
* Size: 0x0008
|
|
1854
|
+
*/
|
|
1855
|
+
export type FDemoSpawnSelectionData = {
|
|
1856
|
+
SpawnPreference: EDemoSpawnPreference; // 0x0000 (0x0001) [EDemoSpawnPreference]
|
|
1857
|
+
SelectionState: EDemoSelectionState; // 0x0001 (0x0001) [EDemoSelectionState]
|
|
1858
|
+
PercentageTimeLeft: number; // 0x0004 (0x0004) [int32]
|
|
1859
|
+
};
|
|
1860
|
+
|
|
1790
1861
|
/**
|
|
1791
1862
|
* ScriptStruct TAGame.GFxData_Credits_TA.DepartmentData
|
|
1792
1863
|
* Size: 0x0030
|
|
@@ -2383,6 +2454,25 @@ export type FGameModeData = {
|
|
|
2383
2454
|
SortIdx: number; // 0x0018 (0x0004) [int32]
|
|
2384
2455
|
};
|
|
2385
2456
|
|
|
2457
|
+
/**
|
|
2458
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.GameUpdateState
|
|
2459
|
+
* Size: 0x0070
|
|
2460
|
+
*/
|
|
2461
|
+
export type FGameUpdateState = {
|
|
2462
|
+
Teams: FTeamUpdateState[]; // 0x0000 (0x0010) [TArray<FTeamUpdateState>]
|
|
2463
|
+
TimeSeconds: number; // 0x0010 (0x0004) [int32]
|
|
2464
|
+
bOverTime: boolean; // 0x0014 (0x0004) [bool : 0x1]
|
|
2465
|
+
frame: number; // 0x0018 (0x0004) [int32]
|
|
2466
|
+
Elapsed: number; // 0x001c (0x0004) [float]
|
|
2467
|
+
Ball: FBallUpdateState; // 0x0020 (0x0008) [FBallUpdateState]
|
|
2468
|
+
bReplay: boolean; // 0x0028 (0x0004) [bool : 0x1]
|
|
2469
|
+
bHasWinner: boolean; // 0x0028 (0x0004) [bool : 0x2]
|
|
2470
|
+
Winner: string; // 0x0030 (0x0010) [FString]
|
|
2471
|
+
Arena: string; // 0x0040 (0x0010) [FString]
|
|
2472
|
+
bHasTarget: boolean; // 0x0050 (0x0004) [bool : 0x1]
|
|
2473
|
+
Target: FPlayerDataPacket; // 0x0058 (0x0018) [FPlayerDataPacket]
|
|
2474
|
+
};
|
|
2475
|
+
|
|
2386
2476
|
/**
|
|
2387
2477
|
* ScriptStruct TAGame.ProductDatabase_TA.GarageFolderData
|
|
2388
2478
|
* Size: 0x0060
|
|
@@ -2834,6 +2924,20 @@ export type FGoalResetOptionData = {
|
|
|
2834
2924
|
LocalizedDescription: string; // 0x0010 (0x0010) [FString]
|
|
2835
2925
|
};
|
|
2836
2926
|
|
|
2927
|
+
/**
|
|
2928
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.GoalScoreDataEvent
|
|
2929
|
+
* Size: 0x0078
|
|
2930
|
+
*/
|
|
2931
|
+
export type FGoalScoreDataEvent = {
|
|
2932
|
+
MatchGUID: string; // 0x0000 (0x0010) [FString]
|
|
2933
|
+
GoalSpeed: number; // 0x0010 (0x0004) [float]
|
|
2934
|
+
GoalTime: number; // 0x0014 (0x0004) [int32]
|
|
2935
|
+
ImpactLocation: FVector; // 0x0018 (0x000c) [FVector]
|
|
2936
|
+
Scorer: FPlayerDataPacket; // 0x0028 (0x0018) [FPlayerDataPacket]
|
|
2937
|
+
Assister: FPlayerDataPacket; // 0x0040 (0x0018) [FPlayerDataPacket]
|
|
2938
|
+
BallLastTouch: FBallLastTouchData; // 0x0058 (0x0020) [FBallLastTouchData]
|
|
2939
|
+
};
|
|
2940
|
+
|
|
2837
2941
|
/**
|
|
2838
2942
|
* ScriptStruct TAGame.StatGraphDrawer_TA.GraphLine
|
|
2839
2943
|
* Size: 0x0028
|
|
@@ -3489,6 +3593,14 @@ export type FMatchData = {
|
|
|
3489
3593
|
ConsecutiveMatchesPlayed: number; // 0x0048 (0x0004) [int32]
|
|
3490
3594
|
};
|
|
3491
3595
|
|
|
3596
|
+
/**
|
|
3597
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.MatchGUIDEvent
|
|
3598
|
+
* Size: 0x0010
|
|
3599
|
+
*/
|
|
3600
|
+
export type FMatchGUIDEvent = {
|
|
3601
|
+
MatchGUID: string; // 0x0000 (0x0010) [FString]
|
|
3602
|
+
};
|
|
3603
|
+
|
|
3492
3604
|
/**
|
|
3493
3605
|
* ScriptStruct TAGame.MatchHistoryMetrics_TA.MatchHistoryChangeTabEvent
|
|
3494
3606
|
* Size: 0x0030
|
|
@@ -3521,6 +3633,15 @@ export type FMatchPreviewData = {
|
|
|
3521
3633
|
TimesPreviewed: number; // 0x0018 (0x0004) [int32]
|
|
3522
3634
|
};
|
|
3523
3635
|
|
|
3636
|
+
/**
|
|
3637
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.MatchWinnerEvent
|
|
3638
|
+
* Size: 0x0014
|
|
3639
|
+
*/
|
|
3640
|
+
export type FMatchWinnerEvent = {
|
|
3641
|
+
MatchGUID: string; // 0x0000 (0x0010) [FString]
|
|
3642
|
+
WinnerTeamNum: number; // 0x0010 (0x0004) [int32]
|
|
3643
|
+
};
|
|
3644
|
+
|
|
3524
3645
|
/**
|
|
3525
3646
|
* ScriptStruct TAGame.ProductOverride_SpecificMaterials_TA.MaterialAndMaterialOverride
|
|
3526
3647
|
* Size: 0x0010
|
|
@@ -4470,6 +4591,16 @@ export type FPlayerChatMessage = {
|
|
|
4470
4591
|
Message: string; // 0x0058 (0x0010) [FString]
|
|
4471
4592
|
};
|
|
4472
4593
|
|
|
4594
|
+
/**
|
|
4595
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.PlayerDataPacket
|
|
4596
|
+
* Size: 0x0018
|
|
4597
|
+
*/
|
|
4598
|
+
export type FPlayerDataPacket = {
|
|
4599
|
+
Name: string; // 0x0000 (0x0010) [FString]
|
|
4600
|
+
Shortcut: number; // 0x0010 (0x0004) [int32]
|
|
4601
|
+
TeamNum: number; // 0x0014 (0x0004) [int32]
|
|
4602
|
+
};
|
|
4603
|
+
|
|
4473
4604
|
/**
|
|
4474
4605
|
* ScriptStruct TAGame.RecentPlayers_TA.PlayerGameID
|
|
4475
4606
|
* Size: 0x0058
|
|
@@ -4548,6 +4679,35 @@ export type FPlayerStats = {
|
|
|
4548
4679
|
Demolitions: number; // 0x0018 (0x0004) [int32]
|
|
4549
4680
|
};
|
|
4550
4681
|
|
|
4682
|
+
/**
|
|
4683
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.PlayerUpdateState
|
|
4684
|
+
* Size: 0x0078
|
|
4685
|
+
*/
|
|
4686
|
+
export type FPlayerUpdateState = {
|
|
4687
|
+
Name: string; // 0x0000 (0x0010) [FString]
|
|
4688
|
+
PrimaryID: string; // 0x0010 (0x0010) [FString]
|
|
4689
|
+
Shortcut: number; // 0x0020 (0x0004) [int32]
|
|
4690
|
+
TeamNum: number; // 0x0024 (0x0004) [int32]
|
|
4691
|
+
Score: number; // 0x0028 (0x0004) [int32]
|
|
4692
|
+
Goals: number; // 0x002c (0x0004) [int32]
|
|
4693
|
+
Shots: number; // 0x0030 (0x0004) [int32]
|
|
4694
|
+
Assists: number; // 0x0034 (0x0004) [int32]
|
|
4695
|
+
Saves: number; // 0x0038 (0x0004) [int32]
|
|
4696
|
+
Touches: number; // 0x003c (0x0004) [int32]
|
|
4697
|
+
CarTouches: number; // 0x0040 (0x0004) [int32]
|
|
4698
|
+
Demos: number; // 0x0044 (0x0004) [int32]
|
|
4699
|
+
bOnWall: boolean; // 0x0048 (0x0004) [bool : 0x1]
|
|
4700
|
+
bOnGround: boolean; // 0x0048 (0x0004) [bool : 0x2]
|
|
4701
|
+
bPowersliding: boolean; // 0x0048 (0x0004) [bool : 0x4]
|
|
4702
|
+
bDemolished: boolean; // 0x0048 (0x0004) [bool : 0x8]
|
|
4703
|
+
Attacker: FPlayerDataPacket; // 0x0050 (0x0018) [FPlayerDataPacket]
|
|
4704
|
+
bHasCar: boolean; // 0x0068 (0x0004) [bool : 0x1]
|
|
4705
|
+
Speed: number; // 0x006c (0x0004) [float]
|
|
4706
|
+
Boost: number; // 0x0070 (0x0004) [int32]
|
|
4707
|
+
bBoosting: boolean; // 0x0074 (0x0004) [bool : 0x1]
|
|
4708
|
+
bSupersonic: boolean; // 0x0074 (0x0004) [bool : 0x2]
|
|
4709
|
+
};
|
|
4710
|
+
|
|
4551
4711
|
/**
|
|
4552
4712
|
* ScriptStruct TAGame._Types_TA.VoiceRoomCredentials
|
|
4553
4713
|
* Size: 0x0030
|
|
@@ -4946,6 +5106,7 @@ export type FProfileCameraSettings = {
|
|
|
4946
5106
|
TransitionSpeed: number; // 0x0018 (0x0004) [float]
|
|
4947
5107
|
bUnconstrainRotation: boolean; // 0x001c (0x0004) [bool : 0x1]
|
|
4948
5108
|
bAutoRecenter: boolean; // 0x001c (0x0004) [bool : 0x2]
|
|
5109
|
+
bFreeLookSmoothing: boolean; // 0x001c (0x0004) [bool : 0x4]
|
|
4949
5110
|
};
|
|
4950
5111
|
|
|
4951
5112
|
/**
|
|
@@ -5328,7 +5489,7 @@ export type FReservationLoadout = {
|
|
|
5328
5489
|
|
|
5329
5490
|
/**
|
|
5330
5491
|
* ScriptStruct TAGame.PhysicsMetrics_TA.ResimMetricData
|
|
5331
|
-
* Size:
|
|
5492
|
+
* Size: 0x001C
|
|
5332
5493
|
*/
|
|
5333
5494
|
export type FResimMetricData = {
|
|
5334
5495
|
GameStateName: FName; // 0x0000 (0x0008) [FName]
|
|
@@ -5337,8 +5498,6 @@ export type FResimMetricData = {
|
|
|
5337
5498
|
MinNumResimFramesPerEvent: number; // 0x0010 (0x0004) [int32]
|
|
5338
5499
|
MaxNumResimFramesPerEvent: number; // 0x0014 (0x0004) [int32]
|
|
5339
5500
|
AverageNumResimFramesPerEvent: number; // 0x0018 (0x0004) [float]
|
|
5340
|
-
AverageCorrectionEventsPerSecond: number; // 0x001c (0x0004) [float]
|
|
5341
|
-
AverageResimFramesPerSecond: number; // 0x0020 (0x0004) [float]
|
|
5342
5501
|
};
|
|
5343
5502
|
|
|
5344
5503
|
/**
|
|
@@ -6348,7 +6507,7 @@ export type FStateParams = {
|
|
|
6348
6507
|
|
|
6349
6508
|
/**
|
|
6350
6509
|
* ScriptStruct TAGame.StatFactory_TA.StatEventCollection
|
|
6351
|
-
* Size:
|
|
6510
|
+
* Size: 0x0248
|
|
6352
6511
|
*/
|
|
6353
6512
|
export type FStatEventCollection = {
|
|
6354
6513
|
Win: UStatEvent_TA; // 0x0000 (0x0008) [UStatEvent_TA*]
|
|
@@ -6420,6 +6579,10 @@ export type FStatEventCollection = {
|
|
|
6420
6579
|
KeepUpDenial: UStatEvent_TA; // 0x0210 (0x0008) [UStatEvent_TA*]
|
|
6421
6580
|
KeepUpClear: UStatEvent_TA; // 0x0218 (0x0008) [UStatEvent_TA*]
|
|
6422
6581
|
FlipReset: UStatEvent_TA; // 0x0220 (0x0008) [UStatEvent_TA*]
|
|
6582
|
+
AerialFlipReset: UStatEvent_TA; // 0x0228 (0x0008) [UStatEvent_TA*]
|
|
6583
|
+
BellyFlipReset: UStatEvent_TA; // 0x0230 (0x0008) [UStatEvent_TA*]
|
|
6584
|
+
AerialBellyFlipReset: UStatEvent_TA; // 0x0238 (0x0008) [UStatEvent_TA*]
|
|
6585
|
+
MaxFlipResetStreak: UStatEvent_TA; // 0x0240 (0x0008) [UStatEvent_TA*]
|
|
6423
6586
|
};
|
|
6424
6587
|
|
|
6425
6588
|
/**
|
|
@@ -6470,6 +6633,27 @@ export type FStatGroupCollection = {
|
|
|
6470
6633
|
Assists: UStatGroup_TA; // 0x0028 (0x0008) [UStatGroup_TA*]
|
|
6471
6634
|
};
|
|
6472
6635
|
|
|
6636
|
+
/**
|
|
6637
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.StatsSocketEvent
|
|
6638
|
+
* Size: 0x0020
|
|
6639
|
+
*/
|
|
6640
|
+
export type FStatsSocketEvent = {
|
|
6641
|
+
Event: string; // 0x0000 (0x0010) [FString]
|
|
6642
|
+
Data: string; // 0x0010 (0x0010) [FString]
|
|
6643
|
+
};
|
|
6644
|
+
|
|
6645
|
+
/**
|
|
6646
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.StatTickerEvent
|
|
6647
|
+
* Size: 0x0060
|
|
6648
|
+
*/
|
|
6649
|
+
export type FStatTickerEvent = {
|
|
6650
|
+
MatchGUID: string; // 0x0000 (0x0010) [FString]
|
|
6651
|
+
EventName: string; // 0x0010 (0x0010) [FString]
|
|
6652
|
+
Type: string; // 0x0020 (0x0010) [FString]
|
|
6653
|
+
MainTarget: FPlayerDataPacket; // 0x0030 (0x0018) [FPlayerDataPacket]
|
|
6654
|
+
SecondaryTarget: FPlayerDataPacket; // 0x0048 (0x0018) [FPlayerDataPacket]
|
|
6655
|
+
};
|
|
6656
|
+
|
|
6473
6657
|
/**
|
|
6474
6658
|
* ScriptStruct TAGame._Types_TA.StatValue
|
|
6475
6659
|
* Size: 0x0014
|
|
@@ -6588,6 +6772,18 @@ export type FTeamUpdateInfo = {
|
|
|
6588
6772
|
Difficulty: number; // 0x0008 (0x0004) [int32]
|
|
6589
6773
|
};
|
|
6590
6774
|
|
|
6775
|
+
/**
|
|
6776
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.TeamUpdateState
|
|
6777
|
+
* Size: 0x0038
|
|
6778
|
+
*/
|
|
6779
|
+
export type FTeamUpdateState = {
|
|
6780
|
+
Name: string; // 0x0000 (0x0010) [FString]
|
|
6781
|
+
TeamNum: number; // 0x0010 (0x0004) [int32]
|
|
6782
|
+
Score: number; // 0x0014 (0x0004) [int32]
|
|
6783
|
+
ColorPrimary: string; // 0x0018 (0x0010) [FString]
|
|
6784
|
+
ColorSecondary: string; // 0x0028 (0x0010) [FString]
|
|
6785
|
+
};
|
|
6786
|
+
|
|
6591
6787
|
/**
|
|
6592
6788
|
* ScriptStruct TAGame.ProductDatabase_TA.TemporaryProduct
|
|
6593
6789
|
* Size: 0x0018
|
|
@@ -7098,6 +7294,16 @@ export type FUniqueNetIdGroup4 = {
|
|
|
7098
7294
|
PlayerIds: FUniqueNetId; // 0x0000 (0x0120) [FUniqueNetId]
|
|
7099
7295
|
};
|
|
7100
7296
|
|
|
7297
|
+
/**
|
|
7298
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.UpdateStateData
|
|
7299
|
+
* Size: 0x0090
|
|
7300
|
+
*/
|
|
7301
|
+
export type FUpdateStateData = {
|
|
7302
|
+
MatchGUID: string; // 0x0000 (0x0010) [FString]
|
|
7303
|
+
Players: FPlayerUpdateState[]; // 0x0010 (0x0010) [TArray<FPlayerUpdateState>]
|
|
7304
|
+
Game: FGameUpdateState; // 0x0020 (0x0070) [FGameUpdateState]
|
|
7305
|
+
};
|
|
7306
|
+
|
|
7101
7307
|
/**
|
|
7102
7308
|
* ScriptStruct TAGame.GFxData_Training_TA.UseAction
|
|
7103
7309
|
* Size: 0x0020
|