@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/enums/Core.ts
CHANGED
|
@@ -1501,6 +1501,28 @@ export enum EContentKeyIndex_PrimeUpdate58 {
|
|
|
1501
1501
|
PrimeUpdate58_MAX = 25,
|
|
1502
1502
|
}
|
|
1503
1503
|
|
|
1504
|
+
/**
|
|
1505
|
+
* Enum Core._Types_Generated.EContentKeyIndex_PrimeUpdate58_1
|
|
1506
|
+
*/
|
|
1507
|
+
export enum EContentKeyIndex_PrimeUpdate58_1 {
|
|
1508
|
+
PrimeUpdate58_1_CF3B2A3A9A8039EC649A6BAAA7371772 = 0,
|
|
1509
|
+
PrimeUpdate58_1_ACBF1B48AA08E857E4DD311C0D0C36DF = 1,
|
|
1510
|
+
PrimeUpdate58_1_313D351B5D987AF464199FC8F38E9A9C = 2,
|
|
1511
|
+
PrimeUpdate58_1_9BBA739BE3D366AC8DF23C8242576770 = 3,
|
|
1512
|
+
PrimeUpdate58_1_61175F3C73C9AC4B87B15551BD766313 = 4,
|
|
1513
|
+
PrimeUpdate58_1_CA00D5EA176DD2DF25408D80EFF99ADE = 5,
|
|
1514
|
+
PrimeUpdate58_1_BC9055AC14E8C1527D9997B47F774977 = 6,
|
|
1515
|
+
PrimeUpdate58_1_FC6C77F454164D3D37A0B76D50662CF9 = 7,
|
|
1516
|
+
PrimeUpdate58_1_D9AD7360BBF1B3C388E62C997FCD5511 = 8,
|
|
1517
|
+
PrimeUpdate58_1_7267B5B2B936B8A51F85CB8285E0718C = 9,
|
|
1518
|
+
PrimeUpdate58_1_88F0C39FCB74847F134AC16A74936D60 = 10,
|
|
1519
|
+
PrimeUpdate58_1_480030AA8F608828CD4492CA4E04E1FE = 11,
|
|
1520
|
+
PrimeUpdate58_1_629192747BBE6AF1AA366B286DA6FB61 = 12,
|
|
1521
|
+
PrimeUpdate58_1_4586F6D6CA8BF044A8EE210F53C7EBB3 = 13,
|
|
1522
|
+
PrimeUpdate58_1_64E0EA7D393651CAA9B405C0DDC587CC = 14,
|
|
1523
|
+
PrimeUpdate58_1_MAX = 15,
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1504
1526
|
/**
|
|
1505
1527
|
* Enum Core.Object.EDebugBreakType
|
|
1506
1528
|
*/
|
package/enums/Engine.ts
CHANGED
|
@@ -1098,7 +1098,8 @@ export enum EHighContrastRenderingID {
|
|
|
1098
1098
|
HighContrastRenderingID_Team0 = 0,
|
|
1099
1099
|
HighContrastRenderingID_Team1 = 1,
|
|
1100
1100
|
HighContrastRenderingID_Neutral = 2,
|
|
1101
|
-
|
|
1101
|
+
HighContrastRenderingID_Ball = 3,
|
|
1102
|
+
HighContrastRenderingID_MAX = 4,
|
|
1102
1103
|
}
|
|
1103
1104
|
|
|
1104
1105
|
/**
|
package/enums/TAGame.ts
CHANGED
|
@@ -686,6 +686,26 @@ export enum EDemolishTarget {
|
|
|
686
686
|
DemolishTarget_MAX = 4,
|
|
687
687
|
}
|
|
688
688
|
|
|
689
|
+
/**
|
|
690
|
+
* Enum TAGame._Types_TA.EDemoSelectionState
|
|
691
|
+
*/
|
|
692
|
+
export enum EDemoSelectionState {
|
|
693
|
+
EDSS_None = 0,
|
|
694
|
+
EDSS_Locked = 1,
|
|
695
|
+
EDSS_Active = 2,
|
|
696
|
+
EDSS_MAX = 3,
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
/**
|
|
700
|
+
* Enum TAGame._Types_TA.EDemoSpawnPreference
|
|
701
|
+
*/
|
|
702
|
+
export enum EDemoSpawnPreference {
|
|
703
|
+
EDSP_None = 0,
|
|
704
|
+
EDSP_Left = 1,
|
|
705
|
+
EDSP_Right = 2,
|
|
706
|
+
EDSP_MAX = 3,
|
|
707
|
+
}
|
|
708
|
+
|
|
689
709
|
/**
|
|
690
710
|
* Enum TAGame.GameEditor_Ring_TA.EDetectionType
|
|
691
711
|
*/
|
|
@@ -807,6 +827,17 @@ export enum EFiveHitType {
|
|
|
807
827
|
FiveHit_MAX = 3,
|
|
808
828
|
}
|
|
809
829
|
|
|
830
|
+
/**
|
|
831
|
+
* Enum TAGame._Types_TA.EFlipResetFxPref
|
|
832
|
+
*/
|
|
833
|
+
export enum EFlipResetFxPref {
|
|
834
|
+
EFRP_Off = 0,
|
|
835
|
+
EFRP_AudioOnly = 1,
|
|
836
|
+
EFRP_VisualOnly = 2,
|
|
837
|
+
EFRP_Enabled = 3,
|
|
838
|
+
EFRP_MAX = 4,
|
|
839
|
+
}
|
|
840
|
+
|
|
810
841
|
/**
|
|
811
842
|
* Enum TAGame.ForceVolume_TA.EForceDirection
|
|
812
843
|
*/
|
|
@@ -891,7 +922,8 @@ export enum EGameplayMusicSetting {
|
|
|
891
922
|
*/
|
|
892
923
|
export enum EGameplaySettingsSaveVersion {
|
|
893
924
|
EGameplaySettingsSaveVersion_ChatFilterDisambiguation = 0,
|
|
894
|
-
|
|
925
|
+
EGameplaySettingsSaveVersion_FlipResetFxAdjustment = 1,
|
|
926
|
+
EGameplaySettingsSaveVersion_MAX = 2,
|
|
895
927
|
}
|
|
896
928
|
|
|
897
929
|
/**
|
|
@@ -1337,7 +1369,8 @@ export enum ENodeBannerType {
|
|
|
1337
1369
|
export enum ENodeEnabledRequirement {
|
|
1338
1370
|
NodeEnabledRequirement_InMainMenu = 0,
|
|
1339
1371
|
NodeEnabledRequirement_RankedEnabled = 1,
|
|
1340
|
-
|
|
1372
|
+
NodeEnabledRequirement_AntiCheat = 2,
|
|
1373
|
+
NodeEnabledRequirement_MAX = 3,
|
|
1341
1374
|
}
|
|
1342
1375
|
|
|
1343
1376
|
/**
|
|
@@ -2073,7 +2106,10 @@ export enum EStatGraphLevel {
|
|
|
2073
2106
|
StatGraphLevel_NetSummary = 4,
|
|
2074
2107
|
StatGraphLevel_NetGraphShort = 5,
|
|
2075
2108
|
StatGraphLevel_NetGraphLong = 6,
|
|
2076
|
-
|
|
2109
|
+
StatGraphLevel_ActorGraphSummary = 7,
|
|
2110
|
+
StatGraphLevel_ActorGraphShort = 8,
|
|
2111
|
+
StatGraphLevel_ActorGraphLong = 9,
|
|
2112
|
+
StatGraphLevel_MAX = 10,
|
|
2077
2113
|
}
|
|
2078
2114
|
|
|
2079
2115
|
/**
|
package/offsets/Core.ts
CHANGED
|
@@ -677,40 +677,42 @@ export const FeatureSystem = {
|
|
|
677
677
|
DynamicLogos: 0x0074n, // 0x0074 (0x0004) [bool : 0x4000000]
|
|
678
678
|
XETagging: 0x0074n, // 0x0074 (0x0004) [bool : 0x8000000]
|
|
679
679
|
PlayMenuV4: 0x0074n, // 0x0074 (0x0004) [bool : 0x10000000]
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
OverrideBoostSound: 0x007cn, // 0x007c (0x0004) [bool :
|
|
713
|
-
SettingsExport: 0x007cn, // 0x007c (0x0004) [bool :
|
|
680
|
+
QuickChatTimeStamp: 0x0074n, // 0x0074 (0x0004) [bool : 0x20000000]
|
|
681
|
+
SoccarPong: 0x0074n, // 0x0074 (0x0004) [bool : 0x40000000]
|
|
682
|
+
OnlineFreeplay: 0x0074n, // 0x0074 (0x0004) [bool : 0x80000000]
|
|
683
|
+
MatchmakingSubRegion: 0x0078n, // 0x0078 (0x0004) [bool : 0x2]
|
|
684
|
+
CrossbarSFX: 0x0078n, // 0x0078 (0x0004) [bool : 0x4]
|
|
685
|
+
RugbyIteration: 0x0078n, // 0x0078 (0x0004) [bool : 0x8]
|
|
686
|
+
ChallengesV2: 0x0078n, // 0x0078 (0x0004) [bool : 0x20]
|
|
687
|
+
PossessionExpanded: 0x0078n, // 0x0078 (0x0004) [bool : 0x40]
|
|
688
|
+
TargetFind: 0x0078n, // 0x0078 (0x0004) [bool : 0x80]
|
|
689
|
+
KeepUp: 0x0078n, // 0x0078 (0x0004) [bool : 0x200]
|
|
690
|
+
RocketPassUpgrades: 0x0078n, // 0x0078 (0x0004) [bool : 0x800]
|
|
691
|
+
PentathlonTournaments: 0x0078n, // 0x0078 (0x0004) [bool : 0x1000]
|
|
692
|
+
DemolishUpdates: 0x0078n, // 0x0078 (0x0004) [bool : 0x2000]
|
|
693
|
+
ViralItem: 0x0078n, // 0x0078 (0x0004) [bool : 0x4000]
|
|
694
|
+
ThankYouMessage: 0x0078n, // 0x0078 (0x0004) [bool : 0x8000]
|
|
695
|
+
AttackerDemoFX: 0x0078n, // 0x0078 (0x0004) [bool : 0x10000]
|
|
696
|
+
NewDriverChallengesV2: 0x0078n, // 0x0078 (0x0004) [bool : 0x20000]
|
|
697
|
+
TextModeration: 0x0078n, // 0x0078 (0x0004) [bool : 0x100000]
|
|
698
|
+
FilterToggle: 0x0078n, // 0x0078 (0x0004) [bool : 0x200000]
|
|
699
|
+
DdosPrevention: 0x0078n, // 0x0078 (0x0004) [bool : 0x400000]
|
|
700
|
+
OunceEnhancements: 0x0078n, // 0x0078 (0x0004) [bool : 0x800000]
|
|
701
|
+
FastFreeplay: 0x0078n, // 0x0078 (0x0004) [bool : 0x1000000]
|
|
702
|
+
MatchAdminMutator: 0x0078n, // 0x0078 (0x0004) [bool : 0x2000000]
|
|
703
|
+
Thistle: 0x0078n, // 0x0078 (0x0004) [bool : 0x4000000]
|
|
704
|
+
DemoFXMutator: 0x0078n, // 0x0078 (0x0004) [bool : 0x8000000]
|
|
705
|
+
OffProdHandling: 0x0078n, // 0x0078 (0x0004) [bool : 0x10000000]
|
|
706
|
+
CustomTrainingSettings: 0x0078n, // 0x0078 (0x0004) [bool : 0x20000000]
|
|
707
|
+
FlipResetIndicator: 0x0078n, // 0x0078 (0x0004) [bool : 0x80000000]
|
|
708
|
+
NewsOverhaul: 0x007cn, // 0x007c (0x0004) [bool : 0x1]
|
|
709
|
+
QueueMenuChanges: 0x007cn, // 0x007c (0x0004) [bool : 0x2]
|
|
710
|
+
VisibleMMR: 0x007cn, // 0x007c (0x0004) [bool : 0x4]
|
|
711
|
+
EasyAntiCheat: 0x007cn, // 0x007c (0x0004) [bool : 0x8]
|
|
712
|
+
OverrideBoostSound: 0x007cn, // 0x007c (0x0004) [bool : 0x10]
|
|
713
|
+
SettingsExport: 0x007cn, // 0x007c (0x0004) [bool : 0x20]
|
|
714
|
+
FreeplayTeamColors: 0x007cn, // 0x007c (0x0004) [bool : 0x400]
|
|
715
|
+
StatsAPI: 0x007cn, // 0x007c (0x0004) [bool : 0x1000]
|
|
714
716
|
...Object_,
|
|
715
717
|
} as const;
|
|
716
718
|
|
|
@@ -1632,6 +1634,15 @@ export const ScriptStruct = {
|
|
|
1632
1634
|
...Struct,
|
|
1633
1635
|
} as const;
|
|
1634
1636
|
|
|
1637
|
+
/**
|
|
1638
|
+
* Core.SQWordProperty Offsets
|
|
1639
|
+
* Size: 0x00c8
|
|
1640
|
+
* Extends: Property
|
|
1641
|
+
*/
|
|
1642
|
+
export const SQWordProperty = {
|
|
1643
|
+
...Property,
|
|
1644
|
+
} as const;
|
|
1645
|
+
|
|
1635
1646
|
/**
|
|
1636
1647
|
* Core.StringMap Offsets
|
|
1637
1648
|
* Size: 0x00d8
|
|
@@ -108,6 +108,43 @@ export const FOnlineStatusMappingEOS = {
|
|
|
108
108
|
StatusString: 0x0008n, // 0x0008 (0x0010) [FString]
|
|
109
109
|
} as const;
|
|
110
110
|
|
|
111
|
+
/**
|
|
112
|
+
* OnlineSubsystemEOS.OnlineAntiCheatInterfaceEOS Offsets
|
|
113
|
+
* Size: 0x0088
|
|
114
|
+
* Extends: Object_
|
|
115
|
+
*/
|
|
116
|
+
export const OnlineAntiCheatInterfaceEOS = {
|
|
117
|
+
PlatformHandle: 0x0060n, // 0x0060 (0x0008) [FPointer]
|
|
118
|
+
PlayerInterfaceEOS: 0x0068n, // 0x0068 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
119
|
+
__EventMessageGenerated__Delegate: 0x0070n, // 0x0070 (0x0018) [FScriptDelegate]
|
|
120
|
+
...Object_,
|
|
121
|
+
} as const;
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* OnlineSubsystemEOS.OnlineAntiCheatClientInterfaceEOS Offsets
|
|
125
|
+
* Size: 0x00c8
|
|
126
|
+
* Extends: OnlineAntiCheatInterfaceEOS
|
|
127
|
+
*/
|
|
128
|
+
export const OnlineAntiCheatClientInterfaceEOS = {
|
|
129
|
+
ClientHandle: 0x0088n, // 0x0088 (0x0008) [FPointer]
|
|
130
|
+
ReportHandle: 0x0090n, // 0x0090 (0x0008) [FPointer]
|
|
131
|
+
__EventClientIntegrityViolation__Delegate: 0x0098n, // 0x0098 (0x0018) [FScriptDelegate]
|
|
132
|
+
__EventPlayerReportComplete__Delegate: 0x00b0n, // 0x00b0 (0x0018) [FScriptDelegate]
|
|
133
|
+
...OnlineAntiCheatInterfaceEOS,
|
|
134
|
+
} as const;
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* OnlineSubsystemEOS.OnlineAntiCheatServerInterfaceEOS Offsets
|
|
138
|
+
* Size: 0x00c0
|
|
139
|
+
* Extends: OnlineAntiCheatInterfaceEOS
|
|
140
|
+
*/
|
|
141
|
+
export const OnlineAntiCheatServerInterfaceEOS = {
|
|
142
|
+
ServerHandle: 0x0088n, // 0x0088 (0x0008) [FPointer]
|
|
143
|
+
__EventClientActionRequired__Delegate: 0x0090n, // 0x0090 (0x0018) [FScriptDelegate]
|
|
144
|
+
__EventClientAuthStatusChanged__Delegate: 0x00a8n, // 0x00a8 (0x0018) [FScriptDelegate]
|
|
145
|
+
...OnlineAntiCheatInterfaceEOS,
|
|
146
|
+
} as const;
|
|
147
|
+
|
|
111
148
|
/**
|
|
112
149
|
* IpDrv.OnlineAuthInterfaceImpl Offsets
|
|
113
150
|
* Size: 0x03c8
|
|
@@ -478,7 +515,7 @@ export const OnlineSubsystemCommonImpl = {
|
|
|
478
515
|
|
|
479
516
|
/**
|
|
480
517
|
* OnlineSubsystemEOS.OnlineSubsystemEOS Offsets
|
|
481
|
-
* Size:
|
|
518
|
+
* Size: 0x0748
|
|
482
519
|
* Extends: OnlineSubsystemCommonImpl
|
|
483
520
|
*/
|
|
484
521
|
export const OnlineSubsystemEOS = {
|
|
@@ -491,53 +528,54 @@ export const OnlineSubsystemEOS = {
|
|
|
491
528
|
UserCloudFileInterfaceEOS: 0x03f0n, // 0x03f0 (0x0008) [UOnlineUserCloudFileInterfaceEOS*]
|
|
492
529
|
VoiceInterfaceEOS: 0x03f8n, // 0x03f8 (0x0008) [UOnlineVoiceInterfaceEOS*]
|
|
493
530
|
GameClipsInterfaceEOS: 0x0400n, // 0x0400 (0x0008) [UOnlineGameClipsInterfaceEOS*]
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
531
|
+
AntiCheatInterfaceEOS: 0x0408n, // 0x0408 (0x0008) [UOnlineAntiCheatInterfaceEOS*]
|
|
532
|
+
SpeechRecognitionCompleteDelegates: 0x0410n, // 0x0410 (0x0010) [TArray<FScriptDelegate>]
|
|
533
|
+
AuthHandle: 0x0420n, // 0x0420 (0x0008) [FPointer]
|
|
534
|
+
FriendsHandle: 0x0428n, // 0x0428 (0x0008) [FPointer]
|
|
535
|
+
UserInfoHandle: 0x0430n, // 0x0430 (0x0008) [FPointer]
|
|
536
|
+
PresenceHandle: 0x0438n, // 0x0438 (0x0008) [FPointer]
|
|
537
|
+
ConnectHandle: 0x0440n, // 0x0440 (0x0008) [FPointer]
|
|
538
|
+
SessionsHandle: 0x0448n, // 0x0448 (0x0008) [FPointer]
|
|
539
|
+
PDSHandle: 0x0450n, // 0x0450 (0x0008) [FPointer]
|
|
540
|
+
StatsHandle: 0x0458n, // 0x0458 (0x0008) [FPointer]
|
|
541
|
+
AchievementsHandle: 0x0460n, // 0x0460 (0x0008) [FPointer]
|
|
542
|
+
EcomHandle: 0x0468n, // 0x0468 (0x0008) [FPointer]
|
|
543
|
+
UIHandle: 0x0470n, // 0x0470 (0x0008) [FPointer]
|
|
544
|
+
RTCHandle: 0x0478n, // 0x0478 (0x0008) [FPointer]
|
|
545
|
+
RTCAudioHandle: 0x0480n, // 0x0480 (0x0008) [FPointer]
|
|
546
|
+
RTCAdminHandle: 0x0488n, // 0x0488 (0x0008) [FPointer]
|
|
547
|
+
GameClipsHandle: 0x0490n, // 0x0490 (0x0008) [FPointer]
|
|
548
|
+
EULATrackingHandle: 0x0498n, // 0x0498 (0x0008) [FPointer]
|
|
549
|
+
bLastTickShouldRecordAudioVal: 0x04a0n, // 0x04a0 (0x0004) [bool : 0x1]
|
|
550
|
+
UnlockedDLC: 0x04a8n, // 0x04a8 (0x0010) [TArray<FName>]
|
|
551
|
+
UnlockedDLCDelegates: 0x04b8n, // 0x04b8 (0x0010) [TArray<FScriptDelegate>]
|
|
552
|
+
ExternalUIChangeDelegates: 0x04c8n, // 0x04c8 (0x0010) [TArray<FScriptDelegate>]
|
|
553
|
+
__OnMicroTxnResponse__Delegate: 0x04d8n, // 0x04d8 (0x0018) [FScriptDelegate]
|
|
554
|
+
__EventGetAppPriceInfoComplete__Delegate: 0x04f0n, // 0x04f0 (0x0018) [FScriptDelegate]
|
|
555
|
+
__OnPlayerTalking__Delegate: 0x0508n, // 0x0508 (0x0018) [FScriptDelegate]
|
|
556
|
+
__OnRecognitionComplete__Delegate: 0x0520n, // 0x0520 (0x0018) [FScriptDelegate]
|
|
557
|
+
__OnReadOnlineStatsComplete__Delegate: 0x0538n, // 0x0538 (0x0018) [FScriptDelegate]
|
|
558
|
+
__OnRegisterHostStatGuidComplete__Delegate: 0x0550n, // 0x0550 (0x0018) [FScriptDelegate]
|
|
559
|
+
__OnFlushOnlineStatsComplete__Delegate: 0x0568n, // 0x0568 (0x0018) [FScriptDelegate]
|
|
560
|
+
__OnLinkStatusChange__Delegate: 0x0580n, // 0x0580 (0x0018) [FScriptDelegate]
|
|
561
|
+
__OnExternalUIChange__Delegate: 0x0598n, // 0x0598 (0x0018) [FScriptDelegate]
|
|
562
|
+
__OnControllerChange__Delegate: 0x05b0n, // 0x05b0 (0x0018) [FScriptDelegate]
|
|
563
|
+
__OnConnectionStatusChange__Delegate: 0x05c8n, // 0x05c8 (0x0018) [FScriptDelegate]
|
|
564
|
+
__OnStorageDeviceChange__Delegate: 0x05e0n, // 0x05e0 (0x0018) [FScriptDelegate]
|
|
565
|
+
__OnCreateOnlineAccountCompleted__Delegate: 0x05f8n, // 0x05f8 (0x0018) [FScriptDelegate]
|
|
566
|
+
__OnPlayerTalkingStateChange__Delegate: 0x0610n, // 0x0610 (0x0018) [FScriptDelegate]
|
|
567
|
+
__OnCloseKickPlayerDialog__Delegate: 0x0628n, // 0x0628 (0x0018) [FScriptDelegate]
|
|
568
|
+
__OnCommerceDialogClosed__Delegate: 0x0640n, // 0x0640 (0x0018) [FScriptDelegate]
|
|
569
|
+
__OnErrorDialogClosed__Delegate: 0x0658n, // 0x0658 (0x0018) [FScriptDelegate]
|
|
570
|
+
__OnUnlockedDLCChange__Delegate: 0x0670n, // 0x0670 (0x0018) [FScriptDelegate]
|
|
571
|
+
__OnStorePurchaseCompleteDelegate__Delegate: 0x0688n, // 0x0688 (0x0018) [FScriptDelegate]
|
|
572
|
+
__OnUserOrphaned__Delegate: 0x06a0n, // 0x06a0 (0x0018) [FScriptDelegate]
|
|
573
|
+
__OnUserRestored__Delegate: 0x06b8n, // 0x06b8 (0x0018) [FScriptDelegate]
|
|
574
|
+
__OnPlayerSigningOut__Delegate: 0x06d0n, // 0x06d0 (0x0018) [FScriptDelegate]
|
|
575
|
+
__EventCryptoKeyCreated__Delegate: 0x06e8n, // 0x06e8 (0x0018) [FScriptDelegate]
|
|
576
|
+
__EventTextMessageSigned__Delegate: 0x0700n, // 0x0700 (0x0018) [FScriptDelegate]
|
|
577
|
+
__EventTextMessageValidated__Delegate: 0x0718n, // 0x0718 (0x0018) [FScriptDelegate]
|
|
578
|
+
__OnCaptureAvailabilityChange__Delegate: 0x0730n, // 0x0730 (0x0018) [FScriptDelegate]
|
|
541
579
|
...OnlineSubsystemCommonImpl,
|
|
542
580
|
} as const;
|
|
543
581
|
|