Page 9 of 9 FirstFirst ... 789
Results 121 to 135 of 135
  1. #121
    gcflames12's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    wada
    Posts
    181
    Reputation
    10
    Thanks
    24
    Yes it is! And it is Xtrap.xt wich loads cshell through the .dll xtrapext.dll!

  2. #122
    affe5's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    ofterr
    Posts
    26
    Reputation
    10
    Thanks
    0
    My Mood
    Psychedelic
    Hey. i sell my Crossfire Accounts here is the Link for the Accounts : Account 1 : Z8Games ? Home of the Best Free MMO Games - Clans - Character Details

    Account 2 : Z8Games ? Home of the Best Free MMO Games - Clans - Character Details

    when u will this Account only add me in icq / my icq number is 607447670 / or write me a E-mail my E-mail is : Crossfire88@hotmail.de

    fdddddddddddddddddddddddddddddddddddddd

    Hey. i sell my Crossfire Accounts here is the Link for the Accounts : Account 1 : Z8Games ? Home of the Best Free MMO Games - Clans - Character Details

    Account 2 : Z8Games ? Home of the Best Free MMO Games - Clans - Character Details

    when u will a Account only add me in icq my icq number is 607447670 / or write me a email my email is / crossfire88@hotmail.de

  3. #123
    tropfen's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Germany
    Posts
    209
    Reputation
    10
    Thanks
    234
    mhm....everything works great. but xtrap detects my hack?!? i used perx injector, faith injector and black dragon injector. can someone help me, pls?
    Last edited by tropfen; 08-09-2010 at 05:40 AM.
    ...just huhnfisch...

  4. #124
    GER-Domi.'s Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    277
    Reputation
    15
    Thanks
    823
    My Mood
    Cool
    ... ok i code like this basic xD.. but i don t get the hotkeys... hmm can anybody help me coding hotkeys... boxes / wireframe / no recoil for crossfire work.. but all is activated and not with hotkeys...

  5. #125
    tropfen's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Germany
    Posts
    209
    Reputation
    10
    Thanks
    234
    Make just a new project -> win32project -> give it a name like: hack -> press ok -> then should open a window -> press forward -> and choose empty dll.

    there should be a folder named "ressource files". left click: add new element. choose c++ file(.cpp). gave it a random name. then press add. now copy and past this code and compile it. in ur release folder should be the .dll file. just inject it to crossfire

    Code:
    /*******************************************************************/
    /*																   */
    /*			   Coded By [MPGH]Blood For www.Mpgh.net			   */
    /*																   */
    /*																   */
    /*  Credits:													   */
    /*		[MPGH]Blood												   */
    /*		[MPGH]Zoom												   */
    /*		[MPGH]Void				    							   */
    /*		[MPGH]Why06 			    							   */
    /*		Swiftdude				    							   */
    /*		mmbob   				    							   */
    /*		Gellin  				    							   */
    /*******************************************************************/
    
    #include <Windows.h>
    
    void __cdecl PushToConsole(char* szVal )
    {
    	DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
    	if( dwCShell != NULL )
    	{
    		DWORD *LTClient = ( DWORD* )( (dwCShell + 0x28BCE0) );
    		void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x1F8 );
    		_asm
    		{
    			push szVal;
    			call CONoff;
    			add esp, 4;
    		}
    	}
    }
    
    BOOL WINAPI Main (LPVOID)
    {
    	bool boxes = false;
    	bool nosky = false;
    	bool worldframe = false;
    	bool playerframe = false;
    	bool nogun = false;
    	while(1)
    	{
    		if(GetAsyncKeyState(VK_NUMPAD1)&1)
    		{
    			boxes = !boxes;
    		}
    		if(GetAsyncKeyState(VK_NUMPAD2)&1)
    		{
    			nosky = !nosky;
    		}
    		if(GetAsyncKeyState(VK_NUMPAD3)&1)
    		{
    			worldframe = !worldframe;
    		}
    		if(GetAsyncKeyState(VK_NUMPAD4)&1)
    		{
    			playerframe = !playerframe;
    		}
    		if(GetAsyncKeyState(VK_NUMPAD5)&1)
    		{
    			nogun = !nogun;
    		}
    
    		if  (boxes)
    			PushToConsole("ModelDebug_DrawBoxes 1");
    		else
    			PushToConsole("ModelDebug_DrawBoxes 0");
    
    		if  (nosky)
    			PushToConsole("DrawSky 0");
    		else
    			PushToConsole("DrawSky 1");
    
    		if  (worldframe)
    			PushToConsole("WireFrame 1");
    		else
    			PushToConsole("WireFrame 0");
    
    		if  (playerframe)
    			PushToConsole("WireFrameModels 1");
    		else
    			PushToConsole("WireFrameModels 0");
    
    		if  (nogun)
    			PushToConsole("DrawGuns 0");
    		else
    			PushToConsole("DrawGuns 1");
    
    
    		Sleep(100);
    	}
    }
    
    bool Ready(void)
    {
        if( GetModuleHandleA("CShell.dll")!= NULL)
            return true;
        return false;
    }
    
    DWORD WINAPI dwMainThread(LPVOID)
    {
    	while (!Ready())
    		Sleep(200);
    	CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Main, NULL, NULL, NULL);
    	return 0;
    }
    
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    	DisableThreadLibraryCalls(hDll);
    	if ( dwReason == DLL_PROCESS_ATTACH )
    	{
    		MessageBoxA(0, "Mpgh.net CrossFire Hack Base \n\n\nCoded By [MPGH]Blood", "Injected", 0);
    		system("start https://www.mpgh.net");
    		CreateThread(NULL, NULL, dwMainThread, NULL, NULL, NULL);
    	}
    	return TRUE;
    }
    ...just huhnfisch...

  6. #126
    [Banned]mark0108's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    UK,Manchester
    Posts
    1,106
    Reputation
    16
    Thanks
    1,039
    My Mood
    Relaxed
    NeeD A NEW BYPASS BLOOD PLEASE UPDATE

  7. #127
    infidel_'s Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    blah
    Posts
    184
    Reputation
    10
    Thanks
    138
    My Mood
    Twisted
    I compiled one in Win7 x64.
    Seems not to work in my end.
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x1F8 );
    Should I edit that highlighted offset to work in PH client?
    Last edited by infidel_; 08-09-2010 at 05:58 PM.

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

    [Banned]mark0108 (08-09-2010)

  9. #128
    -Rez's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    United States
    Posts
    101
    Reputation
    10
    Thanks
    8
    My Mood
    Relaxed
    Thanks, ill see what i can work with this.

    Quote Originally Posted by affe5 View Post
    Hey. i sell my Crossfire Accounts here is the Link for the Accounts : Account 1 : Z8Games ? Home of the Best Free MMO Games - Clans - Character Details

    Account 2 : Z8Games ? Home of the Best Free MMO Games - Clans - Character Details

    when u will this Account only add me in icq / my icq number is 607447670 / or write me a E-mail my E-mail is : Crossfire88@hotmail.de

    fdddddddddddddddddddddddddddddddddddddd

    Hey. i sell my Crossfire Accounts here is the Link for the Accounts : Account 1 : Z8Games ? Home of the Best Free MMO Games - Clans - Character Details

    Account 2 : Z8Games ? Home of the Best Free MMO Games - Clans - Character Details

    when u will a Account only add me in icq my icq number is 607447670 / or write me a email my email is / crossfire88@hotmail.de
    LOL? What is this a lounge? GTFO.

  10. #129
    infidel_'s Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    blah
    Posts
    184
    Reputation
    10
    Thanks
    138
    My Mood
    Twisted
    Someone answer me?

  11. #130
    p0rntuna's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    vovo kasi heheheheeh

  12. #131
    -Rez's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    United States
    Posts
    101
    Reputation
    10
    Thanks
    8
    My Mood
    Relaxed
    Quote Originally Posted by infidel_ View Post
    Someone answer me?
    Yes, edit it then compile.

  13. #132
    BadBlood's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    470
    Reputation
    11
    Thanks
    182
    My Mood
    Chatty
    Fail Dected/close

  14. The Following User Says Thank You to BadBlood For This Useful Post:

    mrkiller2010 (08-11-2010)

  15. #133
    UltraPGNoob's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    671
    Reputation
    15
    Thanks
    611
    My Mood
    Fine
    Hack Base Outdated.

    Close it.

    New Hack Base is here

  16. #134
    BadBlood's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    470
    Reputation
    11
    Thanks
    182
    My Mood
    Chatty
    Closed....

  17. #135
    **HACKER**'s Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Outside Your House ;-0
    Posts
    645
    Reputation
    22
    Thanks
    228
    My Mood
    Yeehaw
    Thanks Mate Love Ya

Page 9 of 9 FirstFirst ... 789

Similar Threads

  1. [Release] MPGH Public Hack Version 1
    By sidnietje in forum WarRock - International Hacks
    Replies: 45
    Last Post: 01-14-2008, 09:00 PM
  2. (Release)MPGH publick hack after update (01/10/2008)
    By aprill27 in forum WarRock - International Hacks
    Replies: 36
    Last Post: 01-13-2008, 02:16 PM
  3. (release)MPGH publick hack updated
    By aprill27 in forum WarRock - International Hacks
    Replies: 25
    Last Post: 01-10-2008, 04:51 PM
  4. [Release]MPGH Public Hack v1.0 (15 min)
    By killer2334 in forum WarRock - International Hacks
    Replies: 2
    Last Post: 09-18-2007, 09:11 AM
  5. [release] Mpgh Public Hack - Sidnietje
    By sidnietje in forum WarRock - International Hacks
    Replies: 56
    Last Post: 06-04-2007, 09:35 AM