#include <windows.h>
#include <iostream>
using namespace std;
void __cdecl PushToConsole(char* szVal ) {
DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
if( dwCShell != NULL )
{
DWORD *LTClient = ( DWORD* )( (dwCShell + 0x299D40) );
void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x1F8 );
_asm
{
push szVal;
call CONoff;
add esp, 4;
}
}
}
DWORD WINAPI hello(LPVOID) {
while(GetModuleHandleA("CShell.dll") == NULL ) {
Sleep(100); //100ms
}
bool NoWeaponWeight = false; //enable becouse in xp the hotkey's don't work
bool NoSpread = false;
for(;;) {
__asm pushad;
if(GetAsyncKeyState(VK_NUMPAD1)&1) {
NoWeaponWeight = !NoWeaponWeight;
}
if(GetAsyncKeyState(VK_NUMPAD2)&1) {
NoSpread = !NoSpread;
}
if (NoWeaponWeight) {
PushToConsole("NoWeaponWeight 1");
}
else {
PushToConsole("NoWeaponWeight 0");
}
if (NoSpread) {
PushToConsole("NoSpread 1");
}
else {
PushToConsole("NoSpread 0");
}
Sleep(100);
__asm popad;
}
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if ( dwReason == DLL_PROCESS_ATTACH )
{
MessageBoxA(0, "Coded By ZombieKilere", "Injected", 0);
CreateThread(NULL, NULL,hello, NULL, NULL, NULL);
}
return TRUE;
}



