@rlsdk/steam 1.0.2 → 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/classes/AkAudio.ts +1 -1
- package/classes/Core.ts +64 -67
- package/classes/Engine.ts +30 -73
- package/classes/IpDrv.ts +9 -9
- package/classes/OnlineSubsystemEOS.ts +56 -130
- package/classes/OnlineSubsystemSteamworks.ts +174 -174
- package/classes/ProjectX.ts +12 -2
- package/classes/TAGame.ts +998 -1005
- package/enums/Core.ts +36 -16
- package/enums/Engine.ts +0 -71
- package/enums/TAGame.ts +20 -1
- package/offsets/AkAudio.ts +1 -1
- package/offsets/Core.ts +64 -67
- 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 +9 -0
- package/offsets/TAGame.ts +973 -905
- package/offsets/globals.ts +2 -2
- package/package.json +1 -1
- package/parameters/Engine.ts +8 -210
- package/parameters/OnlineSubsystemEOS.ts +1 -202
- package/parameters/ProjectX.ts +18 -8
- package/parameters/TAGame.ts +854 -1016
- package/structs/Engine.ts +0 -12
- package/structs/TAGame.ts +87 -45
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
|
package/structs/TAGame.ts
CHANGED
|
@@ -147,6 +147,7 @@ import type {
|
|
|
147
147
|
EProductQuality,
|
|
148
148
|
EProductTradeRestriction,
|
|
149
149
|
EQuickChatState,
|
|
150
|
+
ERemediationMethod,
|
|
150
151
|
ERocketPassNotificationRewardType,
|
|
151
152
|
ERocketPassTierLockState,
|
|
152
153
|
ERocketPassTierType,
|
|
@@ -731,6 +732,19 @@ export type FBoostOptionData = {
|
|
|
731
732
|
LocalizedName: string; // 0x0000 (0x0010) [FString]
|
|
732
733
|
};
|
|
733
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
|
+
|
|
734
748
|
/**
|
|
735
749
|
* ScriptStruct TAGame.SkeletalMeshActorMAT_Products_TA.BothWheelAssets
|
|
736
750
|
* Size: 0x0010
|
|
@@ -1989,29 +2003,6 @@ export type FEngineAudioNativeState_OnGround = FEngineAudioNativeState & {
|
|
|
1989
2003
|
Gear: number; // 0x0044 (0x0004) [int32]
|
|
1990
2004
|
};
|
|
1991
2005
|
|
|
1992
|
-
/**
|
|
1993
|
-
* ScriptStruct TAGame.EOSGameClipsMetrics_TA.EOSGameClipsAccountLinkInfo
|
|
1994
|
-
* Size: 0x0028
|
|
1995
|
-
*/
|
|
1996
|
-
export type FEOSGameClipsAccountLinkInfo = {
|
|
1997
|
-
EpicAccountId: string; // 0x0000 (0x0010) [FString]
|
|
1998
|
-
bLinkedToPostparty: boolean; // 0x0010 (0x0004) [bool : 0x1]
|
|
1999
|
-
Errors: FName[]; // 0x0018 (0x0010) [TArray<FName>]
|
|
2000
|
-
};
|
|
2001
|
-
|
|
2002
|
-
/**
|
|
2003
|
-
* ScriptStruct TAGame.EOSGameClipsMetrics_TA.EOSGameClipsClipInfo
|
|
2004
|
-
* Size: 0x0040
|
|
2005
|
-
*/
|
|
2006
|
-
export type FEOSGameClipsClipInfo = {
|
|
2007
|
-
EpicAccountId: string; // 0x0000 (0x0010) [FString]
|
|
2008
|
-
ClipId: number; // 0x0010 (0x0004) [int32]
|
|
2009
|
-
ClipType: string; // 0x0018 (0x0010) [FString]
|
|
2010
|
-
ClipUploadStartTimestamp: number; // 0x0028 (0x0004) [float]
|
|
2011
|
-
ClipUploadEndTimestamp: number; // 0x002c (0x0004) [float]
|
|
2012
|
-
Errors: FName[]; // 0x0030 (0x0010) [TArray<FName>]
|
|
2013
|
-
};
|
|
2014
|
-
|
|
2015
2006
|
/**
|
|
2016
2007
|
* ScriptStruct TAGame.EOSUserPermissions_TA.EOSPermissionsResponse
|
|
2017
2008
|
* Size: 0x0138
|
|
@@ -2097,6 +2088,7 @@ export type FESportEventData = {
|
|
|
2097
2088
|
ButtonDescription: string; // 0x00c0 (0x0010) [FString]
|
|
2098
2089
|
bShowLiveNow: boolean; // 0x00d0 (0x0004) [bool : 0x1]
|
|
2099
2090
|
bCanNavigateToEventURL: boolean; // 0x00d0 (0x0004) [bool : 0x2]
|
|
2091
|
+
bWorldCup: boolean; // 0x00d0 (0x0004) [bool : 0x4]
|
|
2100
2092
|
};
|
|
2101
2093
|
|
|
2102
2094
|
/**
|
|
@@ -2444,13 +2436,14 @@ export type FGameModeData = {
|
|
|
2444
2436
|
*/
|
|
2445
2437
|
export type FGameUpdateState = {
|
|
2446
2438
|
Teams: FTeamUpdateState[]; // 0x0000 (0x0010) [TArray<FTeamUpdateState>]
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
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]
|
|
2454
2447
|
Winner: string; // 0x0030 (0x0010) [FString]
|
|
2455
2448
|
Arena: string; // 0x0040 (0x0010) [FString]
|
|
2456
2449
|
bHasTarget: boolean; // 0x0050 (0x0004) [bool : 0x1]
|
|
@@ -3154,7 +3147,7 @@ export type FJiggleCarData = {
|
|
|
3154
3147
|
export type FJsonMetadata = {
|
|
3155
3148
|
UserId: FUniqueNetId; // 0x0000 (0x0048) [FUniqueNetId]
|
|
3156
3149
|
platformKey: string; // 0x0048 (0x0010) [FString]
|
|
3157
|
-
|
|
3150
|
+
SchemaVersion: number; // 0x0058 (0x0004) [int32]
|
|
3158
3151
|
clientVersion: number; // 0x005c (0x0004) [int32]
|
|
3159
3152
|
timestampUtc: bigint; // 0x0060 (0x0008) [uint64]
|
|
3160
3153
|
settingsVersion: number; // 0x0068 (0x0004) [int32]
|
|
@@ -3232,6 +3225,15 @@ export type FK3SOptions = {
|
|
|
3232
3225
|
Value: string; // 0x0030 (0x0010) [FString]
|
|
3233
3226
|
};
|
|
3234
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
|
+
|
|
3235
3237
|
/**
|
|
3236
3238
|
* ScriptStruct TAGame.K3SUserPermissions_TA.K3SResponse
|
|
3237
3239
|
* Size: 0x0010
|
|
@@ -3257,6 +3259,7 @@ export type FK3SSetting = {
|
|
|
3257
3259
|
ParentLimitFromOrgLevel: boolean; // 0x01e8 (0x0004) [bool : 0x1]
|
|
3258
3260
|
PreferredValueFromOrgLevel: boolean; // 0x01e8 (0x0004) [bool : 0x2]
|
|
3259
3261
|
IsOrgLevel: boolean; // 0x01e8 (0x0004) [bool : 0x4]
|
|
3262
|
+
Allowed: boolean; // 0x01e8 (0x0004) [bool : 0x8]
|
|
3260
3263
|
};
|
|
3261
3264
|
|
|
3262
3265
|
/**
|
|
@@ -3336,6 +3339,14 @@ export type FLoadObjectResult = {
|
|
|
3336
3339
|
Code: EBasicLoadResult; // 0x0020 (0x0001) [EBasicLoadResult]
|
|
3337
3340
|
};
|
|
3338
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
|
+
|
|
3339
3350
|
/**
|
|
3340
3351
|
* ScriptStruct TAGame._Types_TA.LoadoutAttributesArray
|
|
3341
3352
|
* Size: 0x0010
|
|
@@ -4563,6 +4574,16 @@ export type FPlayerActorIDPair = {
|
|
|
4563
4574
|
PlayerID: FUniqueNetId; // 0x0008 (0x0048) [FUniqueNetId]
|
|
4564
4575
|
};
|
|
4565
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
|
+
|
|
4566
4587
|
/**
|
|
4567
4588
|
* ScriptStruct TAGame._Types_TA.PlayerChatMessage
|
|
4568
4589
|
* Size: 0x0068
|
|
@@ -4635,7 +4656,7 @@ export type FPlayerMessageInfo = {
|
|
|
4635
4656
|
* Size: 0x0010
|
|
4636
4657
|
*/
|
|
4637
4658
|
export type FPlayerPickupData = {
|
|
4638
|
-
PickupClass:
|
|
4659
|
+
PickupClass: FName; // 0x0000 (0x0008) [FName]
|
|
4639
4660
|
TimeTillItem: number; // 0x0008 (0x0004) [int32]
|
|
4640
4661
|
MaxTimeTillItem: number; // 0x000c (0x0004) [int32]
|
|
4641
4662
|
};
|
|
@@ -4684,7 +4705,7 @@ export type FPlayerStats = {
|
|
|
4684
4705
|
|
|
4685
4706
|
/**
|
|
4686
4707
|
* ScriptStruct TAGame._StatsAPITypes_TA.PlayerUpdateState
|
|
4687
|
-
* Size:
|
|
4708
|
+
* Size: 0x0098
|
|
4688
4709
|
*/
|
|
4689
4710
|
export type FPlayerUpdateState = {
|
|
4690
4711
|
Name: string; // 0x0000 (0x0010) [FString]
|
|
@@ -4699,16 +4720,18 @@ export type FPlayerUpdateState = {
|
|
|
4699
4720
|
Touches: number; // 0x003c (0x0004) [int32]
|
|
4700
4721
|
CarTouches: number; // 0x0040 (0x0004) [int32]
|
|
4701
4722
|
Demos: number; // 0x0044 (0x0004) [int32]
|
|
4702
|
-
|
|
4703
|
-
|
|
4704
|
-
|
|
4705
|
-
|
|
4706
|
-
|
|
4707
|
-
|
|
4708
|
-
|
|
4709
|
-
|
|
4710
|
-
|
|
4711
|
-
|
|
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]
|
|
4712
4735
|
};
|
|
4713
4736
|
|
|
4714
4737
|
/**
|
|
@@ -4774,6 +4797,17 @@ export type FPlaylistTitleTrack = FPlaylistTrack & {
|
|
|
4774
4797
|
StartupLogoDisplayDurationMS: number; // 0x0010 (0x0004) [float]
|
|
4775
4798
|
};
|
|
4776
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
|
+
|
|
4777
4811
|
/**
|
|
4778
4812
|
* ScriptStruct TAGame.GFxData_Credits_TA.PostCreditData
|
|
4779
4813
|
* Size: 0x0040
|
|
@@ -5130,8 +5164,7 @@ export type FProfileCameraSettings = {
|
|
|
5130
5164
|
SwivelSpeed: number; // 0x0014 (0x0004) [float]
|
|
5131
5165
|
TransitionSpeed: number; // 0x0018 (0x0004) [float]
|
|
5132
5166
|
bUnconstrainRotation: boolean; // 0x001c (0x0004) [bool : 0x1]
|
|
5133
|
-
|
|
5134
|
-
bFreeLookSmoothing: boolean; // 0x001c (0x0004) [bool : 0x4]
|
|
5167
|
+
bFreeLookSmoothing: boolean; // 0x001c (0x0004) [bool : 0x2]
|
|
5135
5168
|
};
|
|
5136
5169
|
|
|
5137
5170
|
/**
|
|
@@ -5453,6 +5486,15 @@ export type FReplayScoreData = {
|
|
|
5453
5486
|
ScoreTeam: number; // 0x0018 (0x0001) [uint8]
|
|
5454
5487
|
};
|
|
5455
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
|
+
|
|
5456
5498
|
/**
|
|
5457
5499
|
* ScriptStruct TAGame.ReplayManager_TA.ReplayTypeData
|
|
5458
5500
|
* Size: 0x0020
|