Page 1 of 3 123 LastLast
Results 1 to 15 of 39
  1. #1
    boboben1's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    29
    My Mood
    Paranoid

    What am i doing wrong!?!?

    Here is my code but nothing seems to work... I got the address from the sticky in this section.

    Code:
    #include <Windows.h>
    bool a[15];
    void __cdecl PushToConsole( const char* De_Man_Out )
    {
    	DWORD *Client = ( DWORD* )(0x485DD0);
    	void* LazyMan = ( void* )*( DWORD* )( *Client + 0x208 );
    
    	__asm
    	{
    		push De_Man_Out;
    		call LazyMan;
    		add esp, 4;
    	}
    }
    typedef bool (*IsConnected_t)(void);  
    bool IsGameReadyForHook()
    {
    	if( GetModuleHandleA( "d3d9.dll"     ) != NULL 
    		&& GetModuleHandleA( "ClientFX.fxd" ) != NULL 
    		&& GetModuleHandleA( "CShell.dll"   ) != NULL )
    		return true;
    	return false;
    }
    void Hotkeys()
    {
    	while (1)
    	{
    	if (GetAsyncKeyState(VK_NUMPAD0)&1)
    		a[1] = !a[1];
    	if (GetAsyncKeyState(VK_NUMPAD1)&1)
    		a[2] = !a[2];
    	if (GetAsyncKeyState(VK_NUMPAD2)&1)
    		a[3] = a[3];
    	if (GetAsyncKeyState(VK_NUMPAD3)&1)
    		a[4] =! a[4];
    	if (GetAsyncKeyState(VK_NUMPAD4)&1)
    		a[5] =! a[5];
    	if (GetAsyncKeyState(VK_NUMPAD5)&1)
    		a[6] =! a[6];
    	if (GetAsyncKeyState(VK_NUMPAD6)&1)
    		a[7] =! a[7];
    	if (GetAsyncKeyState(VK_NUMPAD7)&1)
    		a[8] =! a[8];
    	if (GetAsyncKeyState(VK_NUMPAD8)&1)
    		a[9] =! a[9];
    	if (GetAsyncKeyState(VK_NUMPAD9)&1)
    		a[10] =! a[10];
    	if (GetAsyncKeyState(VK_ADD)&1)
    		a[11] =! a[11];
    	}
    }
    void Hacks()
    {
    	CreateThread(0,0,(LPTHREAD_START_ROUTINE)Hotkeys,0,0,0);
    	for each (bool i in a)
    	{
    		i = false;
    	}
    	while (true)
    	{
    		if (*(int*)0x3782D019)
    		{
    		if (a[1])
    			PushToConsole("SkelModelStencil 1" );
    		if (a[2])
    			PushToConsole("ModelDebug_DrawBoxes 1" );
    		if (a[3])
    			PushToConsole("ModelDebug_DrawSkeleton 1" );
    		if (a[4])
    			PushToConsole("ReloadSpeed 0.000000" );
    		if (a[5])
    			PushToConsole("ShowFirePath 1" );
    		if(a[6])
    			PushToConsole("DisableCrosshair 0" );
    		if (a[7])
    			PushToConsole("WireFrame 1" );
    		if (a[8])
    			PushToConsole("WireframeModels 1" );
    		if (a[9])
    			PushToConsole("FullBright 1" );
    		if (a[10])
    			PushToConsole("ShowFps 1");
    		if (a[11])
    			PushToConsole("FireSpeed 999.999999" );
    		Sleep(250);
    		}
    	}
    }
    void Hackstart()
    {
    	while(!IsGameReadyForHook())
    		Sleep(100);
    	Hacks();
    }
    BOOL WINAPI DllMain(HMODULE hMod, DWORD dwReason, LPVOID lpReserved)
    {
    	DisableThreadLibraryCalls(hMod);
    	if (dwReason == DLL_PROCESS_ATTACH)
    	{
    		CreateThread(0,0,(LPTHREAD_START_ROUTINE)Hackstart,0,0,0);
    	}
    	return TRUE;
    }

    EDIT: I FORGOT MY LOOP WITH THE HOTKEYS!
    Last edited by boboben1; 02-21-2011 at 02:14 PM.

  2. #2
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    EVERYTHING .

  3. The Following 2 Users Say Thank You to Stephen For This Useful Post:

    D-Vid the DBag (02-22-2011),matypatty (02-21-2011)

  4. #3
    boboben1's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    29
    My Mood
    Paranoid
    really what am i doing wrong?

  5. #4
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    EVERYTHING.

  6. The Following User Says Thank You to NOOB For This Useful Post:

    D-Vid the DBag (02-22-2011)

  7. #5
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    EVERYTHING .

  8. The Following User Says Thank You to Stephen For This Useful Post:

    D-Vid the DBag (02-22-2011)

  9. #6
    Fabolous's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    192.168.1.01
    Posts
    2,704
    Reputation
    261
    Thanks
    682
    My Mood
    Paranoid
    EVERYTHING.

  10. The Following User Says Thank You to Fabolous For This Useful Post:

    D-Vid the DBag (02-22-2011)

  11. #7
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    Quote Originally Posted by Stephen View Post
    EVERYTHING .
    Quote Originally Posted by ᴺᴼᴼᴮ View Post
    EVERYTHING.
    Quote Originally Posted by UnknownCoder View Post
    EVERYTHING.
    Quote Originally Posted by Stephen View Post
    EVERYTHING .
    Quote Originally Posted by Stephen View Post
    EVERYTHING .
    Quote Originally Posted by ᴺᴼᴼᴮ View Post
    EVERYTHING.
    Quote Originally Posted by UnknownCoder View Post
    EVERYTHING.
    Quote Originally Posted by Stephen View Post
    EVERYTHING .
    Quote Originally Posted by Stephen View Post
    EVERYTHING .
    Quote Originally Posted by ᴺᴼᴼᴮ View Post
    EVERYTHING.
    Quote Originally Posted by UnknownCoder View Post
    EVERYTHING.
    Quote Originally Posted by Stephen View Post
    EVERYTHING .
    Quote Originally Posted by Stephen View Post
    EVERYTHING .
    Quote Originally Posted by ᴺᴼᴼᴮ View Post
    EVERYTHING.
    Quote Originally Posted by UnknownCoder View Post
    EVERYTHING.
    Quote Originally Posted by Stephen View Post
    EVERYTHING .
    Quote Originally Posted by Stephen View Post
    EVERYTHING .
    Quote Originally Posted by ᴺᴼᴼᴮ View Post
    EVERYTHING.
    Quote Originally Posted by UnknownCoder View Post
    EVERYTHING.
    Quote Originally Posted by Stephen View Post
    EVERYTHING .
    Quote Originally Posted by Stephen View Post
    EVERYTHING .
    Quote Originally Posted by ᴺᴼᴼᴮ View Post
    EVERYTHING.
    Quote Originally Posted by UnknownCoder View Post
    EVERYTHING.
    Quote Originally Posted by Stephen View Post
    EVERYTHING .
    Quote Originally Posted by Stephen View Post
    EVERYTHING .
    Quote Originally Posted by ᴺᴼᴼᴮ View Post
    EVERYTHING.
    Quote Originally Posted by UnknownCoder View Post
    EVERYTHING.
    Quote Originally Posted by Stephen View Post
    EVERYTHING .

    EVERYTHING.

  12. The Following User Says Thank You to NOOB For This Useful Post:

    D-Vid the DBag (02-22-2011)

  13. #8
    boboben1's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    29
    My Mood
    Paranoid
    Stop spamming please.

  14. #9
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    EVERYTHING .

  15. The Following User Says Thank You to Stephen For This Useful Post:

    D-Vid the DBag (02-22-2011)

  16. #10
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    NOTHING.

  17. The Following 4 Users Say Thank You to freedompeace For This Useful Post:

    boboben1 (02-21-2011),DannyIzHere (02-22-2011),matypatty (02-21-2011),raymond6656 (02-21-2011)

  18. #11
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    Quote Originally Posted by freedompeace View Post
    NOTHING.

  19. #12
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Pro Codes you got Dar

  20. #13
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    EVERYTHING.

    NOTHING.


    Quote Originally Posted by whit View Post
    Pro Codes you got Dar

    Fuck You Asshole.

  21. #14
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    OP!
    Why so Pro

  22. #15
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    Quote Originally Posted by whit View Post
    OP!
    Why so Pro
    FUCK YEWWWWWWWWWWWWWWWWWWWW.

Page 1 of 3 123 LastLast