@rlsdk/steam 1.0.0 → 1.0.2
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 +1 -12
- package/classes/Core.ts +65 -34
- package/classes/Engine.ts +4 -2
- package/classes/GFxUI.ts +3 -31
- package/classes/IpDrv.ts +1 -11
- package/classes/OnlineSubsystemEOS.ts +114 -74
- package/classes/OnlineSubsystemSteamworks.ts +1 -9
- package/classes/ProjectX.ts +241 -96
- package/classes/TAGame.ts +3516 -2322
- package/classes/WinDrv.ts +1 -8
- package/constants/TAGame.ts +3 -1
- package/enums/Core.ts +56 -0
- package/enums/Engine.ts +4 -2
- package/enums/TAGame.ts +66 -7
- package/offsets/Core.ts +53 -34
- package/offsets/OnlineSubsystemEOS.ts +86 -48
- package/offsets/ProjectX.ts +227 -101
- package/offsets/TAGame.ts +3318 -2296
- package/offsets/globals.ts +2 -2
- package/package.json +5 -4
- package/parameters/AkAudio.ts +2 -18
- package/parameters/Core.ts +84 -27
- package/parameters/Engine.ts +24 -30
- package/parameters/GFxUI.ts +1 -9
- package/parameters/IpDrv.ts +2 -19
- package/parameters/OnlineSubsystemEOS.ts +168 -21
- package/parameters/ProjectX.ts +505 -263
- package/parameters/TAGame.ts +4742 -1449
- package/structs/Core.ts +1 -7
- package/structs/OnlineSubsystemSteamworks.ts +2 -13
- package/structs/ProjectX.ts +26 -34
- package/structs/TAGame.ts +300 -54
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
|
/**
|
|
@@ -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
|
|
|
@@ -1252,7 +1236,7 @@ export type FNetworkAdapterMetrics = {
|
|
|
1252
1236
|
|
|
1253
1237
|
/**
|
|
1254
1238
|
* ScriptStruct ProjectX._Types_X.NewsContent
|
|
1255
|
-
* Size:
|
|
1239
|
+
* Size: 0x00D4
|
|
1256
1240
|
*/
|
|
1257
1241
|
export type FNewsContent = {
|
|
1258
1242
|
Title: string; // 0x0000 (0x0010) [FString]
|
|
@@ -1263,18 +1247,15 @@ export type FNewsContent = {
|
|
|
1263
1247
|
CarName: string; // 0x0050 (0x0010) [FString]
|
|
1264
1248
|
Image: FImageContent[]; // 0x0060 (0x0010) [TArray<FImageContent>]
|
|
1265
1249
|
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]
|
|
1250
|
+
LinkType: string; // 0x0080 (0x0010) [FString]
|
|
1251
|
+
InfoURL: string; // 0x0090 (0x0010) [FString]
|
|
1252
|
+
InfoButtonText: string; // 0x00a0 (0x0010) [FString]
|
|
1253
|
+
EventFolderID: string; // 0x00b0 (0x0010) [FString]
|
|
1254
|
+
ShopID: number; // 0x00c0 (0x0004) [int32]
|
|
1255
|
+
ShopItemID: number; // 0x00c4 (0x0004) [int32]
|
|
1256
|
+
ProductID: number; // 0x00c8 (0x0004) [int32]
|
|
1257
|
+
CategoryID: number; // 0x00cc (0x0004) [int32]
|
|
1258
|
+
PlaylistId: number; // 0x00d0 (0x0004) [int32]
|
|
1278
1259
|
};
|
|
1279
1260
|
|
|
1280
1261
|
/**
|
|
@@ -1287,11 +1268,11 @@ export type FNewsPlacement = {
|
|
|
1287
1268
|
|
|
1288
1269
|
/**
|
|
1289
1270
|
* ScriptStruct ProjectX._Types_X.NewsTileData
|
|
1290
|
-
* Size:
|
|
1271
|
+
* Size: 0x00E8
|
|
1291
1272
|
*/
|
|
1292
1273
|
export type FNewsTileData = {
|
|
1293
|
-
ContentFields: FNewsContent; // 0x0000 (
|
|
1294
|
-
Placements: FNewsPlacement[]; //
|
|
1274
|
+
ContentFields: FNewsContent; // 0x0000 (0x00d8) [FNewsContent]
|
|
1275
|
+
Placements: FNewsPlacement[]; // 0x00d8 (0x0010) [TArray<FNewsPlacement>]
|
|
1295
1276
|
};
|
|
1296
1277
|
|
|
1297
1278
|
/**
|
|
@@ -1368,11 +1349,12 @@ export type FOrientation = {
|
|
|
1368
1349
|
|
|
1369
1350
|
/**
|
|
1370
1351
|
* ScriptStruct ProjectX.SystemMetrics_X.OSMetrics
|
|
1371
|
-
* Size:
|
|
1352
|
+
* Size: 0x0030
|
|
1372
1353
|
*/
|
|
1373
1354
|
export type FOSMetrics = {
|
|
1374
1355
|
Type: string; // 0x0000 (0x0010) [FString]
|
|
1375
1356
|
Bits: string; // 0x0010 (0x0010) [FString]
|
|
1357
|
+
Native: string; // 0x0020 (0x0010) [FString]
|
|
1376
1358
|
};
|
|
1377
1359
|
|
|
1378
1360
|
/**
|
|
@@ -1608,6 +1590,16 @@ export type FPlayerDLCInfo = {
|
|
|
1608
1590
|
TimeLastOwnershipRequest: number; // 0x0070 (0x0004) [float]
|
|
1609
1591
|
};
|
|
1610
1592
|
|
|
1593
|
+
/**
|
|
1594
|
+
* ScriptStruct ProjectX.ServerPlayerIdCache_X.PlayerIdLink
|
|
1595
|
+
* Size: 0x0068
|
|
1596
|
+
*/
|
|
1597
|
+
export type FPlayerIdLink = {
|
|
1598
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1599
|
+
EpicAccountId: string; // 0x0048 (0x0010) [FString]
|
|
1600
|
+
ProductUserId: string; // 0x0058 (0x0010) [FString]
|
|
1601
|
+
};
|
|
1602
|
+
|
|
1611
1603
|
/**
|
|
1612
1604
|
* ScriptStruct ProjectX._Types_X.PlayerPermissions
|
|
1613
1605
|
* Size: 0x0010
|
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,
|
|
@@ -131,6 +121,8 @@ import type {
|
|
|
131
121
|
ECopyAxis,
|
|
132
122
|
ECrowdValueType,
|
|
133
123
|
ECurrency,
|
|
124
|
+
EDemoSelectionState,
|
|
125
|
+
EDemoSpawnPreference,
|
|
134
126
|
EDemolishSource,
|
|
135
127
|
EDifficulty,
|
|
136
128
|
EEngagementEventType,
|
|
@@ -181,40 +173,9 @@ import type {
|
|
|
181
173
|
RocketPassNotificationType,
|
|
182
174
|
SearchMessageType,
|
|
183
175
|
} from '../enums/TAGame';
|
|
184
|
-
import type {
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
FLinearColor,
|
|
188
|
-
FMap_Mirror,
|
|
189
|
-
FMatrix,
|
|
190
|
-
FPlane,
|
|
191
|
-
FPointer,
|
|
192
|
-
FProductHashID,
|
|
193
|
-
FProductInstanceID,
|
|
194
|
-
FRotator,
|
|
195
|
-
FRotatorRadians,
|
|
196
|
-
FUniqueNetId,
|
|
197
|
-
FVector,
|
|
198
|
-
} from './Core';
|
|
199
|
-
import type {
|
|
200
|
-
FOnlineFriend,
|
|
201
|
-
FParticleSysParam,
|
|
202
|
-
FScalarParameterValue,
|
|
203
|
-
FTextureParameterValue,
|
|
204
|
-
FUniqueLobbyId,
|
|
205
|
-
FVectorParameterValue,
|
|
206
|
-
FViewTargetTransitionParams,
|
|
207
|
-
} from './Engine';
|
|
208
|
-
import type {
|
|
209
|
-
FBindingAction,
|
|
210
|
-
FCustomMatchTeamSettings,
|
|
211
|
-
FEffectsMapping,
|
|
212
|
-
FMapPrefs,
|
|
213
|
-
FPlayerBinding,
|
|
214
|
-
FRankedDisparitySettings,
|
|
215
|
-
FReplicatedRBState,
|
|
216
|
-
FSignedMessagePacket,
|
|
217
|
-
} from './ProjectX';
|
|
176
|
+
import type { FColor, FInterpCurveFloat, FLinearColor, FMap_Mirror, FMatrix, FPlane, FPointer, FProductHashID, FProductInstanceID, FRotator, FRotatorRadians, FUniqueNetId, FVector } from './Core';
|
|
177
|
+
import type { FOnlineFriend, FParticleSysParam, FScalarParameterValue, FTextureParameterValue, FUniqueLobbyId, FVectorParameterValue, FViewTargetTransitionParams } from './Engine';
|
|
178
|
+
import type { FBindingAction, FCustomMatchTeamSettings, FEffectsMapping, FMapPrefs, FPlayerBinding, FRankedDisparitySettings, FReplicatedRBState, FSignedMessagePacket } from './ProjectX';
|
|
218
179
|
|
|
219
180
|
/**
|
|
220
181
|
* ScriptStruct TAGame._Types_TA.AccumulatedRigidBodyCollision
|
|
@@ -438,6 +399,15 @@ export type FAnimatedMaterialParamFloat = FAnimatedMaterialParam & {
|
|
|
438
399
|
Value: UDistributionFloat; // 0x0008 (0x0008) [UDistributionFloat*]
|
|
439
400
|
};
|
|
440
401
|
|
|
402
|
+
/**
|
|
403
|
+
* ScriptStruct TAGame.AntiCheatMessenger_TA.AntiCheatMessage
|
|
404
|
+
* Size: 0x0018
|
|
405
|
+
*/
|
|
406
|
+
export type FAntiCheatMessage = {
|
|
407
|
+
MessageId: number; // 0x0000 (0x0004) [int32]
|
|
408
|
+
MessageParts: string[]; // 0x0008 (0x0010) [TArray<FString>]
|
|
409
|
+
};
|
|
410
|
+
|
|
441
411
|
/**
|
|
442
412
|
* ScriptStruct TAGame._Types_TA.AppliedBreakoutDamage
|
|
443
413
|
* Size: 0x0018
|
|
@@ -540,6 +510,15 @@ export type FBallData = {
|
|
|
540
510
|
LastHitTime: number; // 0x0018 (0x0004) [float]
|
|
541
511
|
};
|
|
542
512
|
|
|
513
|
+
/**
|
|
514
|
+
* ScriptStruct TAGame.Ball_TA.BallExtraData
|
|
515
|
+
* Size: 0x0008
|
|
516
|
+
*/
|
|
517
|
+
export type FBallExtraData = {
|
|
518
|
+
DamageIndex: number; // 0x0000 (0x0004) [int32]
|
|
519
|
+
TargetSpeed: number; // 0x0004 (0x0004) [float]
|
|
520
|
+
};
|
|
521
|
+
|
|
543
522
|
/**
|
|
544
523
|
* ScriptStruct TAGame.CrowdActorSettings_TA.BallHitCrowdNoise
|
|
545
524
|
* Size: 0x0010
|
|
@@ -591,6 +570,15 @@ export type FBallInfo = {
|
|
|
591
570
|
CrossbarHitTime: number; // 0x003c (0x0004) [float]
|
|
592
571
|
};
|
|
593
572
|
|
|
573
|
+
/**
|
|
574
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.BallLastTouchData
|
|
575
|
+
* Size: 0x001C
|
|
576
|
+
*/
|
|
577
|
+
export type FBallLastTouchData = {
|
|
578
|
+
Player: FPlayerDataPacket; // 0x0000 (0x0018) [FPlayerDataPacket]
|
|
579
|
+
Speed: number; // 0x0018 (0x0004) [float]
|
|
580
|
+
};
|
|
581
|
+
|
|
594
582
|
/**
|
|
595
583
|
* ScriptStruct TAGame._Types_TA.BallPredictionInfo
|
|
596
584
|
* Size: 0x003C
|
|
@@ -606,6 +594,25 @@ export type FBallPredictionInfo = {
|
|
|
606
594
|
bHitGround: boolean; // 0x0038 (0x0004) [bool : 0x2]
|
|
607
595
|
};
|
|
608
596
|
|
|
597
|
+
/**
|
|
598
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.BallPreHitData
|
|
599
|
+
* Size: 0x0014
|
|
600
|
+
*/
|
|
601
|
+
export type FBallPreHitData = {
|
|
602
|
+
PreHitSpeed: number; // 0x0000 (0x0004) [float]
|
|
603
|
+
PostHitSpeed: number; // 0x0004 (0x0004) [float]
|
|
604
|
+
Location: FVector; // 0x0008 (0x000c) [FVector]
|
|
605
|
+
};
|
|
606
|
+
|
|
607
|
+
/**
|
|
608
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.BallUpdateState
|
|
609
|
+
* Size: 0x0008
|
|
610
|
+
*/
|
|
611
|
+
export type FBallUpdateState = {
|
|
612
|
+
Speed: number; // 0x0000 (0x0004) [float]
|
|
613
|
+
TeamNum: number; // 0x0004 (0x0004) [int32]
|
|
614
|
+
};
|
|
615
|
+
|
|
609
616
|
/**
|
|
610
617
|
* ScriptStruct TAGame.SonyPricingInfo_TA.BaseInput
|
|
611
618
|
* Size: 0x0044
|
|
@@ -1417,6 +1424,16 @@ export type FClientPacketData = {
|
|
|
1417
1424
|
Frames: FClientFrameData[]; // 0x0020 (0x0010) [TArray<FClientFrameData>]
|
|
1418
1425
|
};
|
|
1419
1426
|
|
|
1427
|
+
/**
|
|
1428
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.ClockUpdatedEvent
|
|
1429
|
+
* Size: 0x0018
|
|
1430
|
+
*/
|
|
1431
|
+
export type FClockUpdatedEvent = {
|
|
1432
|
+
MatchGUID: string; // 0x0000 (0x0010) [FString]
|
|
1433
|
+
TimeSeconds: number; // 0x0010 (0x0004) [int32]
|
|
1434
|
+
bOverTime: boolean; // 0x0014 (0x0004) [bool : 0x1]
|
|
1435
|
+
};
|
|
1436
|
+
|
|
1420
1437
|
/**
|
|
1421
1438
|
* ScriptStruct TAGame.GameEvent_Soccar_TA.ClubMemberCount
|
|
1422
1439
|
* Size: 0x0010
|
|
@@ -1524,6 +1541,18 @@ export type FCredentialItem = {
|
|
|
1524
1541
|
Credentials: FTourPrivateCredentials; // 0x0008 (0x0020) [FTourPrivateCredentials]
|
|
1525
1542
|
};
|
|
1526
1543
|
|
|
1544
|
+
/**
|
|
1545
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.CrossbarHitData
|
|
1546
|
+
* Size: 0x0048
|
|
1547
|
+
*/
|
|
1548
|
+
export type FCrossbarHitData = {
|
|
1549
|
+
MatchGUID: string; // 0x0000 (0x0010) [FString]
|
|
1550
|
+
BallLocation: FVector; // 0x0010 (0x000c) [FVector]
|
|
1551
|
+
BallSpeed: number; // 0x001c (0x0004) [float]
|
|
1552
|
+
ImpactForce: number; // 0x0020 (0x0004) [float]
|
|
1553
|
+
BallLastTouch: FBallLastTouchData; // 0x0028 (0x0020) [FBallLastTouchData]
|
|
1554
|
+
};
|
|
1555
|
+
|
|
1527
1556
|
/**
|
|
1528
1557
|
* ScriptStruct TAGame.PlayerController_TA.CrosshairExtentInfo
|
|
1529
1558
|
* Size: 0x0010
|
|
@@ -1787,6 +1816,32 @@ export type FDemolishInvulnerability = {
|
|
|
1787
1816
|
DemolishSources: EDemolishSource[]; // 0x0008 (0x0010) [TArray<EDemolishSource>]
|
|
1788
1817
|
};
|
|
1789
1818
|
|
|
1819
|
+
/**
|
|
1820
|
+
* ScriptStruct TAGame.DemoSpawnSelectMetrics_TA.DemoSpawnEvent
|
|
1821
|
+
* Size: 0x0058
|
|
1822
|
+
*/
|
|
1823
|
+
export type FDemoSpawnEvent = {
|
|
1824
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
1825
|
+
Preference: EDemoSpawnPreference; // 0x0048 (0x0001) [EDemoSpawnPreference]
|
|
1826
|
+
TeamNum: number; // 0x004c (0x0004) [int32]
|
|
1827
|
+
SecondsRemaining: number; // 0x0050 (0x0004) [float]
|
|
1828
|
+
bOverTime: boolean; // 0x0054 (0x0004) [bool : 0x1]
|
|
1829
|
+
};
|
|
1830
|
+
|
|
1831
|
+
/**
|
|
1832
|
+
* ScriptStruct TAGame._Types_TA.DemoSpawnSelectionData
|
|
1833
|
+
* Size: 0x002C
|
|
1834
|
+
*/
|
|
1835
|
+
export type FDemoSpawnSelectionData = {
|
|
1836
|
+
SpawnPreference: EDemoSpawnPreference; // 0x0000 (0x0001) [EDemoSpawnPreference]
|
|
1837
|
+
SelectionState: EDemoSelectionState; // 0x0001 (0x0001) [EDemoSelectionState]
|
|
1838
|
+
PercentageTimeLeft: number; // 0x0004 (0x0004) [int32]
|
|
1839
|
+
SpawnActor: UActor; // 0x0008 (0x0008) [UActor*]
|
|
1840
|
+
SpawnIndex: number; // 0x0010 (0x0004) [int32]
|
|
1841
|
+
SpawnLocation: FVector; // 0x0014 (0x000c) [FVector]
|
|
1842
|
+
SpawnRotation: FRotator; // 0x0020 (0x000c) [FRotator]
|
|
1843
|
+
};
|
|
1844
|
+
|
|
1790
1845
|
/**
|
|
1791
1846
|
* ScriptStruct TAGame.GFxData_Credits_TA.DepartmentData
|
|
1792
1847
|
* Size: 0x0030
|
|
@@ -2383,6 +2438,25 @@ export type FGameModeData = {
|
|
|
2383
2438
|
SortIdx: number; // 0x0018 (0x0004) [int32]
|
|
2384
2439
|
};
|
|
2385
2440
|
|
|
2441
|
+
/**
|
|
2442
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.GameUpdateState
|
|
2443
|
+
* Size: 0x0070
|
|
2444
|
+
*/
|
|
2445
|
+
export type FGameUpdateState = {
|
|
2446
|
+
Teams: FTeamUpdateState[]; // 0x0000 (0x0010) [TArray<FTeamUpdateState>]
|
|
2447
|
+
TimeSeconds: number; // 0x0010 (0x0004) [int32]
|
|
2448
|
+
bOverTime: boolean; // 0x0014 (0x0004) [bool : 0x1]
|
|
2449
|
+
frame: number; // 0x0018 (0x0004) [int32]
|
|
2450
|
+
Elapsed: number; // 0x001c (0x0004) [float]
|
|
2451
|
+
Ball: FBallUpdateState; // 0x0020 (0x0008) [FBallUpdateState]
|
|
2452
|
+
bReplay: boolean; // 0x0028 (0x0004) [bool : 0x1]
|
|
2453
|
+
bHasWinner: boolean; // 0x0028 (0x0004) [bool : 0x2]
|
|
2454
|
+
Winner: string; // 0x0030 (0x0010) [FString]
|
|
2455
|
+
Arena: string; // 0x0040 (0x0010) [FString]
|
|
2456
|
+
bHasTarget: boolean; // 0x0050 (0x0004) [bool : 0x1]
|
|
2457
|
+
Target: FPlayerDataPacket; // 0x0058 (0x0018) [FPlayerDataPacket]
|
|
2458
|
+
};
|
|
2459
|
+
|
|
2386
2460
|
/**
|
|
2387
2461
|
* ScriptStruct TAGame.ProductDatabase_TA.GarageFolderData
|
|
2388
2462
|
* Size: 0x0060
|
|
@@ -2834,6 +2908,20 @@ export type FGoalResetOptionData = {
|
|
|
2834
2908
|
LocalizedDescription: string; // 0x0010 (0x0010) [FString]
|
|
2835
2909
|
};
|
|
2836
2910
|
|
|
2911
|
+
/**
|
|
2912
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.GoalScoreDataEvent
|
|
2913
|
+
* Size: 0x0078
|
|
2914
|
+
*/
|
|
2915
|
+
export type FGoalScoreDataEvent = {
|
|
2916
|
+
MatchGUID: string; // 0x0000 (0x0010) [FString]
|
|
2917
|
+
GoalSpeed: number; // 0x0010 (0x0004) [float]
|
|
2918
|
+
GoalTime: number; // 0x0014 (0x0004) [int32]
|
|
2919
|
+
ImpactLocation: FVector; // 0x0018 (0x000c) [FVector]
|
|
2920
|
+
Scorer: FPlayerDataPacket; // 0x0028 (0x0018) [FPlayerDataPacket]
|
|
2921
|
+
Assister: FPlayerDataPacket; // 0x0040 (0x0018) [FPlayerDataPacket]
|
|
2922
|
+
BallLastTouch: FBallLastTouchData; // 0x0058 (0x0020) [FBallLastTouchData]
|
|
2923
|
+
};
|
|
2924
|
+
|
|
2837
2925
|
/**
|
|
2838
2926
|
* ScriptStruct TAGame.StatGraphDrawer_TA.GraphLine
|
|
2839
2927
|
* Size: 0x0028
|
|
@@ -3489,6 +3577,14 @@ export type FMatchData = {
|
|
|
3489
3577
|
ConsecutiveMatchesPlayed: number; // 0x0048 (0x0004) [int32]
|
|
3490
3578
|
};
|
|
3491
3579
|
|
|
3580
|
+
/**
|
|
3581
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.MatchGUIDEvent
|
|
3582
|
+
* Size: 0x0010
|
|
3583
|
+
*/
|
|
3584
|
+
export type FMatchGUIDEvent = {
|
|
3585
|
+
MatchGUID: string; // 0x0000 (0x0010) [FString]
|
|
3586
|
+
};
|
|
3587
|
+
|
|
3492
3588
|
/**
|
|
3493
3589
|
* ScriptStruct TAGame.MatchHistoryMetrics_TA.MatchHistoryChangeTabEvent
|
|
3494
3590
|
* Size: 0x0030
|
|
@@ -3521,6 +3617,15 @@ export type FMatchPreviewData = {
|
|
|
3521
3617
|
TimesPreviewed: number; // 0x0018 (0x0004) [int32]
|
|
3522
3618
|
};
|
|
3523
3619
|
|
|
3620
|
+
/**
|
|
3621
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.MatchWinnerEvent
|
|
3622
|
+
* Size: 0x0014
|
|
3623
|
+
*/
|
|
3624
|
+
export type FMatchWinnerEvent = {
|
|
3625
|
+
MatchGUID: string; // 0x0000 (0x0010) [FString]
|
|
3626
|
+
WinnerTeamNum: number; // 0x0010 (0x0004) [int32]
|
|
3627
|
+
};
|
|
3628
|
+
|
|
3524
3629
|
/**
|
|
3525
3630
|
* ScriptStruct TAGame.ProductOverride_SpecificMaterials_TA.MaterialAndMaterialOverride
|
|
3526
3631
|
* Size: 0x0010
|
|
@@ -4470,6 +4575,16 @@ export type FPlayerChatMessage = {
|
|
|
4470
4575
|
Message: string; // 0x0058 (0x0010) [FString]
|
|
4471
4576
|
};
|
|
4472
4577
|
|
|
4578
|
+
/**
|
|
4579
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.PlayerDataPacket
|
|
4580
|
+
* Size: 0x0018
|
|
4581
|
+
*/
|
|
4582
|
+
export type FPlayerDataPacket = {
|
|
4583
|
+
Name: string; // 0x0000 (0x0010) [FString]
|
|
4584
|
+
Shortcut: number; // 0x0010 (0x0004) [int32]
|
|
4585
|
+
TeamNum: number; // 0x0014 (0x0004) [int32]
|
|
4586
|
+
};
|
|
4587
|
+
|
|
4473
4588
|
/**
|
|
4474
4589
|
* ScriptStruct TAGame.RecentPlayers_TA.PlayerGameID
|
|
4475
4590
|
* Size: 0x0058
|
|
@@ -4515,6 +4630,16 @@ export type FPlayerMessageInfo = {
|
|
|
4515
4630
|
DisplayName: string; // 0x0010 (0x0010) [FString]
|
|
4516
4631
|
};
|
|
4517
4632
|
|
|
4633
|
+
/**
|
|
4634
|
+
* ScriptStruct TAGame.RLBot_Util_TA.PlayerPickupData
|
|
4635
|
+
* Size: 0x0010
|
|
4636
|
+
*/
|
|
4637
|
+
export type FPlayerPickupData = {
|
|
4638
|
+
PickupClass: USpecialPickup_TA; // 0x0000 (0x0008) [USpecialPickup_TA*]
|
|
4639
|
+
TimeTillItem: number; // 0x0008 (0x0004) [int32]
|
|
4640
|
+
MaxTimeTillItem: number; // 0x000c (0x0004) [int32]
|
|
4641
|
+
};
|
|
4642
|
+
|
|
4518
4643
|
/**
|
|
4519
4644
|
* ScriptStruct TAGame._Types_TA.PlayerPrivateMatchData
|
|
4520
4645
|
* Size: 0x0050
|
|
@@ -4534,6 +4659,15 @@ export type FPlayerReportReason = {
|
|
|
4534
4659
|
Reason: string; // 0x0008 (0x0010) [FString]
|
|
4535
4660
|
};
|
|
4536
4661
|
|
|
4662
|
+
/**
|
|
4663
|
+
* ScriptStruct TAGame.RPC_GetWorldCupPlayerCountries_TA.PlayerRepresentingTeamData
|
|
4664
|
+
* Size: 0x0058
|
|
4665
|
+
*/
|
|
4666
|
+
export type FPlayerRepresentingTeamData = {
|
|
4667
|
+
PlayerID: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
4668
|
+
Country: string; // 0x0048 (0x0010) [FString]
|
|
4669
|
+
};
|
|
4670
|
+
|
|
4537
4671
|
/**
|
|
4538
4672
|
* ScriptStruct TAGame.RLBot_Util_TA.PlayerStats
|
|
4539
4673
|
* Size: 0x001C
|
|
@@ -4548,6 +4682,35 @@ export type FPlayerStats = {
|
|
|
4548
4682
|
Demolitions: number; // 0x0018 (0x0004) [int32]
|
|
4549
4683
|
};
|
|
4550
4684
|
|
|
4685
|
+
/**
|
|
4686
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.PlayerUpdateState
|
|
4687
|
+
* Size: 0x0078
|
|
4688
|
+
*/
|
|
4689
|
+
export type FPlayerUpdateState = {
|
|
4690
|
+
Name: string; // 0x0000 (0x0010) [FString]
|
|
4691
|
+
PrimaryID: string; // 0x0010 (0x0010) [FString]
|
|
4692
|
+
Shortcut: number; // 0x0020 (0x0004) [int32]
|
|
4693
|
+
TeamNum: number; // 0x0024 (0x0004) [int32]
|
|
4694
|
+
Score: number; // 0x0028 (0x0004) [int32]
|
|
4695
|
+
Goals: number; // 0x002c (0x0004) [int32]
|
|
4696
|
+
Shots: number; // 0x0030 (0x0004) [int32]
|
|
4697
|
+
Assists: number; // 0x0034 (0x0004) [int32]
|
|
4698
|
+
Saves: number; // 0x0038 (0x0004) [int32]
|
|
4699
|
+
Touches: number; // 0x003c (0x0004) [int32]
|
|
4700
|
+
CarTouches: number; // 0x0040 (0x0004) [int32]
|
|
4701
|
+
Demos: number; // 0x0044 (0x0004) [int32]
|
|
4702
|
+
bOnWall: boolean; // 0x0048 (0x0004) [bool : 0x1]
|
|
4703
|
+
bOnGround: boolean; // 0x0048 (0x0004) [bool : 0x2]
|
|
4704
|
+
bPowersliding: boolean; // 0x0048 (0x0004) [bool : 0x4]
|
|
4705
|
+
bDemolished: boolean; // 0x0048 (0x0004) [bool : 0x8]
|
|
4706
|
+
Attacker: FPlayerDataPacket; // 0x0050 (0x0018) [FPlayerDataPacket]
|
|
4707
|
+
bHasCar: boolean; // 0x0068 (0x0004) [bool : 0x1]
|
|
4708
|
+
Speed: number; // 0x006c (0x0004) [float]
|
|
4709
|
+
Boost: number; // 0x0070 (0x0004) [int32]
|
|
4710
|
+
bBoosting: boolean; // 0x0074 (0x0004) [bool : 0x1]
|
|
4711
|
+
bSupersonic: boolean; // 0x0074 (0x0004) [bool : 0x2]
|
|
4712
|
+
};
|
|
4713
|
+
|
|
4551
4714
|
/**
|
|
4552
4715
|
* ScriptStruct TAGame._Types_TA.VoiceRoomCredentials
|
|
4553
4716
|
* Size: 0x0030
|
|
@@ -4743,6 +4906,18 @@ export type FProductAttributesArray = {
|
|
|
4743
4906
|
Attributes: UProductAttribute_TA[]; // 0x0000 (0x0010) [TArray<UProductAttribute_TA*>]
|
|
4744
4907
|
};
|
|
4745
4908
|
|
|
4909
|
+
/**
|
|
4910
|
+
* ScriptStruct TAGame.SettingsSnapshotManager_TA.ProductData
|
|
4911
|
+
* Size: 0x0020
|
|
4912
|
+
*/
|
|
4913
|
+
export type FProductData = {
|
|
4914
|
+
InstanceID: FProductInstanceID; // 0x0000 (0x0010) [FProductInstanceID]
|
|
4915
|
+
ProductID: number; // 0x0010 (0x0004) [int32]
|
|
4916
|
+
PaintID: number; // 0x0014 (0x0004) [int32]
|
|
4917
|
+
SpecialEditionID: number; // 0x0018 (0x0004) [int32]
|
|
4918
|
+
TeamEditionId: number; // 0x001c (0x0004) [int32]
|
|
4919
|
+
};
|
|
4920
|
+
|
|
4746
4921
|
/**
|
|
4747
4922
|
* ScriptStruct TAGame._Types_TA.ProductDrop
|
|
4748
4923
|
* Size: 0x0024
|
|
@@ -4932,6 +5107,16 @@ export type FProfileAutoCamSettings = {
|
|
|
4932
5107
|
bFocusOnGoals: boolean; // 0x0024 (0x0004) [bool : 0x2]
|
|
4933
5108
|
};
|
|
4934
5109
|
|
|
5110
|
+
/**
|
|
5111
|
+
* ScriptStruct TAGame._Types_TA.ProfileCameraInputSettings
|
|
5112
|
+
* Size: 0x0004
|
|
5113
|
+
*/
|
|
5114
|
+
export type FProfileCameraInputSettings = {
|
|
5115
|
+
bInvertSwivelPitch: boolean; // 0x0000 (0x0004) [bool : 0x1]
|
|
5116
|
+
bUnconstrainRotation: boolean; // 0x0000 (0x0004) [bool : 0x2]
|
|
5117
|
+
bFreeLookSmoothing: boolean; // 0x0000 (0x0004) [bool : 0x4]
|
|
5118
|
+
};
|
|
5119
|
+
|
|
4935
5120
|
/**
|
|
4936
5121
|
* ScriptStruct TAGame._Types_TA.ProfileCameraSettings
|
|
4937
5122
|
* Size: 0x0020
|
|
@@ -4946,6 +5131,7 @@ export type FProfileCameraSettings = {
|
|
|
4946
5131
|
TransitionSpeed: number; // 0x0018 (0x0004) [float]
|
|
4947
5132
|
bUnconstrainRotation: boolean; // 0x001c (0x0004) [bool : 0x1]
|
|
4948
5133
|
bAutoRecenter: boolean; // 0x001c (0x0004) [bool : 0x2]
|
|
5134
|
+
bFreeLookSmoothing: boolean; // 0x001c (0x0004) [bool : 0x4]
|
|
4949
5135
|
};
|
|
4950
5136
|
|
|
4951
5137
|
/**
|
|
@@ -6348,7 +6534,7 @@ export type FStateParams = {
|
|
|
6348
6534
|
|
|
6349
6535
|
/**
|
|
6350
6536
|
* ScriptStruct TAGame.StatFactory_TA.StatEventCollection
|
|
6351
|
-
* Size:
|
|
6537
|
+
* Size: 0x0250
|
|
6352
6538
|
*/
|
|
6353
6539
|
export type FStatEventCollection = {
|
|
6354
6540
|
Win: UStatEvent_TA; // 0x0000 (0x0008) [UStatEvent_TA*]
|
|
@@ -6413,13 +6599,18 @@ export type FStatEventCollection = {
|
|
|
6413
6599
|
CrossbarHits: UStatEvent_TA; // 0x01d8 (0x0008) [UStatEvent_TA*]
|
|
6414
6600
|
DoubleGrapple: UStatEvent_TA; // 0x01e0 (0x0008) [UStatEvent_TA*]
|
|
6415
6601
|
MaxDodgeStreak: UStatEvent_TA; // 0x01e8 (0x0008) [UStatEvent_TA*]
|
|
6416
|
-
|
|
6417
|
-
|
|
6418
|
-
|
|
6419
|
-
|
|
6420
|
-
|
|
6421
|
-
|
|
6422
|
-
|
|
6602
|
+
PowerUpsUsed: UStatEvent_TA; // 0x01f0 (0x0008) [UStatEvent_TA*]
|
|
6603
|
+
InfectedPlayersDefeated: UStatEvent_TA; // 0x01f8 (0x0008) [UStatEvent_TA*]
|
|
6604
|
+
PlayersInfected: UStatEvent_TA; // 0x0200 (0x0008) [UStatEvent_TA*]
|
|
6605
|
+
KeepUpPoint: UStatEvent_TA; // 0x0208 (0x0008) [UStatEvent_TA*]
|
|
6606
|
+
KeepUpPossession: UStatEvent_TA; // 0x0210 (0x0008) [UStatEvent_TA*]
|
|
6607
|
+
KeepUpDenial: UStatEvent_TA; // 0x0218 (0x0008) [UStatEvent_TA*]
|
|
6608
|
+
KeepUpClear: UStatEvent_TA; // 0x0220 (0x0008) [UStatEvent_TA*]
|
|
6609
|
+
FlipReset: UStatEvent_TA; // 0x0228 (0x0008) [UStatEvent_TA*]
|
|
6610
|
+
AerialFlipReset: UStatEvent_TA; // 0x0230 (0x0008) [UStatEvent_TA*]
|
|
6611
|
+
BellyFlipReset: UStatEvent_TA; // 0x0238 (0x0008) [UStatEvent_TA*]
|
|
6612
|
+
AerialBellyFlipReset: UStatEvent_TA; // 0x0240 (0x0008) [UStatEvent_TA*]
|
|
6613
|
+
MaxFlipResetStreak: UStatEvent_TA; // 0x0248 (0x0008) [UStatEvent_TA*]
|
|
6423
6614
|
};
|
|
6424
6615
|
|
|
6425
6616
|
/**
|
|
@@ -6470,6 +6661,27 @@ export type FStatGroupCollection = {
|
|
|
6470
6661
|
Assists: UStatGroup_TA; // 0x0028 (0x0008) [UStatGroup_TA*]
|
|
6471
6662
|
};
|
|
6472
6663
|
|
|
6664
|
+
/**
|
|
6665
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.StatsSocketEvent
|
|
6666
|
+
* Size: 0x0020
|
|
6667
|
+
*/
|
|
6668
|
+
export type FStatsSocketEvent = {
|
|
6669
|
+
Event: string; // 0x0000 (0x0010) [FString]
|
|
6670
|
+
Data: string; // 0x0010 (0x0010) [FString]
|
|
6671
|
+
};
|
|
6672
|
+
|
|
6673
|
+
/**
|
|
6674
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.StatTickerEvent
|
|
6675
|
+
* Size: 0x0060
|
|
6676
|
+
*/
|
|
6677
|
+
export type FStatTickerEvent = {
|
|
6678
|
+
MatchGUID: string; // 0x0000 (0x0010) [FString]
|
|
6679
|
+
EventName: string; // 0x0010 (0x0010) [FString]
|
|
6680
|
+
Type: string; // 0x0020 (0x0010) [FString]
|
|
6681
|
+
MainTarget: FPlayerDataPacket; // 0x0030 (0x0018) [FPlayerDataPacket]
|
|
6682
|
+
SecondaryTarget: FPlayerDataPacket; // 0x0048 (0x0018) [FPlayerDataPacket]
|
|
6683
|
+
};
|
|
6684
|
+
|
|
6473
6685
|
/**
|
|
6474
6686
|
* ScriptStruct TAGame._Types_TA.StatValue
|
|
6475
6687
|
* Size: 0x0014
|
|
@@ -6588,6 +6800,18 @@ export type FTeamUpdateInfo = {
|
|
|
6588
6800
|
Difficulty: number; // 0x0008 (0x0004) [int32]
|
|
6589
6801
|
};
|
|
6590
6802
|
|
|
6803
|
+
/**
|
|
6804
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.TeamUpdateState
|
|
6805
|
+
* Size: 0x0038
|
|
6806
|
+
*/
|
|
6807
|
+
export type FTeamUpdateState = {
|
|
6808
|
+
Name: string; // 0x0000 (0x0010) [FString]
|
|
6809
|
+
TeamNum: number; // 0x0010 (0x0004) [int32]
|
|
6810
|
+
Score: number; // 0x0014 (0x0004) [int32]
|
|
6811
|
+
ColorPrimary: string; // 0x0018 (0x0010) [FString]
|
|
6812
|
+
ColorSecondary: string; // 0x0028 (0x0010) [FString]
|
|
6813
|
+
};
|
|
6814
|
+
|
|
6591
6815
|
/**
|
|
6592
6816
|
* ScriptStruct TAGame.ProductDatabase_TA.TemporaryProduct
|
|
6593
6817
|
* Size: 0x0018
|
|
@@ -7065,10 +7289,11 @@ export type FTurningCircle = {
|
|
|
7065
7289
|
|
|
7066
7290
|
/**
|
|
7067
7291
|
* ScriptStruct TAGame.GFxData_Controls_TA.UIPlayerBinding
|
|
7068
|
-
* Size:
|
|
7292
|
+
* Size: 0x0050
|
|
7069
7293
|
*/
|
|
7070
7294
|
export type FUIPlayerBinding = FPlayerBinding & {
|
|
7071
7295
|
UIKey: string; // 0x0030 (0x0010) [FString]
|
|
7296
|
+
UIAxisKey: string; // 0x0040 (0x0010) [FString]
|
|
7072
7297
|
};
|
|
7073
7298
|
|
|
7074
7299
|
/**
|
|
@@ -7098,6 +7323,16 @@ export type FUniqueNetIdGroup4 = {
|
|
|
7098
7323
|
PlayerIds: FUniqueNetId; // 0x0000 (0x0120) [FUniqueNetId]
|
|
7099
7324
|
};
|
|
7100
7325
|
|
|
7326
|
+
/**
|
|
7327
|
+
* ScriptStruct TAGame._StatsAPITypes_TA.UpdateStateData
|
|
7328
|
+
* Size: 0x0090
|
|
7329
|
+
*/
|
|
7330
|
+
export type FUpdateStateData = {
|
|
7331
|
+
MatchGUID: string; // 0x0000 (0x0010) [FString]
|
|
7332
|
+
Players: FPlayerUpdateState[]; // 0x0010 (0x0010) [TArray<FPlayerUpdateState>]
|
|
7333
|
+
Game: FGameUpdateState; // 0x0020 (0x0070) [FGameUpdateState]
|
|
7334
|
+
};
|
|
7335
|
+
|
|
7101
7336
|
/**
|
|
7102
7337
|
* ScriptStruct TAGame.GFxData_Training_TA.UseAction
|
|
7103
7338
|
* Size: 0x0020
|
|
@@ -7465,6 +7700,17 @@ export type FWorldContactData = {
|
|
|
7465
7700
|
Normal: FVector; // 0x001c (0x000c) [FVector]
|
|
7466
7701
|
};
|
|
7467
7702
|
|
|
7703
|
+
/**
|
|
7704
|
+
* ScriptStruct TAGame.WorldCupConfig_TA.WorldCupData
|
|
7705
|
+
* Size: 0x0034
|
|
7706
|
+
*/
|
|
7707
|
+
export type FWorldCupData = {
|
|
7708
|
+
TeamCodeName: string; // 0x0000 (0x0010) [FString]
|
|
7709
|
+
TeamColor: FLinearColor; // 0x0010 (0x0010) [FLinearColor]
|
|
7710
|
+
TeamColorSecondary: FLinearColor; // 0x0020 (0x0010) [FLinearColor]
|
|
7711
|
+
CosmeticID: number; // 0x0030 (0x0004) [int32]
|
|
7712
|
+
};
|
|
7713
|
+
|
|
7468
7714
|
/**
|
|
7469
7715
|
* ScriptStruct TAGame._Types_TA.XPInfo
|
|
7470
7716
|
* Size: 0x0020
|