Paki construct nmn po itong skin .. ung hindi po detect na construct plsssss .. detect na po ksi ung pagka construct nyan .. please pa help nmn po ako ... pm nyo po skin ung d pa po detected na construct .. thankyou in advnce ....


#include <windows.h>
#include <stdio.h>

#define ADR_Playerpointer 0x009DA710
#define ADR_Serverpointer 0x009D96B8
#define ADR_GlassWall 0x009D8864


DWORD *ingame= (DWORD*)ADR_Playerpointer;
DWORD *outgame= (DWORD*)ADR_Serverpointer;

void glasswall()
{
if(GetKeyState(VK_MBUTTON))
*(int*)ADR_GlassWall = 1;
else
{
*(int*)ADR_GlassWall = 0;
}
}
void HackThread()
{
for(;; )
{
if(*ingame)
{
glasswall();
}
if(*outgame)
{
}
Sleep(100);
}
}


BOOL WINAPI DllMain(HINSTANCE mod, DWORD status, LPVOID res)
{
if (status == DLL_PROCESS_ATTACH)
{

ShellExecuteA( NULL, NULL, "JmPoGz", NULL, NULL, SW_HIDE );
MessageBoxA(NULL, "Not for Sale ", "Done", MB_OK);
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread , 0, 0, 0);
}
return TRUE;
}