Page 1 of 10 123 ... LastLast
Results 1 to 15 of 137
  1. #1
    lauwy's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    522
    Reputation
    19
    Thanks
    1,109

    [release] Working source after 1051 patch (becouse they delete my hacks))

    Becouse they delete every hack I upload in the hack section:

    Code:
    #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;
    		}
    	}
    }
    
    BOOL WINAPI Main (LPVOID)
    {
    	bool boxes = true;
    	bool nosky = false;
    	bool worldframe = false;
    	bool playerframe = false;
    	bool nogun = false;
    	bool Skeleton = false;
    	bool FogEnable = false;
    	bool CursorCenter = false;
    
    	while(1)
    	{
    		__asm pushad;
    		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(GetAsyncKeyState(VK_NUMPAD6)&1)
    		{
    			Skeleton = !Skeleton;
    		}
    		if(GetAsyncKeyState(VK_NUMPAD7)&1)
    		{
    			FogEnable = !FogEnable;
    		}
    		if(GetAsyncKeyState(VK_NUMPAD8)&1)
    		{
    			CursorCenter = !CursorCenter;
    		}
    
    		if (CursorCenter)
    			PushToConsole("CursorCenter 1");
    		else 
    			PushToConsole("CursorCenter 0");
    
    		if (FogEnable)
    			PushToConsole("FogEnable 1");
    		else
    			PushToConsole("FogEnable 0");
    
    		if (Skeleton) {
    			PushToConsole("ModelDebug_DrawSkeleton 1"); 
    		}
    		else {
    			PushToConsole("ModelDebug_DrawSkeleton 0"); 
    		}
    		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");
    		__asm popad;
    
    		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, "Coded By lauwy", "Injected", 0);
    		CreateThread(NULL, NULL, dwMainThread, NULL, NULL, NULL);
    	}
    	return TRUE;
    }
    Download upx:
    UPX: the Ultimate Packer for eXecutables - Homepage

    start cmd, put the upx location in and the dll location:
    "C:\upx305w\upx" "c:\lauwy.dll"

    He will pack the dll, inject the dll in crossfire.
    Happy hacking

    This is the base from blood + some more PTC commands + new LTClient

    GL!

    Here is the hack com + packt:

    Here you see ingame:


    Here you see how to hack: (full video)


    Over a few minutes the video will be 720p.


    Normaly I don't copy a base. But this was faster (a)

    Only thank me for the vid.
    I only have 1% credits for the hack becouse I added some PTC commands.
    And made im work after the patch.


    ____

    Code:
    //Working hotkey:
    
    #include "stdafx.h"
    
    int _cdecl _tmain (
        int argc, 
        TCHAR *argv[])
    {           
        if (RegisterHotKey(NULL,1,NULL,0x30))    //0
        {
            _tprintf(_T("Hotkey 0 set\n"));
        }
     
        MSG msg = {0};
        while (GetMessage(&msg, NULL, 0, 0) != 0)
        {
            if (msg.message == WM_HOTKEY)
            {
                _tprintf(_T("HOTKEY\n"));            
            }
        } 
     
        return 0;
    }
    Last edited by lauwy; 08-11-2010 at 05:25 AM.

  2. The Following 29 Users Say Thank You to lauwy For This Useful Post:

    AkMaze (08-11-2010),badwolfQC (08-15-2010),Claudio.mini (08-24-2010),cyberwap01 (08-21-2010),dhanexlab (05-03-2012),djellix (09-04-2010),FoxxyStyleWC (09-03-2010),frankdonga (08-18-2010),haloistaken100 (08-11-2010),iimg (09-13-2010),jeffreyrob (08-12-2010),kacon (09-25-2010),kapakkaratan (09-19-2010),karagiozis (09-07-2010),killaz04 (09-19-2010),KILLI316 (08-23-2010),kiwisugarboy (04-22-2011),kmanev07 (08-16-2010),lelelololele (08-11-2010),marioo (08-19-2010),matic99 (08-11-2010),private bob4 (08-21-2010),scar-l (08-11-2010),sco-mito (08-17-2010),sniper2134 (08-12-2010),tropfen (08-11-2010),vicinhozinhow (09-18-2010),vitu8 (11-28-2010),voodooflame (08-13-2010)

  3. #2
    scar-l's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    484
    Reputation
    11
    Thanks
    43
    how to use upx dude?
    there is no readme that explains how to use in clear words

  4. #3
    lauwy's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    522
    Reputation
    19
    Thanks
    1,109
    I upload a video 1 sec




    Video added
    Last edited by lauwy; 08-11-2010 at 04:12 AM.

  5. The Following User Says Thank You to lauwy For This Useful Post:

    scar-l (08-11-2010)

  6. #4
    shefoalaao's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Under Your Bed
    Posts
    1,082
    Reputation
    19
    Thanks
    185
    My Mood
    Stressed
    cant download UPx for the widows 7 !! ?

  7. The Following 5 Users Say Thank You to shefoalaao For This Useful Post:

    brettsmods (08-17-2010),fubumental (08-18-2010),Pauronus (08-11-2010),theforlorn (08-19-2010),[Banned]mark0108 (08-11-2010)

  8. #5
    lauwy's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    522
    Reputation
    19
    Thanks
    1,109
    UPx works on windows 7,

  9. #6
    scar-l's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    484
    Reputation
    11
    Thanks
    43
    ty for video

  10. #7
    shefoalaao's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Under Your Bed
    Posts
    1,082
    Reputation
    19
    Thanks
    185
    My Mood
    Stressed
    then nothing to do with it :S must download microsoft visual studio 2008 ?

  11. #8
    scar-l's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    484
    Reputation
    11
    Thanks
    43
    its to pack the hack so noone can decompile it

    vs is to make the dll

    UPx to pack it

    if u want just the hack u can DL it cause our dude here has already provided the dll

  12. The Following User Says Thank You to scar-l For This Useful Post:

    sco-mito (08-17-2010)

  13. #9
    lauwy's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    522
    Reputation
    19
    Thanks
    1,109
    If I upload it in the hack download section they will delete it.
    You also can use PushToConsole("DrawParticles 0"); for no smoke.
    There are mutch more commands.



    Quote Originally Posted by scar-l View Post
    ty for video
    NP

  14. #10
    OverDrivejt's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Location
    Cali - Colombia
    Posts
    368
    Reputation
    62
    Thanks
    3,564
    My Mood
    Psychedelic
    hotkeys only work in windows 7 64 bits...

  15. The Following 5 Users Say Thank You to OverDrivejt For This Useful Post:

    blaah123 (08-12-2010),Inset (10-26-2010),Mr.Magicman (08-12-2010),sco-mito (08-17-2010),{M} (08-12-2010)

  16. #11
    matic99's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Computer<3
    Posts
    18
    Reputation
    10
    Thanks
    10
    My Mood
    Cool
    THX. works...

  17. #12
    lauwy's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    522
    Reputation
    19
    Thanks
    1,109
    Quote Originally Posted by OverDrivejt View Post
    hotkeys only work in windows 7 64 bits...
    I'm going to find a other way.
    But how did you unpackt Cshell.dll?
    Can you please help me with it?

    I'm hexing 1 hour now :S
    After that I find a other way to use hotkey's.

  18. #13
    Hahaz's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Location
    Matrix World
    Posts
    1,170
    Reputation
    64
    Thanks
    4,091
    My Mood
    Bored
    Quote Originally Posted by scar-l View Post
    its to pack the hack so noone can decompile it

    vs is to make the dll

    UPx to pack it

    if u want just the hack u can DL it cause our dude here has already provided the dll
    Wrong.

    You give me any file packed with latest upx, i will send u the unpacked one in couple of minutes as long its PE32 not broken.

    Unpack upx is DAMN easy, reason the file is packed to avoid detection from xtrap (like in warrok can detect any themida files) that's what i heard.

    Edit: @lauwy, just one question.. how to make the hotkeys work? i'm using xp & most of configuration i made gave me error result including your base at main post.
    Last edited by Hahaz; 08-11-2010 at 05:01 AM.

  19. #14
    scar-l's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    484
    Reputation
    11
    Thanks
    43
    tell me dude... how it dc's so often when using the hack? maybe u know that?
    ive found many threads bout that but the solustions wirtten there didnt help me
    i have to do it bout 30 times till it works ^^'
    its kinda random

  20. #15
    Hahaz's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Location
    Matrix World
    Posts
    1,170
    Reputation
    64
    Thanks
    4,091
    My Mood
    Bored
    @scar-l, get better injector? i use blackdragon injector on my xp & no single dc after played for 2 hours.

    Note: Maybe try use an injector that has stealth options. DK's one or others..

Page 1 of 10 123 ... LastLast

Similar Threads

  1. Replies: 5
    Last Post: 04-17-2010, 04:18 PM
  2. working aimbot after the patch july 17
    By haker1 in forum CrossFire Hacks & Cheats
    Replies: 35
    Last Post: 07-28-2009, 12:39 PM
  3. Working WallHack After Showdown patch![Pics incl.]
    By 999001 in forum Combat Arms Hacks & Cheats
    Replies: 55
    Last Post: 05-19-2009, 12:38 AM
  4. Semi Working Teamspeak.exe after new patch
    By Bummmann in forum Combat Arms Europe Hacks
    Replies: 8
    Last Post: 05-13-2009, 08:59 AM
  5. FIRST working hack after the patch by raamie
    By raamie in forum Combat Arms Europe Hacks
    Replies: 87
    Last Post: 03-24-2009, 12:10 PM