How to make hacks?

03/16/2011 09:46 manderigon#1
Hello! I am from Poland and i poorly know Deutsch. I know English. ;)

How to make hacks? I have code:

Code:
DWORD WINAPI Hacks(LPVOID)
{
	bool oneshot = false;
            bool norepeatreload = false;
            bool gunkniferange = false;
            bool unlimitedammo = false;
	while(1)
	{
		DWORD CShellBase = (DWORD)GetModuleHandleA("CShell.dll");

     
   		if(oneshot) 
         	{
           		for(int i=0 ; i<445 ; i++)
          		{
          		 *(float*)( (*(DWORD*)((*(DWORD*)(CShellBase + UPDATE ))+(4*i))) + 0x7F8) = FLT_MAX ;
    			}
		}
	}
}

   		if(norepeatreload) 
         	{
           		for(int i=0 ; i<445 ; i++)
          		{
          		 *(float*)( (*(DWORD*)((*(DWORD*)(CShellBase + UPDATE ))+(4*i))) + 0xA44) = FLT_MAX ;
    			}
		}

   		if(gunkniferange) 
         	{
           		for(int i=0 ; i<445 ; i++)
          		{
          		 *(float*)( (*(DWORD*)((*(DWORD*)(CShellBase + UPDATE ))+(4*i))) + 0x24B8) = FLT_MAX ;
    			}
		}

		if(unlimitedammo) 
         	{
           		for(int i=0 ; i<445 ; i++)
          		{
          		 *(float*)( (*(DWORD*)((*(DWORD*)(CShellBase + UPDATE ))+(4*i))) + 0x7FC) = FLT_MAX ;
    			}
		}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved ) {
    DisableThreadLibraryCalls(hDll);
    if ( dwReason == DLL_PROCESS_ATTACH ) {
         MessageBoxA(0, "Injectowanie zakończone sukcesem!", "Dobra robota!" , 0);
		 
     
    }
    return true;
    }
and I want make Hotkey. Does the code is written correctly? If no, please help me. :)
03/16/2011 12:32 manderigon#2
Thanks. :(
03/16/2011 13:30 blablablavirusblablabla#3
dobry tutorial :D
ladnie opisany thanks :D
03/16/2011 14:28 crossfireXfreak#4
what a programm?
03/16/2011 14:29 blablablavirusblablabla#5
100% [Only registered and activated users can see links. Click Here To Register...]
03/16/2011 16:55 Ende!#6
This is a [no questions] section. If you want to create a hack, learn programming and try again ..

#closed