Recent content by Scraatch

  1. Scraatch

    convert ahk code into c++

    no hahaha i want to ask if the player is spawned in c++ internal but i dont know how to convert the funktion from autohotkey into c++
  2. Scraatch

    convert ahk code into c++

    yeah i have the address for the samp.dll and i do internal code for a .dll
  3. Scraatch

    convert ahk code into c++

    yes DWORD samp = (DWORD)GetModuleHandleA("samp.dll"); and i found that code in a keybinder source
  4. Scraatch

    convert ahk code into c++

    bro i think thats cleo? i want it in c++
  5. Scraatch

    convert ahk code into c++

    Might be like that, but i have no experience with converting code and i really dont understand how the _DWORD function in autohotkey works
  6. Scraatch

    convert ahk code into c++

    Hello, i want to check if the player is spawned and i found this code in an autohotkey script and tried to convert it into c++ but with no success. I hope that someone can explain to me how to convert code such like this. Btw i am new at coding and learning c++. isPlayerSpawned() { return...
  7. Scraatch

    get target ped

    how do i do it?
  8. Scraatch

    get target ped

    thank you! is there a solution to avoid shooting at ped behind walls? //EDIT: It is even shooting if only the green triangle is showing. how can i fix this that it only shoots if i am on the player?
  9. Scraatch

    get target ped

    i used this to get the target ped but always when i start the game, it crashes and its because of the address i use address: DWORD getTargetPed(void) { return *(DWORD*)((*(DWORD*)0xB6F3B8) + 0x79C); } how do i fix this? need it for a triggerbot
  10. Scraatch

    [C++] Simple command system (0.3.7R1)

    Some std funcs dont work, but i think its because i used a namespace for std but the other error i do not know how to fix pls help
  11. Scraatch

    How to use d3d9?

    do you have an video tutorial for this? hahaha sorry i am absolutly new at visual studio and c++ and i have no idea how to put in the directories and all of that, but i got installed the sdk under C:\Windows haha
  12. Scraatch

    Why its not working?? [SOLVED]

    But when do i know to use int, byte, dword, float or what else for example: coords are floats but on https://gtamods.com/wiki/Memory_Addresses_(SA) it says that the coords are dwords and i dont know what to choose
  13. Scraatch

    How to use d3d9?

    How can i include d3d9 to show some text on screen?
  14. Scraatch

    Why its not working?? [SOLVED]

    Thank you! Do you know if there is any good youtube tutorial on this? I cant find one
  15. Scraatch

    Why its not working?? [SOLVED]

    I have this code created but have no idea why the numpad1 function to change the health of the player is not working, i tried it on int and float #pragma comment(lib, "Open-SAMP-API.lib") #include <iostream> #include "SAMP_API.h" #define WIN32_LEAN_AND_MEAN #include "Windows.h" #include...
Top