Recent content by gdzies

  1. G

    [C++ 0.3.7] Pls help, get vehicle array for coordinates

    ok cool guy, did you really just make an alt account just for this. I already said im stupid thats why im asking a dumb question. your tip about going and reading open source mod sa. I already thought of it. i have the waypoint seeking thing working already. for the rest it would take me too...
  2. G

    [C++ 0.3.7] Pls help, get vehicle array for coordinates

    If you mean address 0xB74494 from the wiki, I have no idea why nothing showing up even selecting the first vehicle in the pool, thats why im confused. i tried finding the vehicle pool on my own and that wheel pool above is all I found lmao
  3. G

    [C++ 0.3.7] Pls help, get vehicle array for coordinates

    Hello! I'm making a simple Ai driver that avoids player vehicles and parked ones, I just cant find an easy way to get each vehicles coordinates from an array. so far with CHEAT ENGINE I only found "(samp.dll + 0x13C600) + 0x724" this seems to be an array of wheels. problem is each offsets to the...
  4. G

    GTA SAMP integrated anticheat??or something else? C++ problem

    I just got all the functions needed and got the g_dwSAMP_Addr address but in here memcpy_safe((void *)(g_dwSAMP_Addr + 0x99250), "\xC3", 1); memcpy_safe((void *)(g_dwSAMP_Addr + 0x286923), "\xB8\x45\x00\x00\x00\xC2\x1C\x00", 8); memcpy_safe((void *)(g_dwSAMP_Addr + 0x298116)...
  5. G

    GTA SAMP integrated anticheat??or something else? C++ problem

    ok il learn how to do it. do i get the memcpy_safe function from the s0beit code or is it already in C++ and do i need to loop the bypass code or just execute it once? memcpy_safe((void *)(g_dwSAMP_Addr + 0x99250), "\xC3", 1); memcpy_safe((void *)(g_dwSAMP_Addr + 0x286923)...
  6. G

    GTA SAMP integrated anticheat??or something else? C++ problem

    how do i get "g_dwSAMP_Addr"
  7. G

    SAMP bypass anticheat

    I dont have discord either. i just want a way to communicate with you privately is it possible to PM someone in this forum? if so we can do it that way
  8. G

    SAMP bypass anticheat

    Set both values still getting freezed in r1 but in 0.3.7 r1 i dont get freezed instantly like r3 it takes 1 minute to 2 even if i dont set the values should i send you the program i made so you can test it? my name on steam is "shatrtit" with engineer smiling please add me or i can add you
  9. G

    SAMP bypass anticheat

    DWORD address = samp.dll + 0x99250; DWORD value = 507680707; WriteProcessMemory(handle, (LPVOID)address, (LPVOID)&value, 4, NULL); DWORD address1 = samp.dll + 0x286923; DWORD value1 = 17848; WriteProcessMemory(handle, (LPVOID)address1, (LPVOID)&value1, 4, NULL); I just did this both in...
  10. G

    SAMP bypass anticheat

    its not a server anti cheat is integrated samp anti cheat that freezes your game when you writeprocessmemory in c++ and sobeit already has function to bypass it but im looking for another way to do it cause i couldnt implement the function myself
  11. G

    SAMP bypass anticheat

    Is there an easy way to bypass the SAMP anticheat in c++ without copying sob0it code? please i been asking for days help please!!!!!! the anticheat the freezes you when you writeprocessmemory in c++ you know about it
  12. G

    GTA SAMP integrated anticheat??or something else? C++ problem

    Thanks. but i been trying all day to implement the functions needed for the "void sampPatchDisableAnticheat(void)" function and i couldnt do it is there another way (easier way if there is?) to do this? i hope you know what i actually mean please reply
  13. G

    GTA SAMP integrated anticheat??or something else? C++ problem

    I made a c++ program that when certain buttons gets pressed the camera position and player angle changes with writeprocessmemory function in C++ still a c++ newbie... after a about a minute the game freezes not crash but you cant control mouse or press WSAD keys this only happens in samp as far...
Top