Boneshot Source code advance
Code:
/////////////////////////Protection/////////////////////////
struct ctools
{
HRESULT AsmCreate(LPVOID Adress,LPVOID bytes,int Size,DWORD Method);
HRESULT Message(char *Title,char *Body);
}; ctools *cTools;
HRESULT ctools::AsmCreate(LPVOID Adress,LPVOID bytes,int Size,DWORD Method)
{
DWORD GuardedMemcpy;
VirtualProtect(Adress,Size,Method,&GuardedMemcpy);
memcpy((LPVOID)(Adress),(PBYTE)(bytes),(Size));
VirtualProtect(Adress,Size,GuardedMemcpy,&GuardedMemcpy);
return (1);
}
/////////////////////////Protection/////////////////////////
void boneshotsoff()
{
if (GetAsyncKeyState(VK_LEFT))
{
cTools->AsmCreate((LPVOID)(0xYOUR ADDRESS HERE),(PBYTE)("\x00\xA0\x9A\x44"),(4),PAGE_READWRITE);
MessageBeep(MB_OK);
}
}
void boneshotson()
{
if (GetAsyncKeyState(VK_RIGHT))
{
cTools->AsmCreate((LPVOID)(0xYOUR ADDRESS HERE),(PBYTE)("\x00\x60\x9A\x44"),(4),PAGE_READWRITE);
MessageBeep(MB_OK);
}
}
Please Press thanks.
Don't copy and paste and disappear.
Give some thanks or a comment for the effort.