texoras
Новичок
- 1
- 1
Актуальный оффсет: (0x4331b0), Coord(X): + 0x10, Coord(Y): + 0x14.Строки сехали не знайте какие щас?
C++ Waypoint:
uintptr_t client_s = reinterpret_cast<uintptr_t>(GetModuleHandleA("clientside.dll"));
if (!client_s) return;
uintptr_t vehicle_ptrs = *reinterpret_cast<uintptr_t*>(client_s + 0x4331b0);
if (!vehicle_ptrs) return;
float targetX = *reinterpret_cast<float*>(vehicle_ptrs + 0x10);
float targetY = *reinterpret_cast<float*>(vehicle_ptrs + 0x14);
Lua (Moonloader):
local ptr = mem.getint32(modulehandle + 0x4331b0)
local tx, ty = mem.getfloat(ptr + 0x10), mem.getfloat(ptr + 0x14)