@rlsdk/steam 1.0.2 → 1.0.4
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 +1000 -1006
- 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 +974 -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 +858 -1016
- package/structs/Engine.ts +0 -12
- package/structs/TAGame.ts +87 -45
|
@@ -69,7 +69,7 @@ export const ErrorList = {
|
|
|
69
69
|
|
|
70
70
|
/**
|
|
71
71
|
* OnlineSubsystemEOS.EOSErrors Offsets
|
|
72
|
-
* Size:
|
|
72
|
+
* Size: 0x00a0
|
|
73
73
|
* Extends: ErrorList
|
|
74
74
|
*/
|
|
75
75
|
export const EOSErrors = {
|
|
@@ -77,17 +77,6 @@ export const EOSErrors = {
|
|
|
77
77
|
BlockedListNotFound: 0x0088n, // 0x0088 (0x0008) [UErrorType*]
|
|
78
78
|
AcceptFriendRequestFailed: 0x0090n, // 0x0090 (0x0008) [UErrorType*]
|
|
79
79
|
RejectFriendRequestFailed: 0x0098n, // 0x0098 (0x0008) [UErrorType*]
|
|
80
|
-
GameClipsActivationFailed: 0x00a0n, // 0x00a0 (0x0008) [UErrorType*]
|
|
81
|
-
GameClipsCleanAudioFailed: 0x00a8n, // 0x00a8 (0x0008) [UErrorType*]
|
|
82
|
-
GameClipsRecorderInitFailed: 0x00b0n, // 0x00b0 (0x0008) [UErrorType*]
|
|
83
|
-
GameClipsStartRecordingFailed: 0x00b8n, // 0x00b8 (0x0008) [UErrorType*]
|
|
84
|
-
GameClipsMaskAreaInvalid: 0x00c0n, // 0x00c0 (0x0008) [UErrorType*]
|
|
85
|
-
GameClipsStatusListenerFailed: 0x00c8n, // 0x00c8 (0x0008) [UErrorType*]
|
|
86
|
-
GameClipsUserStatusListenerFailed: 0x00d0n, // 0x00d0 (0x0008) [UErrorType*]
|
|
87
|
-
GameClipsNotAvailable: 0x00d8n, // 0x00d8 (0x0008) [UErrorType*]
|
|
88
|
-
GameClipsFailedToUpload: 0x00e0n, // 0x00e0 (0x0008) [UErrorType*]
|
|
89
|
-
GameClipsCoolingDown: 0x00e8n, // 0x00e8 (0x0008) [UErrorType*]
|
|
90
|
-
GameClipsUploadLimitReached: 0x00f0n, // 0x00f0 (0x0008) [UErrorType*]
|
|
91
80
|
...ErrorList,
|
|
92
81
|
} as const;
|
|
93
82
|
|
|
@@ -220,23 +209,6 @@ export const OnlineFriendsInterfaceEOS = {
|
|
|
220
209
|
...OnlineFriendsInterfaceImpl,
|
|
221
210
|
} as const;
|
|
222
211
|
|
|
223
|
-
/**
|
|
224
|
-
* OnlineSubsystemEOS.OnlineGameClipsInterfaceEOS Offsets
|
|
225
|
-
* Size: 0x0110
|
|
226
|
-
* Extends: Object_
|
|
227
|
-
*/
|
|
228
|
-
export const OnlineGameClipsInterfaceEOS = {
|
|
229
|
-
GameClipsHandle: 0x0060n, // 0x0060 (0x0008) [FPointer]
|
|
230
|
-
__EventAvailabilityChanged__Delegate: 0x0068n, // 0x0068 (0x0018) [FScriptDelegate]
|
|
231
|
-
__EventRecordingChanged__Delegate: 0x0080n, // 0x0080 (0x0018) [FScriptDelegate]
|
|
232
|
-
__EventConnectionStatusChanged__Delegate: 0x0098n, // 0x0098 (0x0018) [FScriptDelegate]
|
|
233
|
-
__EventClipStatusChanged__Delegate: 0x00b0n, // 0x00b0 (0x0018) [FScriptDelegate]
|
|
234
|
-
__EventMaskStatusChanged__Delegate: 0x00c8n, // 0x00c8 (0x0018) [FScriptDelegate]
|
|
235
|
-
__EventGeneralErrorOccurred__Delegate: 0x00e0n, // 0x00e0 (0x0018) [FScriptDelegate]
|
|
236
|
-
__EventClipErrorOccurred__Delegate: 0x00f8n, // 0x00f8 (0x0018) [FScriptDelegate]
|
|
237
|
-
...Object_,
|
|
238
|
-
} as const;
|
|
239
|
-
|
|
240
212
|
/**
|
|
241
213
|
* IpDrv.OnlineGameInterfaceImpl Offsets
|
|
242
214
|
* Size: 0x0318
|
|
@@ -436,7 +408,7 @@ export const OnlineStatsInterfaceEOS = {
|
|
|
436
408
|
|
|
437
409
|
/**
|
|
438
410
|
* Engine.OnlineSubsystem Offsets
|
|
439
|
-
* Size:
|
|
411
|
+
* Size: 0x0368
|
|
440
412
|
* Extends: Object_
|
|
441
413
|
*/
|
|
442
414
|
export const OnlineSubsystem = {
|
|
@@ -464,118 +436,114 @@ export const OnlineSubsystem = {
|
|
|
464
436
|
PurchaseInterface: 0x01a8n, // 0x01a8 (0x0010) [UOnlinePurchaseInterface*]
|
|
465
437
|
LobbyInterface: 0x01b8n, // 0x01b8 (0x0010) [UOnlineLobbyInterface*]
|
|
466
438
|
FriendsInterface: 0x01c8n, // 0x01c8 (0x0010) [UOnlineFriendsInterface*]
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
__OnSystemUserControllerPairingChanged__Delegate: 0x0360n, // 0x0360 (0x0018) [FScriptDelegate]
|
|
439
|
+
SearchClass: 0x01d8n, // 0x01d8 (0x0008) [UOnlineGameSearch*]
|
|
440
|
+
bSupportsMultiSignin: 0x01e0n, // 0x01e0 (0x0004) [bool : 0x1]
|
|
441
|
+
bSupportsMultiVoice: 0x01e0n, // 0x01e0 (0x0004) [bool : 0x2]
|
|
442
|
+
bShowPrivilegeCheckErrors: 0x01e0n, // 0x01e0 (0x0004) [bool : 0x4]
|
|
443
|
+
AccountSettings: 0x01e8n, // 0x01e8 (0x0010) [TArray<UPlatformAccountSettings*>]
|
|
444
|
+
BlockListStatuses: 0x01f8n, // 0x01f8 (0x0010) [TArray<UPlatformBlockListStatus*>]
|
|
445
|
+
UnsupportedCorrectiveActionURLs: 0x0208n, // 0x0208 (0x0010) [TArray<UPlatformURL*>]
|
|
446
|
+
SessionManager: 0x0218n, // 0x0218 (0x0008) [UOnlineSessionManager*]
|
|
447
|
+
SteamDLC: 0x0220n, // 0x0220 (0x0010) [TArray<FSteamDLCInfo>]
|
|
448
|
+
PS4DLC: 0x0230n, // 0x0230 (0x0010) [TArray<FPS4DLCInfo>]
|
|
449
|
+
XboxOneDLC: 0x0240n, // 0x0240 (0x0010) [TArray<FXboxOneDLCInfo>]
|
|
450
|
+
SwitchDLC: 0x0250n, // 0x0250 (0x0010) [TArray<FSwitchDLCInfo>]
|
|
451
|
+
EpicDLC: 0x0260n, // 0x0260 (0x0010) [TArray<FEpicDLCInfo>]
|
|
452
|
+
OnlinePlatformType: 0x0270n, // 0x0270 (0x0001) [OnlinePlatform]
|
|
453
|
+
CurrentConnectionStatus: 0x0271n, // 0x0271 (0x0001) [EOnlineServerConnectionStatus]
|
|
454
|
+
OnlineSubsystemNames: 0x0278n, // 0x0278 (0x0010) [TArray<FString>]
|
|
455
|
+
NamedInterfaces: 0x0288n, // 0x0288 (0x0010) [TArray<FNamedInterface>]
|
|
456
|
+
NamedInterfaceDefs: 0x0298n, // 0x0298 (0x0010) [TArray<FNamedInterfaceDef>]
|
|
457
|
+
Sessions: 0x02a8n, // 0x02a8 (0x0010) [TArray<FNamedSession>]
|
|
458
|
+
IniLocPatcherClassName: 0x02b8n, // 0x02b8 (0x0010) [FString]
|
|
459
|
+
Patcher: 0x02c8n, // 0x02c8 (0x0008) [UIniLocPatcher*]
|
|
460
|
+
AsyncMinCompletionTime: 0x02d0n, // 0x02d0 (0x0004) [float]
|
|
461
|
+
__FeaturePrivilegeLevelUpdated__Delegate: 0x02d8n, // 0x02d8 (0x0018) [FScriptDelegate]
|
|
462
|
+
__EventPlatformAccountSettingsCreated__Delegate: 0x02f0n, // 0x02f0 (0x0018) [FScriptDelegate]
|
|
463
|
+
__EventPlatformBlockListStatusCreated__Delegate: 0x0308n, // 0x0308 (0x0018) [FScriptDelegate]
|
|
464
|
+
__OnDeviceSuspend__Delegate: 0x0320n, // 0x0320 (0x0018) [FScriptDelegate]
|
|
465
|
+
__OnReadOnlineAvatarComplete__Delegate: 0x0338n, // 0x0338 (0x0018) [FScriptDelegate]
|
|
466
|
+
__OnSystemUserControllerPairingChanged__Delegate: 0x0350n, // 0x0350 (0x0018) [FScriptDelegate]
|
|
496
467
|
...Object_,
|
|
497
468
|
} as const;
|
|
498
469
|
|
|
499
470
|
/**
|
|
500
471
|
* IpDrv.OnlineSubsystemCommonImpl Offsets
|
|
501
|
-
* Size:
|
|
472
|
+
* Size: 0x03b0
|
|
502
473
|
* Extends: OnlineSubsystem
|
|
503
474
|
*/
|
|
504
475
|
export const OnlineSubsystemCommonImpl = {
|
|
505
|
-
VoiceEngine:
|
|
506
|
-
MaxLocalTalkers:
|
|
507
|
-
MaxRemoteTalkers:
|
|
508
|
-
bIsUsingSpeechRecognition:
|
|
509
|
-
GameInterfaceImpl:
|
|
510
|
-
AuthInterfaceImpl:
|
|
511
|
-
PurchaseInterfaceImpl:
|
|
512
|
-
__OnSanitizeStringComplete__Delegate:
|
|
476
|
+
VoiceEngine: 0x0368n, // 0x0368 (0x0008) [FPointer]
|
|
477
|
+
MaxLocalTalkers: 0x0370n, // 0x0370 (0x0004) [int32]
|
|
478
|
+
MaxRemoteTalkers: 0x0374n, // 0x0374 (0x0004) [int32]
|
|
479
|
+
bIsUsingSpeechRecognition: 0x0378n, // 0x0378 (0x0004) [bool : 0x1]
|
|
480
|
+
GameInterfaceImpl: 0x0380n, // 0x0380 (0x0008) [UOnlineGameInterfaceImpl*]
|
|
481
|
+
AuthInterfaceImpl: 0x0388n, // 0x0388 (0x0008) [UOnlineAuthInterfaceImpl*]
|
|
482
|
+
PurchaseInterfaceImpl: 0x0390n, // 0x0390 (0x0008) [UOnlinePurchaseInterfaceImpl*]
|
|
483
|
+
__OnSanitizeStringComplete__Delegate: 0x0398n, // 0x0398 (0x0018) [FScriptDelegate]
|
|
513
484
|
...OnlineSubsystem,
|
|
514
485
|
} as const;
|
|
515
486
|
|
|
516
487
|
/**
|
|
517
488
|
* OnlineSubsystemEOS.OnlineSubsystemEOS Offsets
|
|
518
|
-
* Size:
|
|
489
|
+
* Size: 0x0720
|
|
519
490
|
* Extends: OnlineSubsystemCommonImpl
|
|
520
491
|
*/
|
|
521
492
|
export const OnlineSubsystemEOS = {
|
|
522
|
-
PlayerInterfaceEOS:
|
|
523
|
-
GameInterfaceEOS:
|
|
524
|
-
StatsInterfaceEOS:
|
|
525
|
-
AuthInterfaceEOS:
|
|
526
|
-
PersistentAuthInterfaceEOS:
|
|
527
|
-
FriendsInterfaceEOS:
|
|
528
|
-
UserCloudFileInterfaceEOS:
|
|
529
|
-
VoiceInterfaceEOS:
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
__EventTextMessageSigned__Delegate: 0x0700n, // 0x0700 (0x0018) [FScriptDelegate]
|
|
577
|
-
__EventTextMessageValidated__Delegate: 0x0718n, // 0x0718 (0x0018) [FScriptDelegate]
|
|
578
|
-
__OnCaptureAvailabilityChange__Delegate: 0x0730n, // 0x0730 (0x0018) [FScriptDelegate]
|
|
493
|
+
PlayerInterfaceEOS: 0x03b0n, // 0x03b0 (0x0008) [UOnlinePlayerInterfaceEOS*]
|
|
494
|
+
GameInterfaceEOS: 0x03b8n, // 0x03b8 (0x0008) [UOnlineGameInterfaceEOS*]
|
|
495
|
+
StatsInterfaceEOS: 0x03c0n, // 0x03c0 (0x0008) [UOnlineStatsInterfaceEOS*]
|
|
496
|
+
AuthInterfaceEOS: 0x03c8n, // 0x03c8 (0x0008) [UOnlineAuthInterfaceEOS*]
|
|
497
|
+
PersistentAuthInterfaceEOS: 0x03d0n, // 0x03d0 (0x0008) [UOnlinePersistentAuthInterfaceEOS*]
|
|
498
|
+
FriendsInterfaceEOS: 0x03d8n, // 0x03d8 (0x0008) [UOnlineFriendsInterfaceEOS*]
|
|
499
|
+
UserCloudFileInterfaceEOS: 0x03e0n, // 0x03e0 (0x0008) [UOnlineUserCloudFileInterfaceEOS*]
|
|
500
|
+
VoiceInterfaceEOS: 0x03e8n, // 0x03e8 (0x0008) [UOnlineVoiceInterfaceEOS*]
|
|
501
|
+
AntiCheatInterfaceEOS: 0x03f0n, // 0x03f0 (0x0008) [UOnlineAntiCheatInterfaceEOS*]
|
|
502
|
+
SpeechRecognitionCompleteDelegates: 0x03f8n, // 0x03f8 (0x0010) [TArray<FScriptDelegate>]
|
|
503
|
+
AuthHandle: 0x0408n, // 0x0408 (0x0008) [FPointer]
|
|
504
|
+
FriendsHandle: 0x0410n, // 0x0410 (0x0008) [FPointer]
|
|
505
|
+
UserInfoHandle: 0x0418n, // 0x0418 (0x0008) [FPointer]
|
|
506
|
+
PresenceHandle: 0x0420n, // 0x0420 (0x0008) [FPointer]
|
|
507
|
+
ConnectHandle: 0x0428n, // 0x0428 (0x0008) [FPointer]
|
|
508
|
+
SessionsHandle: 0x0430n, // 0x0430 (0x0008) [FPointer]
|
|
509
|
+
PDSHandle: 0x0438n, // 0x0438 (0x0008) [FPointer]
|
|
510
|
+
StatsHandle: 0x0440n, // 0x0440 (0x0008) [FPointer]
|
|
511
|
+
AchievementsHandle: 0x0448n, // 0x0448 (0x0008) [FPointer]
|
|
512
|
+
EcomHandle: 0x0450n, // 0x0450 (0x0008) [FPointer]
|
|
513
|
+
UIHandle: 0x0458n, // 0x0458 (0x0008) [FPointer]
|
|
514
|
+
RTCHandle: 0x0460n, // 0x0460 (0x0008) [FPointer]
|
|
515
|
+
RTCAudioHandle: 0x0468n, // 0x0468 (0x0008) [FPointer]
|
|
516
|
+
RTCAdminHandle: 0x0470n, // 0x0470 (0x0008) [FPointer]
|
|
517
|
+
EULATrackingHandle: 0x0478n, // 0x0478 (0x0008) [FPointer]
|
|
518
|
+
UnlockedDLC: 0x0480n, // 0x0480 (0x0010) [TArray<FName>]
|
|
519
|
+
UnlockedDLCDelegates: 0x0490n, // 0x0490 (0x0010) [TArray<FScriptDelegate>]
|
|
520
|
+
ExternalUIChangeDelegates: 0x04a0n, // 0x04a0 (0x0010) [TArray<FScriptDelegate>]
|
|
521
|
+
__OnMicroTxnResponse__Delegate: 0x04b0n, // 0x04b0 (0x0018) [FScriptDelegate]
|
|
522
|
+
__EventGetAppPriceInfoComplete__Delegate: 0x04c8n, // 0x04c8 (0x0018) [FScriptDelegate]
|
|
523
|
+
__OnPlayerTalking__Delegate: 0x04e0n, // 0x04e0 (0x0018) [FScriptDelegate]
|
|
524
|
+
__OnRecognitionComplete__Delegate: 0x04f8n, // 0x04f8 (0x0018) [FScriptDelegate]
|
|
525
|
+
__OnReadOnlineStatsComplete__Delegate: 0x0510n, // 0x0510 (0x0018) [FScriptDelegate]
|
|
526
|
+
__OnRegisterHostStatGuidComplete__Delegate: 0x0528n, // 0x0528 (0x0018) [FScriptDelegate]
|
|
527
|
+
__OnFlushOnlineStatsComplete__Delegate: 0x0540n, // 0x0540 (0x0018) [FScriptDelegate]
|
|
528
|
+
__OnLinkStatusChange__Delegate: 0x0558n, // 0x0558 (0x0018) [FScriptDelegate]
|
|
529
|
+
__OnExternalUIChange__Delegate: 0x0570n, // 0x0570 (0x0018) [FScriptDelegate]
|
|
530
|
+
__OnControllerChange__Delegate: 0x0588n, // 0x0588 (0x0018) [FScriptDelegate]
|
|
531
|
+
__OnConnectionStatusChange__Delegate: 0x05a0n, // 0x05a0 (0x0018) [FScriptDelegate]
|
|
532
|
+
__OnStorageDeviceChange__Delegate: 0x05b8n, // 0x05b8 (0x0018) [FScriptDelegate]
|
|
533
|
+
__OnCreateOnlineAccountCompleted__Delegate: 0x05d0n, // 0x05d0 (0x0018) [FScriptDelegate]
|
|
534
|
+
__OnPlayerTalkingStateChange__Delegate: 0x05e8n, // 0x05e8 (0x0018) [FScriptDelegate]
|
|
535
|
+
__OnCloseKickPlayerDialog__Delegate: 0x0600n, // 0x0600 (0x0018) [FScriptDelegate]
|
|
536
|
+
__OnCommerceDialogClosed__Delegate: 0x0618n, // 0x0618 (0x0018) [FScriptDelegate]
|
|
537
|
+
__OnErrorDialogClosed__Delegate: 0x0630n, // 0x0630 (0x0018) [FScriptDelegate]
|
|
538
|
+
__OnUnlockedDLCChange__Delegate: 0x0648n, // 0x0648 (0x0018) [FScriptDelegate]
|
|
539
|
+
__OnStorePurchaseCompleteDelegate__Delegate: 0x0660n, // 0x0660 (0x0018) [FScriptDelegate]
|
|
540
|
+
__OnUserOrphaned__Delegate: 0x0678n, // 0x0678 (0x0018) [FScriptDelegate]
|
|
541
|
+
__OnUserRestored__Delegate: 0x0690n, // 0x0690 (0x0018) [FScriptDelegate]
|
|
542
|
+
__OnPlayerSigningOut__Delegate: 0x06a8n, // 0x06a8 (0x0018) [FScriptDelegate]
|
|
543
|
+
__EventCryptoKeyCreated__Delegate: 0x06c0n, // 0x06c0 (0x0018) [FScriptDelegate]
|
|
544
|
+
__EventTextMessageSigned__Delegate: 0x06d8n, // 0x06d8 (0x0018) [FScriptDelegate]
|
|
545
|
+
__EventTextMessageValidated__Delegate: 0x06f0n, // 0x06f0 (0x0018) [FScriptDelegate]
|
|
546
|
+
__OnCaptureAvailabilityChange__Delegate: 0x0708n, // 0x0708 (0x0018) [FScriptDelegate]
|
|
579
547
|
...OnlineSubsystemCommonImpl,
|
|
580
548
|
} as const;
|
|
581
549
|
|
|
@@ -628,13 +596,3 @@ export const OnlineVoiceInterfaceEOS = {
|
|
|
628
596
|
__OnRecognitionComplete__Delegate: 0x0280n, // 0x0280 (0x0018) [FScriptDelegate]
|
|
629
597
|
...Object_,
|
|
630
598
|
} as const;
|
|
631
|
-
|
|
632
|
-
/**
|
|
633
|
-
* OnlineSubsystemEOS.VideoRecorderEOS Offsets
|
|
634
|
-
* Size: 0x0068
|
|
635
|
-
* Extends: Object_
|
|
636
|
-
*/
|
|
637
|
-
export const VideoRecorderEOS = {
|
|
638
|
-
VfTable_FTickableObject: 0x0060n, // 0x0060 (0x0008) [FPointer]
|
|
639
|
-
...Object_,
|
|
640
|
-
} as const;
|