@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/classes/ProjectX.ts
CHANGED
|
@@ -217,6 +217,7 @@ import type {
|
|
|
217
217
|
FPlayerClubPair,
|
|
218
218
|
FPlayerClubSyncResult,
|
|
219
219
|
FPlayerDLCInfo,
|
|
220
|
+
FPlayerIdLink,
|
|
220
221
|
FPlayerPermissions,
|
|
221
222
|
FPlayerPermissionsList,
|
|
222
223
|
FPlayerPermissionsReponse,
|
|
@@ -768,6 +769,18 @@ export type U__EpicFriendsPlugin_X__RemoveFriend_0x1 = UObject & {
|
|
|
768
769
|
// __EpicFriendsPlugin_X__RemoveFriend_0x1 Functions
|
|
769
770
|
// __EpicFriendsPlugin_X__RemoveFriend_0x1(R: UEOS_ManageFriendsListResponse, E: UError, ResponseCode: number): void
|
|
770
771
|
|
|
772
|
+
/**
|
|
773
|
+
* Class ProjectX.__EpicFriendsPlugin_X__Unblock_0x1
|
|
774
|
+
* Size: 0x0070
|
|
775
|
+
* Extends: UObject
|
|
776
|
+
*/
|
|
777
|
+
export type U__EpicFriendsPlugin_X__Unblock_0x1 = UObject & {
|
|
778
|
+
CapturedParams: FHTTPRequestCapturedParam[]; // 0x0060 (0x0010) [TArray<FHTTPRequestCapturedParam>]
|
|
779
|
+
};
|
|
780
|
+
|
|
781
|
+
// __EpicFriendsPlugin_X__Unblock_0x1 Functions
|
|
782
|
+
// __EpicFriendsPlugin_X__Unblock_0x1(R: UEOS_ManageBlockListResponse, E: UError, ResponseCode: number): void
|
|
783
|
+
|
|
771
784
|
/**
|
|
772
785
|
* Class ProjectX.__EpicLogin_X__HandleLoginChanged_0x1
|
|
773
786
|
* Size: 0x0061
|
|
@@ -1231,14 +1244,16 @@ export type U__OnlineGameReservations_X__RecordReservation_0x1 = UObject & {
|
|
|
1231
1244
|
|
|
1232
1245
|
/**
|
|
1233
1246
|
* Class ProjectX.__OnlineGameReservations_X__SetPlayersWithMigrationData_0x2
|
|
1234
|
-
* Size:
|
|
1247
|
+
* Size: 0x0178
|
|
1235
1248
|
* Extends: UObject
|
|
1236
1249
|
*/
|
|
1237
1250
|
export type U__OnlineGameReservations_X__SetPlayersWithMigrationData_0x2 = UObject & {
|
|
1238
1251
|
GEngine: UEngine; // 0x0060 (0x0008) [UEngine*]
|
|
1252
|
+
PlayerRes: FReservationData; // 0x0068 (0x0110) [FReservationData]
|
|
1239
1253
|
};
|
|
1240
1254
|
|
|
1241
1255
|
// __OnlineGameReservations_X__SetPlayersWithMigrationData_0x2 Functions
|
|
1256
|
+
// __OnlineGameReservations_X__SetPlayersWithMigrationData_0x3(P: FReservationData): boolean
|
|
1242
1257
|
// __OnlineGameReservations_X__SetPlayersWithMigrationData_0x2(P: FMigrationReservationData): void
|
|
1243
1258
|
|
|
1244
1259
|
/**
|
|
@@ -1779,6 +1794,54 @@ export type U__RPCQueue_X__CreateBatchSingleRPC_0x1 = UObject & {
|
|
|
1779
1794
|
// __RPCQueue_X__CreateBatchSingleRPC_0x1 Functions
|
|
1780
1795
|
// __RPCQueue_X__CreateBatchSingleRPC_0x1(Response: UPsyNetMessage_X, Error: UError): void
|
|
1781
1796
|
|
|
1797
|
+
/**
|
|
1798
|
+
* Class ProjectX.__ServerPlayerIdCache_X__GetEpicIdFromPlayerId_0x1
|
|
1799
|
+
* Size: 0x00A8
|
|
1800
|
+
* Extends: UObject
|
|
1801
|
+
*/
|
|
1802
|
+
export type U__ServerPlayerIdCache_X__GetEpicIdFromPlayerId_0x1 = UObject & {
|
|
1803
|
+
PlayerID: FUniqueNetId; // 0x0060 (0x0048) [FUniqueNetId]
|
|
1804
|
+
};
|
|
1805
|
+
|
|
1806
|
+
// __ServerPlayerIdCache_X__GetEpicIdFromPlayerId_0x1 Functions
|
|
1807
|
+
// __ServerPlayerIdCache_X__GetEpicIdFromPlayerId_0x1(P: FPlayerIdLink): boolean
|
|
1808
|
+
|
|
1809
|
+
/**
|
|
1810
|
+
* Class ProjectX.__ServerPlayerIdCache_X__GetProductUserIdFromEpicId_0x1
|
|
1811
|
+
* Size: 0x0070
|
|
1812
|
+
* Extends: UObject
|
|
1813
|
+
*/
|
|
1814
|
+
export type U__ServerPlayerIdCache_X__GetProductUserIdFromEpicId_0x1 = UObject & {
|
|
1815
|
+
EpicAccountId: string; // 0x0060 (0x0010) [FString]
|
|
1816
|
+
};
|
|
1817
|
+
|
|
1818
|
+
// __ServerPlayerIdCache_X__GetProductUserIdFromEpicId_0x1 Functions
|
|
1819
|
+
// __ServerPlayerIdCache_X__GetProductUserIdFromEpicId_0x1(P: FPlayerIdLink): boolean
|
|
1820
|
+
|
|
1821
|
+
/**
|
|
1822
|
+
* Class ProjectX.__ServerPlayerIdCache_X__GetProductUserIdFromPlayerId_0x1
|
|
1823
|
+
* Size: 0x00A8
|
|
1824
|
+
* Extends: UObject
|
|
1825
|
+
*/
|
|
1826
|
+
export type U__ServerPlayerIdCache_X__GetProductUserIdFromPlayerId_0x1 = UObject & {
|
|
1827
|
+
PlayerID: FUniqueNetId; // 0x0060 (0x0048) [FUniqueNetId]
|
|
1828
|
+
};
|
|
1829
|
+
|
|
1830
|
+
// __ServerPlayerIdCache_X__GetProductUserIdFromPlayerId_0x1 Functions
|
|
1831
|
+
// __ServerPlayerIdCache_X__GetProductUserIdFromPlayerId_0x1(P: FPlayerIdLink): boolean
|
|
1832
|
+
|
|
1833
|
+
/**
|
|
1834
|
+
* Class ProjectX.__ServerPlayerIdCache_X__RegisterPlayer_0x1
|
|
1835
|
+
* Size: 0x00A8
|
|
1836
|
+
* Extends: UObject
|
|
1837
|
+
*/
|
|
1838
|
+
export type U__ServerPlayerIdCache_X__RegisterPlayer_0x1 = UObject & {
|
|
1839
|
+
PlayerID: FUniqueNetId; // 0x0060 (0x0048) [FUniqueNetId]
|
|
1840
|
+
};
|
|
1841
|
+
|
|
1842
|
+
// __ServerPlayerIdCache_X__RegisterPlayer_0x1 Functions
|
|
1843
|
+
// __ServerPlayerIdCache_X__RegisterPlayer_0x1(P: FPlayerIdLink): boolean
|
|
1844
|
+
|
|
1782
1845
|
/**
|
|
1783
1846
|
* Class ProjectX.__ServerPlayerTracker_X__AddPlayer_0x1
|
|
1784
1847
|
* Size: 0x00A8
|
|
@@ -2529,6 +2592,31 @@ export type UAnimNotify_PlayParticleEffect_X = UAnimNotify_PlayParticleEffect &
|
|
|
2529
2592
|
// NotifyEnd(Owner: UActor, AnimSeqInstigator: UAnimNodeSequence): void
|
|
2530
2593
|
// Notify(Owner: UActor, AnimSeqInstigator: UAnimNodeSequence): void
|
|
2531
2594
|
|
|
2595
|
+
/**
|
|
2596
|
+
* Class ProjectX.AntiCheatErrors_X
|
|
2597
|
+
* Size: 0x00B8
|
|
2598
|
+
* Extends: UErrorList
|
|
2599
|
+
*/
|
|
2600
|
+
export type UAntiCheatErrors_X = UErrorList & {
|
|
2601
|
+
AntiCheatRequiredForFeature: UErrorType; // 0x0080 (0x0008) [UErrorType*]
|
|
2602
|
+
PartyAntiCheatRequiredForFeature: UErrorType; // 0x0088 (0x0008) [UErrorType*]
|
|
2603
|
+
AntiCheatAuthInProgress: UErrorType; // 0x0090 (0x0008) [UErrorType*]
|
|
2604
|
+
AntiCheatAuthTimeout: UErrorType; // 0x0098 (0x0008) [UErrorType*]
|
|
2605
|
+
AntiCheatViolation: UErrorType; // 0x00a0 (0x0008) [UErrorType*]
|
|
2606
|
+
IntegrityViolation: UErrorType; // 0x00a8 (0x0008) [UErrorType*]
|
|
2607
|
+
AntiCheatRequired: UErrorType; // 0x00b0 (0x0008) [UErrorType*]
|
|
2608
|
+
};
|
|
2609
|
+
|
|
2610
|
+
/**
|
|
2611
|
+
* Class ProjectX.AntiCheatManager_X
|
|
2612
|
+
* Size: 0x0060
|
|
2613
|
+
* Extends: UObject
|
|
2614
|
+
*/
|
|
2615
|
+
export type UAntiCheatManager_X = UObject & {};
|
|
2616
|
+
|
|
2617
|
+
// AntiCheatManager_X Functions
|
|
2618
|
+
// GetAntiCheatError(PlaylistId: number): UError
|
|
2619
|
+
|
|
2532
2620
|
/**
|
|
2533
2621
|
* Class ProjectX.OnlineConfig_X
|
|
2534
2622
|
* Size: 0x0078
|
|
@@ -2786,7 +2874,7 @@ export type UBlogConfig_X = UOnlineConfig_X & {
|
|
|
2786
2874
|
|
|
2787
2875
|
/**
|
|
2788
2876
|
* Class ProjectX.BlogTile_X
|
|
2789
|
-
* Size:
|
|
2877
|
+
* Size: 0x0178
|
|
2790
2878
|
* Extends: UObject
|
|
2791
2879
|
*/
|
|
2792
2880
|
export type UBlogTile_X = UObject & {
|
|
@@ -2815,6 +2903,7 @@ export type UBlogTile_X = UObject & {
|
|
|
2815
2903
|
InfoURL: string; // 0x0138 (0x0010) [FString]
|
|
2816
2904
|
InfoButtonText: string; // 0x0148 (0x0010) [FString]
|
|
2817
2905
|
TrackingId: string; // 0x0158 (0x0010) [FString]
|
|
2906
|
+
EventFolderID: string; // 0x0168 (0x0010) [FString]
|
|
2818
2907
|
};
|
|
2819
2908
|
|
|
2820
2909
|
// BlogTile_X Functions
|
|
@@ -4281,7 +4370,6 @@ export type UEpicFriendsPlugin_X = UObject & {
|
|
|
4281
4370
|
};
|
|
4282
4371
|
|
|
4283
4372
|
// EpicFriendsPlugin_X Functions
|
|
4284
|
-
// __EpicFriendsPlugin_X__Unblock_0x1(R: UEOS_ManageBlockListResponse, E: UError, ResponseCode: number): void
|
|
4285
4373
|
// __EpicFriendsPlugin_X__GetBlockList_0x1(R: UEOS_GetAccountsResponse, E: UError, ResponseCode: number): void
|
|
4286
4374
|
// __EpicFriendsPlugin_X__GetIncomingFriendRequests_0x1(R: UEOS_GetAccountsResponse, E: UError, ResponseCode: number): void
|
|
4287
4375
|
// __EpicFriendsPlugin_X__GetOutgoingFriendRequests_0x1(R: UEOS_GetAccountsResponse, E: UError, ResponseCode: number): void
|
|
@@ -5022,6 +5110,7 @@ export type UGameSettingPlaylist_X = UGameSetting_X & {
|
|
|
5022
5110
|
bAllowStayAsParty: boolean; // 0x009c (0x0004) [bool : 0x1000000]
|
|
5023
5111
|
bEnforceEAC: boolean; // 0x009c (0x0004) [bool : 0x2000000]
|
|
5024
5112
|
bAllowEACTerminations: boolean; // 0x009c (0x0004) [bool : 0x4000000]
|
|
5113
|
+
bAllowEACWhitelist: boolean; // 0x009c (0x0004) [bool : 0x8000000]
|
|
5025
5114
|
PlaylistImageURL: string; // 0x00a0 (0x0010) [FString]
|
|
5026
5115
|
PlaylistImageTexture: string; // 0x00b0 (0x0010) [FString]
|
|
5027
5116
|
PlaylistIconActiveURL: string; // 0x00c0 (0x0010) [FString]
|
|
@@ -5227,6 +5316,7 @@ export type UGFxDataStore_X = UComponent & {
|
|
|
5227
5316
|
// SetASValue(Table: FName, Row: number, Column: FName, Value: FASValue): void
|
|
5228
5317
|
// SetTextureValue(Table: FName, Row: number, Column: FName, Value: UTexture): void
|
|
5229
5318
|
// SetStringValue(Table: FName, Row: number, Column: FName, Value: string): void
|
|
5319
|
+
// SetSQWordValue(Table: FName, Row: number, Column: FName): void
|
|
5230
5320
|
// SetQWordValue(Table: FName, Row: number, Column: FName, Value: bigint): void
|
|
5231
5321
|
// SetFloatValue(Table: FName, Row: number, Column: FName, Value: number): void
|
|
5232
5322
|
// SetIntValue(Table: FName, Row: number, Column: FName, Value: number): void
|
|
@@ -6716,7 +6806,7 @@ export type UOnlineGameServer_X = UOnlineGame_Base_X & {
|
|
|
6716
6806
|
|
|
6717
6807
|
/**
|
|
6718
6808
|
* Class ProjectX.OnlineGameDedicatedServer_X
|
|
6719
|
-
* Size:
|
|
6809
|
+
* Size: 0x0420
|
|
6720
6810
|
* Extends: UOnlineGameServer_X
|
|
6721
6811
|
*/
|
|
6722
6812
|
export type UOnlineGameDedicatedServer_X = UOnlineGameServer_X & {
|
|
@@ -6752,16 +6842,17 @@ export type UOnlineGameDedicatedServer_X = UOnlineGameServer_X & {
|
|
|
6752
6842
|
MatchRecorderClass: UMatchRecorder_X; // 0x0340 (0x0008) [UMatchRecorder_X*]
|
|
6753
6843
|
MatchRecorder: UMatchRecorder_X; // 0x0348 (0x0008) [UMatchRecorder_X*]
|
|
6754
6844
|
MatchLog: UMatchLog_X; // 0x0350 (0x0008) [UMatchLog_X*]
|
|
6755
|
-
|
|
6756
|
-
|
|
6757
|
-
|
|
6758
|
-
|
|
6759
|
-
|
|
6760
|
-
|
|
6761
|
-
|
|
6762
|
-
|
|
6763
|
-
|
|
6764
|
-
|
|
6845
|
+
PlayerIdCache: UServerPlayerIdCache_X; // 0x0358 (0x0008) [UServerPlayerIdCache_X*]
|
|
6846
|
+
PlayerPermissions: UOnlinePlayerPermissions_X; // 0x0360 (0x0008) [UOnlinePlayerPermissions_X*]
|
|
6847
|
+
Config: UServerConfig_X; // 0x0368 (0x0008) [UServerConfig_X*]
|
|
6848
|
+
PsyNetConfig: UPsyNetConfig_X; // 0x0370 (0x0008) [UPsyNetConfig_X*]
|
|
6849
|
+
__EventFoundNewDedicatedServerForPlayers__Delegate: FScriptDelegate; // 0x0378 (0x0018) [FScriptDelegate]
|
|
6850
|
+
__EventAverageMMRChanged__Delegate: FScriptDelegate; // 0x0390 (0x0018) [FScriptDelegate]
|
|
6851
|
+
__EventPlaylistSet__Delegate: FScriptDelegate; // 0x03a8 (0x0018) [FScriptDelegate]
|
|
6852
|
+
__EventPrivateMatchSettingsChanged__Delegate: FScriptDelegate; // 0x03c0 (0x0018) [FScriptDelegate]
|
|
6853
|
+
__EventInactive__Delegate: FScriptDelegate; // 0x03d8 (0x0018) [FScriptDelegate]
|
|
6854
|
+
__EventActive__Delegate: FScriptDelegate; // 0x03f0 (0x0018) [FScriptDelegate]
|
|
6855
|
+
__EventMatchGUIDChanged__Delegate: FScriptDelegate; // 0x0408 (0x0018) [FScriptDelegate]
|
|
6765
6856
|
};
|
|
6766
6857
|
|
|
6767
6858
|
// OnlineGameDedicatedServer_X Functions
|
|
@@ -6801,6 +6892,7 @@ export type UOnlineGameDedicatedServer_X = UOnlineGameServer_X & {
|
|
|
6801
6892
|
// CheckNewServerIP(): void
|
|
6802
6893
|
// CheckNewServerTimeout(): void
|
|
6803
6894
|
// CheckStartShutdown(GameTimeRemaining: number): void
|
|
6895
|
+
// AllowMigrationMessageReconcile(Message: UMigrationStartedMessage_X): boolean
|
|
6804
6896
|
// AllowServerMigration(): boolean
|
|
6805
6897
|
// UpdateGameTime(TimeSeconds: number): void
|
|
6806
6898
|
// FindNewDedicatedServerForPlayers(InDelegate: FScriptDelegate): void
|
|
@@ -7291,6 +7383,7 @@ export type UOnlineGameParty_X = UOnline_X & {
|
|
|
7291
7383
|
// HandlePartyConfigChanged(): void
|
|
7292
7384
|
// HandleMessageForMetrics(Component: UOnlineMessageComponent_X, Message: UObject): void
|
|
7293
7385
|
// ResolveGuids(A: FGuid, B: FGuid): FGuid
|
|
7386
|
+
// IsPartyAntiCheatEnabled(): boolean
|
|
7294
7387
|
// GetMemberName(InMemberId: FUniqueNetId): string
|
|
7295
7388
|
// GetPlayersWithPrimaryMemberID(InPrimaryID: FUniqueNetId): FUniqueNetId[]
|
|
7296
7389
|
// GetLocalMemberIDs(): FUniqueNetId[]
|
|
@@ -7614,6 +7707,8 @@ export type UOnlineGamePrivileges_X = UOnline_X & {
|
|
|
7614
7707
|
// TryToPlayOnlineAndUseUGC(ControllerId: number, Callback: FScriptDelegate): void
|
|
7615
7708
|
// AddUGCChecks(Check: UPrivilegeCheck_X): UPrivilegeCheck_X
|
|
7616
7709
|
// TryToUseUGC(ControllerId: number, Callback: FScriptDelegate): void
|
|
7710
|
+
// AddAntiCheatCheck(Check: UPrivilegeCheck_X): UPrivilegeCheck_X
|
|
7711
|
+
// TryToPlayOnlineWithAntiCheat(ControllerId: number, PlaylistId: number, Callback: FScriptDelegate): void
|
|
7617
7712
|
// AddPlayOnlineChecks(Check: UPrivilegeCheck_X): UPrivilegeCheck_X
|
|
7618
7713
|
// TryToPlayOnline(ControllerId: number, Callback: FScriptDelegate): void
|
|
7619
7714
|
// TryToUsePsyNet(ControllerId: number, Callback: FScriptDelegate): void
|
|
@@ -7691,7 +7786,7 @@ export type UOnlineGameReservations_AssignTeamsByParty_X = UObject & {};
|
|
|
7691
7786
|
|
|
7692
7787
|
/**
|
|
7693
7788
|
* Class ProjectX.OnlineGameReservations_X
|
|
7694
|
-
* Size:
|
|
7789
|
+
* Size: 0x01F0
|
|
7695
7790
|
* Extends: UOnline_X
|
|
7696
7791
|
*/
|
|
7697
7792
|
export type UOnlineGameReservations_X = UOnline_X & {
|
|
@@ -7708,7 +7803,8 @@ export type UOnlineGameReservations_X = UOnline_X & {
|
|
|
7708
7803
|
bLockTeams: boolean; // 0x00c0 (0x0004) [bool : 0x40]
|
|
7709
7804
|
bIsBotMatch: boolean; // 0x00c0 (0x0004) [bool : 0x80]
|
|
7710
7805
|
bMigrationInProgress: boolean; // 0x00c0 (0x0004) [bool : 0x100]
|
|
7711
|
-
|
|
7806
|
+
bAwaitingMigrationStart: boolean; // 0x00c0 (0x0004) [bool : 0x200]
|
|
7807
|
+
bFirstClubDetailsRequestDone: boolean; // 0x00c0 (0x0004) [bool : 0x400]
|
|
7712
7808
|
Beacon: UReservationBeacon_X; // 0x00c8 (0x0008) [UReservationBeacon_X*]
|
|
7713
7809
|
PingBeacon: UUdpPingBeaconServer_X; // 0x00d0 (0x0008) [UUdpPingBeaconServer_X*]
|
|
7714
7810
|
Players: FReservationData[]; // 0x00d8 (0x0010) [TArray<FReservationData>]
|
|
@@ -7716,19 +7812,20 @@ export type UOnlineGameReservations_X = UOnline_X & {
|
|
|
7716
7812
|
PsynetReservationsTeam1Players: FUniqueNetId[]; // 0x00f8 (0x0010) [TArray<FUniqueNetId>]
|
|
7717
7813
|
TeamPairHistories: FTeamPairHistory[]; // 0x0108 (0x0010) [TArray<FTeamPairHistory>]
|
|
7718
7814
|
BotNames: string[]; // 0x0118 (0x0010) [TArray<FString>]
|
|
7719
|
-
|
|
7720
|
-
|
|
7721
|
-
|
|
7722
|
-
|
|
7723
|
-
|
|
7724
|
-
|
|
7725
|
-
|
|
7726
|
-
|
|
7727
|
-
|
|
7728
|
-
|
|
7729
|
-
|
|
7730
|
-
|
|
7731
|
-
|
|
7815
|
+
AwaitingMigrationTimeoutSeconds: number; // 0x0128 (0x0004) [float]
|
|
7816
|
+
Crossplay: UCrossplayConfig_X; // 0x0130 (0x0008) [UCrossplayConfig_X*]
|
|
7817
|
+
MapPrefsConfig: UMapPrefsConfig_X; // 0x0138 (0x0008) [UMapPrefsConfig_X*]
|
|
7818
|
+
BeaconConfig: UBeaconConfig_X; // 0x0140 (0x0008) [UBeaconConfig_X*]
|
|
7819
|
+
PendingReservations: FPendingReservation[]; // 0x0148 (0x0010) [TArray<FPendingReservation>]
|
|
7820
|
+
GetClubTask: UTAsyncResult__ClubDetails_X; // 0x0158 (0x0008) [UTAsyncResult__ClubDetails_X*]
|
|
7821
|
+
RankedMatchReservationID: string; // 0x0160 (0x0010) [FString]
|
|
7822
|
+
RankedMatchPushedPlayerIDs: FUniqueNetId[]; // 0x0170 (0x0010) [TArray<FUniqueNetId>]
|
|
7823
|
+
Clubs: UOnlineClubProvider_X; // 0x0180 (0x0008) [UOnlineClubProvider_X*]
|
|
7824
|
+
JoinName: string; // 0x0188 (0x0010) [FString]
|
|
7825
|
+
JoinPassword: string; // 0x0198 (0x0010) [FString]
|
|
7826
|
+
__EventReservationsUpdated__Delegate: FScriptDelegate; // 0x01a8 (0x0018) [FScriptDelegate]
|
|
7827
|
+
__EventMigrationJoinOccurred__Delegate: FScriptDelegate; // 0x01c0 (0x0018) [FScriptDelegate]
|
|
7828
|
+
__bMatchStarted__ChangeNotify: FScriptDelegate; // 0x01d8 (0x0018) [FScriptDelegate]
|
|
7732
7829
|
};
|
|
7733
7830
|
|
|
7734
7831
|
// OnlineGameReservations_X Functions
|
|
@@ -7736,6 +7833,7 @@ export type UOnlineGameReservations_X = UOnline_X & {
|
|
|
7736
7833
|
// __OnlineGameReservations_X__OnInit_0x2(Connection: UIReservationConnection_X, Message: UObject): void
|
|
7737
7834
|
// __OnlineGameReservations_X__OnInit_0x1(Connection: UIReservationConnection_X, Message: UObject): void
|
|
7738
7835
|
// __OnlineGameReservations_X__SetPlayersWithMigrationData_0x1(P: FMigrationReservationData): boolean
|
|
7836
|
+
// __OnlineGameReservations_X__HandlePsyNetBeaconReservation_0x3(P: FPsyNetBeaconPlayerReservation): void
|
|
7739
7837
|
// __OnlineGameReservations_X__HandlePsyNetBeaconReservation_0x2(P: FPsyNetBeaconPlayerReservation): void
|
|
7740
7838
|
// __OnlineGameReservations_X__HandlePsyNetBeaconReservation_0x1(P: FPsyNetBeaconPlayerReservation): FUniqueNetId
|
|
7741
7839
|
// __OnlineGameReservations_X__SyncClubDetails_0x3(P: FReservationData): number
|
|
@@ -7862,9 +7960,12 @@ export type UOnlineGameReservations_X = UOnline_X & {
|
|
|
7862
7960
|
// GetMatchInfoMessage(): UServerToServerMessage_X
|
|
7863
7961
|
// NotifyNewReplacementServer(): void
|
|
7864
7962
|
// HandleNewServerConnectionInfo(Message: UConnectionInfoMessage_X): void
|
|
7963
|
+
// OnMigrationStarted(): void
|
|
7865
7964
|
// HandleMigrationStartedMessage(Message: UMigrationStartedMessage_X): void
|
|
7866
7965
|
// SendMigratedServerConnectionInfo(ServerId: string): void
|
|
7867
7966
|
// SetJoinNameAndPassword(InJoinName: string, InJoinPassword: string): void
|
|
7967
|
+
// HandleMigrationTimeout(): void
|
|
7968
|
+
// NotifyMigrationInfoReceived(): void
|
|
7868
7969
|
// HandleServerMigrationMessage(Message: UMatchInfoMessage_X): void
|
|
7869
7970
|
// HandleReconnectReservation(Notification: UPsyNetService_Reconnect_X): void
|
|
7870
7971
|
// HandleFriendJoinReservation(Notification: UPsyNetService_FriendJoin_X): void
|
|
@@ -8318,6 +8419,7 @@ export type UOnlinePlayer_X = UOnline_X & {
|
|
|
8318
8419
|
// InitPlayer(): void
|
|
8319
8420
|
// IsPrimaryPlayer(): boolean
|
|
8320
8421
|
// HandlePsyNetDisconnect(Connection: UPsyNetConnection_X): void
|
|
8422
|
+
// HandlePsyNetConnected(Connection: UPsyNetConnection_X): void
|
|
8321
8423
|
// UpdatePsyNetEnabled(): void
|
|
8322
8424
|
// HandleBanned(Auth: UOnlinePlayerAuthentication_X): void
|
|
8323
8425
|
// HandleAuthLoginChange(Auth: UOnlinePlayerAuthentication_X): void
|
|
@@ -9828,6 +9930,7 @@ export type UPlaylistSettings_X = UObject & {
|
|
|
9828
9930
|
bStartMatchWithFirewallProtections: boolean; // 0x0098 (0x0004) [bool : 0x2000000]
|
|
9829
9931
|
bEnforceEAC: boolean; // 0x0098 (0x0004) [bool : 0x4000000]
|
|
9830
9932
|
bAllowEACTerminations: boolean; // 0x0098 (0x0004) [bool : 0x8000000]
|
|
9933
|
+
bAllowEACWhitelist: boolean; // 0x0098 (0x0004) [bool : 0x10000000]
|
|
9831
9934
|
PlaylistImageURL: string; // 0x00a0 (0x0010) [FString]
|
|
9832
9935
|
PlaylistImageTexture: string; // 0x00b0 (0x0010) [FString]
|
|
9833
9936
|
PlaylistIconActiveURL: string; // 0x00c0 (0x0010) [FString]
|
|
@@ -9998,10 +10101,12 @@ export type UPrivilegeCheck_X = UObject & {
|
|
|
9998
10101
|
// HandlePrivilege(LocalUserNum: number, Privilege: EFeaturePrivilege, Level: EFeaturePrivilegeLevel, InFailReason: UError): void
|
|
9999
10102
|
// CheckPrivilege(): void
|
|
10000
10103
|
// CheckPsyNetComplete(ConnectionError: UError): void
|
|
10104
|
+
// CheckAntiCheat(): void
|
|
10001
10105
|
// CheckPsyNet(): void
|
|
10002
10106
|
// ValidateUserOnlineAccount(): void
|
|
10003
10107
|
// CheckInternet(): void
|
|
10004
10108
|
// RequirePrivilege(Privilege: EFeaturePrivilege): UPrivilegeCheck_X
|
|
10109
|
+
// RequireAntiCheat(): UPrivilegeCheck_X
|
|
10005
10110
|
// RequirePsyNet(): UPrivilegeCheck_X
|
|
10006
10111
|
// RequireUserOnlineAccount(): UPrivilegeCheck_X
|
|
10007
10112
|
// RequireInternet(): UPrivilegeCheck_X
|
|
@@ -13017,6 +13122,21 @@ export type UServerMetrics_X = UMetricsGroup_X & {};
|
|
|
13017
13122
|
// ShutDown(): void
|
|
13018
13123
|
// Created(ServerId: string, Host: string): void
|
|
13019
13124
|
|
|
13125
|
+
/**
|
|
13126
|
+
* Class ProjectX.ServerPlayerIdCache_X
|
|
13127
|
+
* Size: 0x0070
|
|
13128
|
+
* Extends: UObject
|
|
13129
|
+
*/
|
|
13130
|
+
export type UServerPlayerIdCache_X = UObject & {
|
|
13131
|
+
PlayerIdCache: FPlayerIdLink[]; // 0x0060 (0x0010) [TArray<FPlayerIdLink>]
|
|
13132
|
+
};
|
|
13133
|
+
|
|
13134
|
+
// ServerPlayerIdCache_X Functions
|
|
13135
|
+
// GetEpicIdFromPlayerId(PlayerID: FUniqueNetId): string
|
|
13136
|
+
// GetProductUserIdFromEpicId(EpicAccountId: string): string
|
|
13137
|
+
// GetProductUserIdFromPlayerId(PlayerID: FUniqueNetId): string
|
|
13138
|
+
// RegisterPlayer(PlayerID: FUniqueNetId, EpicAccountId: string, ProductUserId: string): void
|
|
13139
|
+
|
|
13020
13140
|
/**
|
|
13021
13141
|
* Class ProjectX.ServerPlayerTracker_X
|
|
13022
13142
|
* Size: 0x00C8
|
|
@@ -13245,6 +13365,7 @@ export type UStringUtil_X = UObject & {};
|
|
|
13245
13365
|
|
|
13246
13366
|
// StringUtil_X Functions
|
|
13247
13367
|
// static SplitStringIntoMaxSizePieces(OriginalString: string, MaxStringSize: number): string[]
|
|
13368
|
+
// static MessageCanBeCorruptedOnConversion(Message: string): boolean
|
|
13248
13369
|
// static IsStringEmptyOrWhiteSpace(BaseString: string): boolean
|
|
13249
13370
|
// static SplitStringInHalf(OriginalString: string, FirstHalf: string, SecondHalf: string): void
|
|
13250
13371
|
|