Recent content by DutchGay101

  1. D

    ScriptCommand C++

    how can i use the ScriptCommand in C++ ?
  2. D

    building an aimbot

    i managed to get the current camera mode, now i just need the camera Horizontal and Vertical Angle
  3. D

    building an aimbot

    what im looking for: Current Camera Mode (int) Camera Horizontal Angle (float) Camera Vertical Angle (float)
  4. D

    building an aimbot

    hi, im building a aimbot and i got to the aiming part, i needed some offsets and i couldnt find anything it in gtamods https://gtamods.com/wiki/Memory_Addresses_(SA) is there a place i can find these addresses? getting them by cheat engine is very difficult
  5. D

    get current weapon id

    thanks!
  6. D

    get current weapon id

    hi, im trying to get the localplayer current weapon id through offsets i found in https://gtamods.com/wiki/Memory_Addresses_(SA) but it doesnt seem to be working WORD GetCurrentWeaponID(DWORD PED) { if (!PED) return; WORD currentWEPID = *(WORD*)((uintptr_t)PED + 0x740)...
  7. D

    get camera x,y,z position

    my code was correct i didnt put it in a Code Preview thats why it looked like that
  8. D

    get camera x,y,z position

    dont give cleo code plz!
  9. D

    get camera x,y,z position

    how do i get the player camera's x,y,z position ? i tried float camX = (float)(0x76F338); float camY = (float)(0x76F33C); float camZ = (float)(0x76F340); didnt work
  10. D

    disable controls while in menu

    its not a different game its just a launcher for gta:sa that has its own network. nothing different
  11. D

    disable controls while in menu

    I wish that worked but the game has its own hooked wndproc the game is MTA:SA
  12. D

    disable controls while in menu

    it could be done using wndproc but i have no idea how
  13. D

    disable controls while in menu

    i wanna disable the player controls while the menu is open?
  14. D

    disable controls while in menu

    is there anyway to disable gta controls ? i tried using GetAsyncKeyState but wasnt enough tbh
Top