Results 1 to 15 of 15
  1. #1
    mocano1415's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Posts
    304
    Reputation
    10
    Thanks
    11
    My Mood
    Bored

    chams combat arms newestp atch [HOT] [MUST SEE]

    /me
    /fdp

    Code:
    void GetShaderInformation( DWORD RenderModel )
    {
    	char *pShader = **( char *** )( RenderModel + 0xB8 );
    
    	if( strstr( pShader, "alpha_player" ) | (pShader, "bravo_player" )
    	{
    		ModelRec	= true;
    	}
    }
    
    
    void ( *orig_DrawXModelSkinnedCached )( );
    __declspec( naked ) void R_DrawXModelSkinnedCached( )
    {
    	DWORD	RenderModel;
    	_asm
    	{
    		push eax
    		mov eax, [ esp + 0xF ]
    		mov [ RenderModel ], eax
    		pop eax
    		pushad
    	}
    
    	GetShaderInformation( RenderModel );
    
    	_asm
    	{
    		popad
    		jmp [ orig_DrawXModelSkinnedCached ]
    	}
    }

  2. #2
    demtrios's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    MPGH.Net
    Posts
    870
    Reputation
    10
    Thanks
    1,056
    My Mood
    Amused
    it works there?


    Cock CS since 26•03•2013

  3. #3
    CoderBlack09's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Location
    Visual C++ 2008 Express Editions
    Posts
    769
    Reputation
    10
    Thanks
    62
    My Mood
    Aggressive
    where are the credits?
    Once we are in brs.

  4. #4
    Saltine's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    493
    Reputation
    104
    Thanks
    629
    At what memory location do you hook DrawXModelSkinnedCached?

    Oh no! Vortex is gay!

  5. #5
    rrspamrr's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    30
    Reputation
    10
    Thanks
    0
    My Mood
    Drunk
    How do you use this in game?

  6. #6
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Trolololololol

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  7. #7
    Flengo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /admincp/banning.php
    Posts
    20,591
    Reputation
    5180
    Thanks
    14,177
    My Mood
    Inspired
    This is a little pointless because you're not telling us exactly where in memory to hook.

    But that's something to figure out I guess.
    I Read All Of My PM's & VM's
    If you need help with anything, just let me know.

     


     
    VM | PM | IM
    Staff Administrator Since 10.13.2019
    Publicist Since 04.04.2015
    Middleman Since 04.14.2014
    Global Moderator Since 08.01.2013
    Premium Since 05.29.2013

    Minion+ Since 04.18.2013

    Combat Arms Minion Since 12.26.2012
    Contributor Since 11.16.2012
    Member Since 05.11.2010


  8. #8
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by comando2056 View Post
    This is a little pointless because you're not telling us exactly where in memory to hook.

    But that's something to figure out I guess.
    And half the code won't compile + there's no actual "hack" in the supplied code lol. Essentially all this hook does is set some global variable to "true" if the current model is a player. (Using a bitwise OR on char*s, lol)

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  9. #9
    Flengo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /admincp/banning.php
    Posts
    20,591
    Reputation
    5180
    Thanks
    14,177
    My Mood
    Inspired
    Quote Originally Posted by Jason View Post


    And half the code won't compile + there's no actual "hack" in the supplied code lol. Essentially all this hook does is set some global variable to "true" if the current model is a player. (Using a bitwise OR on char*s, lol)
    That should be really handy. I can make a FUD Working VIP Hack now. It'll have beast chams that work, because of this code.
    I Read All Of My PM's & VM's
    If you need help with anything, just let me know.

     


     
    VM | PM | IM
    Staff Administrator Since 10.13.2019
    Publicist Since 04.04.2015
    Middleman Since 04.14.2014
    Global Moderator Since 08.01.2013
    Premium Since 05.29.2013

    Minion+ Since 04.18.2013

    Combat Arms Minion Since 12.26.2012
    Contributor Since 11.16.2012
    Member Since 05.11.2010


  10. #10
    Departure's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    805
    Reputation
    125
    Thanks
    1,794
    My Mood
    Doh
    I am assuming "DrawXModelSkinnedCached" is d3d9 function and the place to hook. I also assume this function is not scanned by nexon, exactly what position in the vtable can this function be found? and does this function get called on every frame?
    Last edited by .REZ; 07-09-2012 at 12:40 PM. Reason: advertising. =|

  11. #11
    mocano1415's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Posts
    304
    Reputation
    10
    Thanks
    11
    My Mood
    Bored
    Quote Originally Posted by Departure View Post
    I am assuming "DrawXModelSkinnedCached" is d3d9 function and the place to hook. I also assume this function is not scanned by nexon, exactly what position in the vtable can this function be found? and does this function get called on every frame?

    p.s
    https://www.u n k n o w n c h e a t s...nedcached.html <-- from 2009
    i didnt steal it off of UnkNown Cheats its the same thing

    yeah it isn't scanned by Neexon and u do the shit urself /me

  12. #12
    Flengo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /admincp/banning.php
    Posts
    20,591
    Reputation
    5180
    Thanks
    14,177
    My Mood
    Inspired
    Quote Originally Posted by mocano1415 View Post
    i didnt steal it off of UnkNown Cheats its the same thing

    yeah it isn't scanned by Neexon and u do the shit urself /me
    Providing some more information would help
    I Read All Of My PM's & VM's
    If you need help with anything, just let me know.

     


     
    VM | PM | IM
    Staff Administrator Since 10.13.2019
    Publicist Since 04.04.2015
    Middleman Since 04.14.2014
    Global Moderator Since 08.01.2013
    Premium Since 05.29.2013

    Minion+ Since 04.18.2013

    Combat Arms Minion Since 12.26.2012
    Contributor Since 11.16.2012
    Member Since 05.11.2010


  13. #13
    Xlilzoosk8rX's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    the-ville, PA
    Posts
    358
    Reputation
    24
    Thanks
    53
    Quote Originally Posted by comando2056 View Post
    This is a little pointless because you're not telling us exactly where in memory to hook.

    But that's something to figure out I guess.
    exactly lol, back in the day MPGH users released full C+P working sources and totally destroyed CA for the longest time

  14. #14
    Ch40zz-C0d3r's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    831
    Reputation
    44
    Thanks
    401
    My Mood
    Twisted
    Credits to sinner!

    Progress with my game - "Disbanded"
    • Fixed FPS lag on spawning entities due to the ent_preload buffer!
    • Edit the AI code to get some better pathfinding
    • Fixed the view bug within the sniper scope view. The mirror entity is invisible now!
    • Added a new silencer for ALL weapons. Also fixed the rotation bugs
    • Added a ton of new weapons and the choice to choose a silencer for every weapon
    • Created a simple AntiCheat, noobs will cry like hell xD
    • The name will be Disbanded, the alpha starts on the 18th august 2014



    Some new physics fun (Serversided, works on every client)



    My new AI
    https://www.youtube.com/watch?v=EMSB1GbBVl8

    And for sure my 8 months old gameplay with 2 friends
    https://www.youtube.com/watch?v=Na2kUdu4d_k

  15. #15
    Flengo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /admincp/banning.php
    Posts
    20,591
    Reputation
    5180
    Thanks
    14,177
    My Mood
    Inspired
    Quote Originally Posted by Ch40zz-C0d3r View Post
    Credits to sinner!
    Want to provide more of the information for us then? If you have it, I'm assuming you do.
    I Read All Of My PM's & VM's
    If you need help with anything, just let me know.

     


     
    VM | PM | IM
    Staff Administrator Since 10.13.2019
    Publicist Since 04.04.2015
    Middleman Since 04.14.2014
    Global Moderator Since 08.01.2013
    Premium Since 05.29.2013

    Minion+ Since 04.18.2013

    Combat Arms Minion Since 12.26.2012
    Contributor Since 11.16.2012
    Member Since 05.11.2010


Similar Threads

  1. [Selling] 3 Amazing Combat Arms Europe Accounts! HoT!
    By aviariely in forum Combat Arms Europe Selling / Trading / Buying
    Replies: 25
    Last Post: 01-12-2012, 09:44 AM
  2. [Release] Glitchs in combat arms Na/Eu ~HOT!!!!~
    By niv1997niv in forum Combat Arms Glitches
    Replies: 14
    Last Post: 12-09-2011, 10:46 AM
  3. [Selling] 3 Amazing Combat Arms Europe Accounts! HoT!
    By aviariely in forum Selling Accounts/Keys/Items
    Replies: 0
    Last Post: 11-27-2011, 05:52 AM
  4. Semi chams..{Not the white people shit..} Must see!!
    By headsup in forum Combat Arms Discussions
    Replies: 33
    Last Post: 11-23-2009, 01:00 AM
  5. Can you play combat arms with a touchpad? MUST VIEW!!
    By death9191 in forum Combat Arms Hacks & Cheats
    Replies: 1
    Last Post: 06-25-2009, 05:32 AM