Page 2 of 2 FirstFirst 12
Results 16 to 21 of 21
  1. #16
    GoldWhite's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    136
    Reputation
    10
    Thanks
    46
    Quote Originally Posted by -Bl00d- View Post


    wel yeah it was on the spot didnt think of that

    where i put the red text instead of putting the address
    put
    MOV EAX, dwConsoleUnwrapped
    maybe MOV EAX, address?

  2. #17
    -Bl00d-'s Avatar
    Join Date
    Sep 2011
    Gender
    female
    Location
    Imma girl what about it?
    Posts
    481
    Reputation
    10
    Thanks
    53
    My Mood
    Twisted
    Quote Originally Posted by GoldWhite View Post
    maybe MOV EAX, address?
    no like chaozz said it has to be a dword to move it
    you cant move a c++ pointer to a register without the dword

    so either at the top, or with his other defines he would set the dword for the Console to the address then move the dword into
    the register.
    Successful buys: 20
    Successful sells: 4
    Successful trades: 9
    Scammed: 4

     
    https://www.mpgh.net/forum/490-vouches/560562-vouches.html

    ^^^^^^^^^^^
    vouche for me?

  3. #18
    >Tiger<'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    -
    Posts
    8
    Reputation
    10
    Thanks
    0
    My Mood
    Sad
    Maybe this helps you:
    Code:
    void RunConsoleCommand( const char* Command) 
    {
    	DWORD* Addr = ( DWORD* ) 0x0048B6B0;
    	__asm
    	{
    		Pushad;
    		Push Command
    		call Addr
    		add esp, 0x4
    		Popad;
    	}
    }
    0x0048B6B0 => Correct adress for CAEU

  4. #19
    -Bl00d-'s Avatar
    Join Date
    Sep 2011
    Gender
    female
    Location
    Imma girl what about it?
    Posts
    481
    Reputation
    10
    Thanks
    53
    My Mood
    Twisted
    Quote Originally Posted by >Tiger< View Post
    Maybe this helps you:
    Code:
    void RunConsoleCommand( const char* Command) 
    {
        DWORD* Addr = ( DWORD* ) 0x0048B6B0;
        __asm
        {
            Pushad;
            Push Command
            call Addr
            add esp, 0x4
            Popad;
        }
    }
    0x0048B6B0 => Correct adress for CAEU

    ths is the exact thing i just posted all you did was change a few strings
    Successful buys: 20
    Successful sells: 4
    Successful trades: 9
    Scammed: 4

     
    https://www.mpgh.net/forum/490-vouches/560562-vouches.html

    ^^^^^^^^^^^
    vouche for me?

  5. #20
    >Tiger<'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    -
    Posts
    8
    Reputation
    10
    Thanks
    0
    My Mood
    Sad
    Quote Originally Posted by -Bl00d- View Post



    ths is the exact thing i just posted all you did was change a few strings
    not really

  6. #21
    -Bl00d-'s Avatar
    Join Date
    Sep 2011
    Gender
    female
    Location
    Imma girl what about it?
    Posts
    481
    Reputation
    10
    Thanks
    53
    My Mood
    Twisted
    Quote Originally Posted by >Tiger< View Post
    Maybe this helps you:
    Code:
    void RunConsoleCommand( const char* Command) 
    {
        DWORD* Addr = ( DWORD* ) 0x0048B6B0;
        __asm
        {
            Pushad;
            Push Command
            call Addr
            add esp, 0x4
            Popad;
        }
    }
    not really
    yes really

    void __cdecl RunConsoleCommand( const char* cCommand )
    {
    void* address = ( void* )0x00485D30; //Unwrapped Console Address
    __asm
    {
    Push cCommand
    MOV EAX, DWORD
    call
    EAX
    add esp, 0x4
    }
    }


    all you did was add push instead of mov
    and added pop at the end to restore the original state
    but i guess it isnt the same then
    Last edited by -Bl00d-; 01-10-2013 at 12:18 PM.
    Successful buys: 20
    Successful sells: 4
    Successful trades: 9
    Scammed: 4

     
    https://www.mpgh.net/forum/490-vouches/560562-vouches.html

    ^^^^^^^^^^^
    vouche for me?

Page 2 of 2 FirstFirst 12

Similar Threads

  1. PTC comands working?
    By GoldWhite in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 16
    Last Post: 11-22-2012, 03:40 AM
  2. D3D's don't work anymore!!!
    By austinlau1 in forum Combat Arms Hacks & Cheats
    Replies: 14
    Last Post: 08-23-2008, 12:36 AM
  3. Why all hacks don't work for me
    By frits1 in forum WarRock - International Hacks
    Replies: 2
    Last Post: 07-19-2008, 12:31 PM
  4. HACKS DON'T WORK!! after 23-05-07
    By jaspertjuhh in forum WarRock - International Hacks
    Replies: 19
    Last Post: 05-25-2007, 09:31 AM
  5. GPS and InstaSpawn Don't Work On CQC
    By sirbannedalot in forum WarRock - International Hacks
    Replies: 7
    Last Post: 04-13-2007, 06:32 AM