- Joined
- Dec 8, 2013
- Messages
- 911
- Reaction score
- 2
- Points
- 16
- Age
- 21
BlackShot Garena Kick Hack Source
~i did reversed the original Kick Hack Dll and here's what i got
Paste this to your Empty Dll Project:
#include <windows.h>#define PLAYER_BASE 0x8A09C8bool Trigger;void DoSomeKicking(){ DWORD _ecx = *(PDWORD)PLAYER_BASE; if(!_ecx) return; if(Trigger) *(PBYTE)(_ecx + 0x6C0) = 1; // Turn On else *(PBYTE)(_ecx + 0x6C0) = 0; // Turn Off}void Init(){ while(1) { if(GetAsyncKeyState(VK_NUMPAD1)&1) // Hit Num1 to turn On and Off Trigger =! Trigger; DoSomeKicking(); Sleep(100); }}BOOL WINAPI DllMain(HMODULE hModule, DWORD dwReason, LPVOID lpvReserved){ if(dwReason == DLL_PROCESS_ATTACH){ CreateThread(0,0,( LPTHREAD_START_ROUTINE )Init,0,0,0); } return TRUE;}Enjoy kicking them
~i did reversed the original Kick Hack Dll and here's what i got
Paste this to your Empty Dll Project:
#include <windows.h>#define PLAYER_BASE 0x8A09C8bool Trigger;void DoSomeKicking(){ DWORD _ecx = *(PDWORD)PLAYER_BASE; if(!_ecx) return; if(Trigger) *(PBYTE)(_ecx + 0x6C0) = 1; // Turn On else *(PBYTE)(_ecx + 0x6C0) = 0; // Turn Off}void Init(){ while(1) { if(GetAsyncKeyState(VK_NUMPAD1)&1) // Hit Num1 to turn On and Off Trigger =! Trigger; DoSomeKicking(); Sleep(100); }}BOOL WINAPI DllMain(HMODULE hModule, DWORD dwReason, LPVOID lpvReserved){ if(dwReason == DLL_PROCESS_ATTACH){ CreateThread(0,0,( LPTHREAD_START_ROUTINE )Init,0,0,0); } return TRUE;}Enjoy kicking them
Last edited by a moderator: