Advertisement
en2my1234

Untitled

Sep 7th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1. #pragma once
  2. #include "Include.h"
  3.  
  4. struct offset
  5. {
  6. static uint64_t GNamesProxy;
  7. static uint64_t GNamesChunkSize;
  8. static uint64_t UWorld;
  9. static uint64_t ULevel;
  10. static uint64_t GameInstance;
  11. static uint64_t LocalPlayer;
  12. static uint64_t PlayerController;
  13. static uint64_t pawn;
  14. static uint64_t ActorID;
  15. static uint64_t ActorArray;
  16. static uint64_t BoneArray;
  17. static uint64_t PlayerCameraManager;
  18. static uint64_t mesh;
  19. static uint64_t health;
  20. static uint64_t team;
  21. static uint64_t rootcomp;
  22. static uint64_t camera_location;
  23. static uint64_t camera_rotation;
  24. static uint64_t camera_fov;
  25. static uint64_t comptoworld;
  26. };
  27. //DecryptGeneral = C3 CC CC CC CC CC CC CC CC CC CC CC 8B D1
  28. /*GameInstance 담아가는 부분: 48 8b 01 ff 90 ? ? ? ? 48 85 c0 74 15 48 8b ? ? ? ? ? 48 85 c9 74 09
  29. LocalPlayer 담아가는 부분 cc cc 4c 8b dc 55 53 49 8d ab ? ? ? ? 48 81 ec ? ? ? ? 48 8b 05 ? ? ? ? 48 33 c4 48 89 85 ? ? ? ? f2 0f 10 05 ? ? ? ?*/
  30.  
  31. uint64_t offset::GNamesProxy = 0x44C0E80; //48 8D 3D ? ? ? ? F3 48 AB 48 8D 3D ? ? ? ? B9 ? ? ? ? F3 48 AB + 1fa0
  32. uint64_t offset::GNamesChunkSize = 0x3e88; //C1 ? ? 8B ? C1 ? 1F 03 ? 69 ? ? ? ? ? 48 63
  33. uint64_t offset::UWorld = 0x4135390; //48 03 1D ? ? ? ? 74 4C
  34. uint64_t offset::ULevel = 0x638; //C3 0F ? ? ? ? ? ? 8B ? ? ? ? ? 0F ? ? 0F ? ? ? 0F ? ? 0F ? ? ? ? decrypt fucntion
  35. uint64_t offset::GameInstance = 0x7e0; //48 89 5C 24 ? 48 89 74 24 ? 57 48 83 EC ? 48 8B 01 48 8B D9 FF 90 ? ? ? ? 48 85 C0 decrypot function
  36. uint64_t offset::LocalPlayer = 0x50; //48 83 ec ? 48 8b c2 48 85 d2 0f 85 ? ? ? ? decrypt function
  37. uint64_t offset::PlayerController = 0x38; //48 8b 01 ff 90 ? ? ? ? 48 8b 05 ? ? ? ? 41 8b dc decrypt function //C3 CC CC CC 48 ? ? ? ? 48 ? ? ? ? ? 41 ? 41 ? 48 ? ? ? ? ? 48 ? ? 0F ? ? ? ? ? ? ? 48 ? ? ? 4C ? ? ? ?
  38. uint64_t offset::ActorArray = 0x68; //80 ? ? ? 74 ? f3 ? ? ? f3 ? ? ? f3 ? ? ? f3 ? ? ? ? f3 ? ? ? ? f3 ? ? ? ? f3 ? ? ? ? decrypt function
  39. uint64_t offset::ActorID = 0x8; //40 53 56 41 56 48 83 ec ? 4c 8b f2 48 8b f1 decrypt fucntion
  40. uint64_t offset::pawn = 0x440; //E9 ? ? ? ? CC CC CC CC 48 ? ? ? ? ? 48 ? ? 48 ? ? ? ? ? ?
  41.  
  42. uint64_t offset::mesh = 0x490; //C3 CC CC CC CC CC CC CC CC 48 8B 81 ? ? ? ? C3 CC CC CC CC CC CC CC CC 48 89 6c 24 ? 56 48 83 ec ? first
  43. uint64_t offset::BoneArray = 0xA10; //not patched |UCustomMeshComponent| maybe?
  44. uint64_t offset::comptoworld = 0x300; //C3 CC CC CC CC CC CC CC CC 48 83 EC ? 0F 10 99 ? ? ? ? 48 8B C2 0F 29 ? ? 0F 28 ?
  45.  
  46. uint64_t offset::health = 0xdf4; //C3 CC CC CC CC CC CC CC CC 0F 57 C0 0F 2F 81 ? ? ? ? 72 0c 0f 2f 81 ? ? ? ?
  47. uint64_t offset::team = 0x1628; //not patched
  48.  
  49. uint64_t offset::rootcomp = 0x2D0; //E9 ? ? ? ? CC CC CC CC 48 ? ? ? ? ? 48 ? ? 48 ? ? ? ? ? ?
  50.  
  51. uint64_t offset::PlayerCameraManager = 0x4a0; //e9 ? ? ? ? 48 8b 8b ? ? ? ? 48 85 c9 74 3b
  52. uint64_t offset::camera_location = 0x10C0; //movsd xmm0,[rcx+0000???]
  53. uint64_t offset::camera_rotation = 0x10AC; //89 46 ? f2 0f 10 81 ? ? ? ? f2 0f 11 ? 8b 81 ? ? ? ? movsd xmm0,[rcx+00000????]
  54. uint64_t offset::camera_fov = 0x440; //do this shit with bruteforce //not patched
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement