[Help] Making hacks..
Well I've just made an Unlimited Stamina hack, but for some reason I got dced after a couple minutes with the trainer runing, and its says "a hacking tool\program is detected".
Why is it happening..?
People told me its might be because the game is detecting hooked programs and blocking it, So there's the API it uses, does any of it is blocked?
Code:
Public Declare Function GetWindowThreadProcessId Lib "user32" (ByVal hwnd As Long, lpdwProcessId As Long) As Long
Public Declare Function OpenProcess Lib "kernel32" (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessId As Long) As Long
Public Declare Function WriteProcessMemory Lib "kernel32" (ByVal hProcess As Long, ByVal lpBaseAddress As Any, lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long
Public Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Long) As Long
Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal Classname As String, ByVal WindowName As String) As Long
Public Declare Function ReadProcessMem Lib "kernel32" Alias "ReadProcessMemory" (ByVal hProcess As Long, ByVal lpBaseAddress As Any, ByRef lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long
Public Declare Function GetAsyncKeyState Lib "user32" (ByVal key As Long) As Integer
And #2 question:
How do I making the unlimited greandes hack, no delay between grenades and everyone at the same postion (which stucks me on the air and allows me hit them all from the place - vacing everyone)?
Thanks.