项目作者: xTeJk

项目描述 :
Sea of Thieves - Advanced ESP
高级语言: C++
项目地址: git://github.com/xTeJk/SoT_ESP.git
创建时间: 2020-01-22T19:45:51Z
项目社区:https://github.com/xTeJk/SoT_ESP

开源协议:MIT License

下载


SoT ESP

Sea of Thieves - Advanced ESP - 2.0.17.2
Discord

How to:

Compilation:

  • VS 2017 / v141 / .exe application
    • Includes +: C:\Program Files %28x86%29\Microsoft DirectX SDK %28June 2010%29\Include
    • Libraries +: C:\Program Files %28x86%29\Microsoft DirectX SDK %28June 2010%29\Lib\x64
    • /Od disabled (default)
  • (Ready to compile source version for 2.0.17.2 is available to download in Releases)
  • Compile as Release x64 version

Offsets:

Current Offsets (21.08.2020 / 2.0.17.2):

  1. {
  2. "AActor.HealthComponent": 2216,
  3. "AActor.PlayerState": 1144,
  4. "AActor.WieldedItemComponent": 2176,
  5. "AActor.actorId": 24,
  6. "AActor.rootComponent": 368,
  7. "ABootyItemInfo.BootyType": 1432,
  8. "ABootyItemInfo.Rarity": 1796,
  9. "ACrewService.Crews": 1568,
  10. "AFauna.Name": 2184,
  11. "AItemInfo.UItemDesc": 1200,
  12. "AItemProxy.AItemInfo": 1568,
  13. "AMapTable.MapPins": 1352,
  14. "AMapTable.ServerCenter": 1320,
  15. "AMapTable.TrackedShips": 1368,
  16. "APlayerCameraManager.CameraCache": 1232,
  17. "APlayerController.CameraManager": 1256,
  18. "APlayerController.ControlRotation": 684,
  19. "APlayerController.Pawn": 1120,
  20. "APlayerState.PlayerName": 1120,
  21. "AShip.CrewOwnershipComponent": 2000,
  22. "AWieldableItem.ItemInfo": 1544,
  23. "UCrewOwnershipComponent.CrewId": 212,
  24. "UGameInstance.LocalPlayers": 56,
  25. "ULocalPlayer.PlayerController": 48,
  26. "UWieldedItemComponent.WieldedItem": 656,
  27. "UWorld.OwningGameInstance": 448,
  28. "UWorld.PersistentLevel": 48
  29. }

SDK:

If you want to use new features or get to know the SDK better, you can use this: http://sot-guide.igromanru.com

Keybinds:

If you want to change keybinds use:
https://docs.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes
find interesting key VK_ or 0x code and put inside Main.cpp at correct place, eg.:
KeyToggle toggleF1(VK_F1);
replace to:
KeyToggle toggleF1(0x31);
to make F1 menu bootable by 1 instead of F1.

Functions:

All functions are possible for any configuration

  • ESP:
    • Players (name, health bar, current weapon/item in hands, box)
    • Mobs (name, health bar, current weapon/item in hands, box)
    • Animals (rarity, type)
    • Treasures (including all supply crates and barrels)
    • Ships (enemy ships, cloud ships, ally ships)
    • Lore Books
    • Events (Forts, Reaper’s Chest etc.)
  • List of players by ships and their type
  • Debug mode to aid in coding new functions

1
2
3