Results 1 to 12 of 12
  1. #1
    dion456-'s Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0

    please help dudes

    alright i have no clue what to do wih this >ADR_ILTDRAWPRIM: 0x8014B8
    ADR_GETPLAYERBYINDEX: 0x3715DD50
    ADR_CLIENTINFOMGR: 0x3780C0C8
    ADR_GETLOCALPLAYER: 0x3715E700

    there codes to this hack but idk where to put it.
    someone please help.

  2. #2
    F-U-ALL's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    224
    Reputation
    20
    Thanks
    23
    My Mood
    Hot
    Wrong section + To work these you need to know C++

  3. #3
    Threadstarter
    Unverified User
    dion456-'s Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    whats that

  4. #4
    Stevenom's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Summoner's Rift
    Posts
    17,743
    Reputation
    1087
    Thanks
    1,917
    My Mood
    Doubtful
    If you wanna learn how to make hacks learn C++.

  5. #5
    F-U-ALL's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    224
    Reputation
    20
    Thanks
    23
    My Mood
    Hot
    Wow. This noob needs NOOBILACAL medication, You dont know what C++ is?

  6. #6
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    Code:
    DWORD WINAPI Hacks(LPVOID)
    {
    	while( !IsGameReadyForHook() )
    	Sleep(600);
    	Menu.show(); // Will show you the menu ingame. Just put that in C++ and compile
    	return 0;
    }
    No I do not make game hacks anymore, please stop asking.

  7. #7
    F-U-ALL's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    224
    Reputation
    20
    Thanks
    23
    My Mood
    Hot
    Quote Originally Posted by flameswor10 View Post
    Code:
    DWORD WINAPI Hacks(LPVOID)
    {
    	while( !IsGameReadyForHook() )
    	Sleep(600);
    	Menu.show(); // Will show you the menu ingame. Just put that in C++ and compile
    	return 0;
    }
    Fail sauce, He doesnt know what C++ is.

  8. #8
    Rigby's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    NJ
    Posts
    2,050
    Reputation
    37
    Thanks
    279
    My Mood
    Amazed
    how did this kid even get these codes

    Source Filmmaker Animator/Poster Maker
    Former Minecraft Minion
    Film Enthusiast
    TF2 Player

  9. #9
    Stevenom's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Summoner's Rift
    Posts
    17,743
    Reputation
    1087
    Thanks
    1,917
    My Mood
    Doubtful
    Quote Originally Posted by Joebob97 View Post
    how did this kid even get these codes
    Probably leeched.

  10. #10
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    Quote Originally Posted by Joebob97 View Post
    how did this kid even get these codes
    The ones posted by MrThreadStarter isn't even a source
    No I do not make game hacks anymore, please stop asking.

  11. #11
    Rigby's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    NJ
    Posts
    2,050
    Reputation
    37
    Thanks
    279
    My Mood
    Amazed
    well this dude ultimately fails

    Source Filmmaker Animator/Poster Maker
    Former Minecraft Minion
    Film Enthusiast
    TF2 Player

  12. #12
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    Code:
    #include "stdafx.h"
    #include <windows.h>
    #include "defines.h"
    #define ADR_NAMETAGS1 0x3736EFDC
    #define ADR_NAMETAGS2 0x3736F07D
    #define SuperBullets 0x374B01B6
    #define ADR_RADAR 0x37849008
    bool HookOff;
    bool hackon = false;
    bool Alpha = true;
    bool Bravo = false;
    void MyHackz(void)
    {
    	while(1)
    	{
    		if(GetAsyncKeyState(VK_NUMPAD1)&1)
    		{
    			hackon = !hackon;
    		}
    		if(GetAsyncKeyState(VK_NUMPAD2)&1)
    		{
    			Alpha = !Alpha;
    		}
    		if(*(int*)0x3781A88C == 1)
    		{
    			if(hackon)
    			{
    				memcpy((LPVOID)ADR_NAMETAGS1,"\x90\x90",2);//Nametags 1 | Off
    				memcpy((LPVOID)ADR_NAMETAGS2,"\x90\x90",2);//Nametags 2 | Off
    				if(Alpha) {
    				*(long*)ADR_RADAR = 2;
    				}else{
    				*(long*)ADR_RADAR = 1;
    				}
    				//memcpy((LPVOID)ADR_SUPERBULLETS,"\x90\x90\x90",2);//Superbullets | Off	
    			}else{
    				memcpy((LPVOID)ADR_NAMETAGS1,"\x75\x21",2);//Nametags ON
    				memcpy((LPVOID)ADR_NAMETAGS2,"\x75\x05",2);//Nametags ON
    				if(*(long*)ADR_RADAR == 1) {
    				*(long*)ADR_RADAR = 1;
    				}else{
    				*(long*)ADR_RADAR = 2;
    }
    			}
    		}
    		else
    		{
    			memcpy((LPVOID)ADR_NAMETAGS1,"\x75\x21",2);//Nametags ON
    			memcpy((LPVOID)ADR_NAMETAGS2,"\x75\x05",2);//Nametags ON
    			//memcpy((LPVOID)ADR_SUPERBULLETS,"\x0F\x94\xC0",3)
    			if(*(long*)ADR_RADAR == 1) {
    			*(long*)ADR_RADAR = 1;
    				} else {
    			*(long*)ADR_RADAR = 2;
    			}  
    		}
    	}
    }
    
    DWORD WINAPI Addies(LPVOID) 
    { 
    	while ( !IsGameReadyForHook() )
    	Sleep(iWaitTime);
    	MyHackz();
    	return 0;
    }
    
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    	DisableThreadLibraryCalls(hDll);
    
    	if ( dwReason == DLL_PROCESS_ATTACH )
    	{
    		MessageBoxA(0,"Simple Flameswor10 Hotkey. Credz to Jeff for fixing it up.","Injection Succesful", MB_OK);
    		CreateThread(NULL, NULL, Addies, NULL, NULL, NULL);
    	}
    	return TRUE; 
    }
    That is what your source is supposed to look like
    Not
    Adr_nametags 0x123465798
    No I do not make game hacks anymore, please stop asking.