Results 1 to 5 of 5
  1. #1
    cookie hack's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    Everywhere
    Posts
    150
    Reputation
    10
    Thanks
    11
    My Mood
    Relaxed

    Arrow Help updating hack

    I am using an edited version of bravia's base i think. This is just a simple hotkey hack. I am struggling on making it stop disconnecting me. I tried updating the ltc and I packed it with themida. I heard people say that updating the c detour will help but I can't figure out how to do it. I'll post my source. I really have nothing to loose because it doesn't work. If you can help me that would be great. Please no comments like "figure it out yourself noob" or "why are you in this section". I am am still learning. Also, when I build it there is no errors and when I get ingame the boxes and no recoil work. It just disconnects after 1 min of gameplay.

    Code:
    #include <windows.h>
    #include <shellapi.h>
    #pragma comment(lib,"shell32.lib")
    void __cdecl PushToConsole( const char* szCommand )
    {
        DWORD *Ltcliient = ( DWORD* )(0x3778BFB0 );
        void* CONoff = ( void* )*( DWORD* )( *Ltcliient + 0x208 );
     
        __asm
        {
            push szCommand;
            call CONoff;/// try ok 
            add esp, 4;
        }
    }
    bool IsGameReadyForHook()
    {
        if( GetModuleHandleA( "d3d9.dll"     ) != NULL
         && GetModuleHandleA( "ClientFX.fxd" ) != NULL
         && GetModuleHandleA( "CShell.dll"   ) != NULL )
            return true;
    
        return false;
    }
            void MemCopy(void* Dest, const void* Src, int Len)
    {
        DWORD OldProtect;
        DWORD OldProtect2;
        VirtualProtect(Dest, Len, PAGE_EXECUTE_READWRITE, &OldProtect);
        memcpy(Dest, Src, Len);
        VirtualProtect(Dest, Len, OldProtect, &OldProtect2);
        FlushInstructionCache(GetCurrentProcess(), Dest, Len);
    }
    void main()
    {
        while (!IsGameReadyForHook()){
            Sleep(20);
        }
        bool boxes = false;
    	bool norecoil = false;
    	
    	
        
        while(true){
            
                   
              
            if(GetAsyncKeyState(VK_NUMPAD1)<0){
                if(boxes){
                    PushToConsole("ModelDebug_DrawBoxes 0");
                   
                    boxes = false;
                } else {
                    
    				PushToConsole("ModelDebug_DrawBoxes 1");
                    boxes = true;          
                }
            }
    		if(GetAsyncKeyState(VK_NUMPAD2)<0){
                if(norecoil){
                   removed addies.
                    norecoil = false;
                } else {
                   //removed addies
                    norecoil = true;
    			}
    		}
            Sleep(20);
        }
    }
    BOOL APIENTRY DllMain( HMODULE hModule,
                           DWORD  ul_reason_for_call,
                           LPVOID lpReserved
                         )
    {
        switch (ul_reason_for_call)
        {
        case DLL_PROCESS_ATTACH:
            ShellExecute;
            CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)&main, NULL, 0,NULL);
            break;
        case DLL_THREAD_ATTACH:
        case DLL_THREAD_DETACH:
        case DLL_PROCESS_DETACH:
            break;
        }
        return TRUE;
    }
    Last edited by cookie hack; 07-18-2010 at 05:48 AM.


    [IMG]https://i251.photobucke*****m/albums/gg291/h0tpinkninJa/NeilPeart.jpg[/IMG]



  2. #2
    king4940's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    with your gf
    Posts
    335
    Reputation
    24
    Thanks
    187
    yeah most hacks are not working its not ur base thats wrong.



    RESPECT LIST:

    BombSway
    Marko
    Drake
    Deadline

  3. #3
    rocker340's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    in my house
    Posts
    304
    Reputation
    12
    Thanks
    76
    dont forget to pack it with upxn

    If you need a Lo/Ck/Er/Z invite, PM me! Lo/Ck/Er/Z is a promotion site to watch videos for PTZ, and redeem cool electronics for free by trading in PTZ




  4. #4
    cookie hack's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    Everywhere
    Posts
    150
    Reputation
    10
    Thanks
    11
    My Mood
    Relaxed
    The base is right. It just needs updated. And I can't figure out how to do it. I know my hacks are right too because the boxes and the no recoil work for like a minute before I get disconnected.


    [IMG]https://i251.photobucke*****m/albums/gg291/h0tpinkninJa/NeilPeart.jpg[/IMG]



  5. #5
    Relyc's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    0
    My Mood
    Inspired
    Lol. Maybe Update the L.T.Client.

    Or its your hooking method.

Similar Threads

  1. [Solved] *<I Need Help With Hacks And Xtrap>*
    By Birdy in forum CrossFire Help
    Replies: 5
    Last Post: 06-20-2012, 10:07 AM
  2. [Help Request] help with hacks
    By gabalvesilva in forum CrossFire Help
    Replies: 10
    Last Post: 05-17-2011, 03:26 PM
  3. Help With Hacks (update)
    By jaidonl11 in forum WarRock Help
    Replies: 5
    Last Post: 03-27-2011, 08:43 PM
  4. [Solved]new update hack help
    By edancanning in forum CrossFire Help
    Replies: 3
    Last Post: 02-24-2011, 10:51 AM
  5. Combat arms updated hack help
    By bangle in forum Combat Arms Hacks & Cheats
    Replies: 5
    Last Post: 02-01-2009, 02:56 PM