Results 1 to 8 of 8
  1. #1
    [NEWACCOUNT]Yano's Avatar
    Join Date
    Dec 2014
    Gender
    male
    Location
    CL_WritePacket();
    Posts
    305
    Reputation
    13
    Thanks
    5,011
    My Mood
    Relaxed

    Shoot function for DLLs :-)

    Hey!

    Maybe this helps you for Autoshoot or so C:

    Code:
    void Shoot()
    {
    
    	char *On = "+attack";
    	char *Off = "-attack";
    
    	__asm
    		{
    			push	On
    			push	0
    			push	0
    			mov	esi, 0x004F9AB0
    			call	esi
    			add	esp, 0x0C
    		}
    
    		Sleep(5);
    
    		__asm
    		{
    			push	Off
    			push	0
    			push	0
    			mov	esi, 0x004F9AB0
    			call	esi
    			add	esp, 0x0C
    		}
    
    }
    Code:
    __asm mov [RecoilVec], 0

  2. The Following User Says Thank You to [NEWACCOUNT]Yano For This Useful Post:

    akim14 (09-08-2015)

  3. #2
    Nameless2b's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    Where do you put it the source code ?

  4. #3
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Quote Originally Posted by Nameless2b View Post
    Where do you put it the source code ?
    create a base
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  5. #4
    Nameless2b's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    But I do not know how to do, and where to put it. I can do it and give me a download link please ?

  6. #5
    殺す必要がある唯一のものは殺されるために準備され人 々である。
    Premium Member
    Hitokiri~'s Avatar
    Join Date
    Oct 2012
    Gender
    female
    Location
    Cancer.
    Posts
    1,201
    Reputation
    24
    Thanks
    937
    My Mood
    Bitchy
    Why are you using assembly for such a simple task? ( Do you wanna appear 1337? )

    Code:
    inline void Toggle( bool fire = false ){
        ( ( void ( __cdecl* )( int, int, char* ) )0x4F9AB0 )( 0, 0, fire ? "+attack" : "-attack" );
    }

  7. #6
    Nameless2b's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    I do not know at all where to enter this code for Autoshot cod4, can you guide me?

  8. #7
    RiptideDead's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Location
    Germany
    Posts
    19
    Reputation
    10
    Thanks
    0
    Nameless it is not a full cheat it is a code you can implement in a hack, search for a full hack if you want one

  9. #8
    sikerman's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by Hitokiri~ View Post
    Why are you using assembly for such a simple task? ( Do you wanna appear 1337? )

    Code:
    inline void Toggle( bool fire = false ){
        ( ( void ( __cdecl* )( int, int, char* ) )0x4F9AB0 )( 0, 0, fire ? "+attack" : "-attack" );
    }
    Also possible, im not that experienced in that, more with inline assembler etc.
    (this my new account tho, forgot my email)

Similar Threads

  1. Replies: 121
    Last Post: 04-20-2012, 10:17 PM
  2. Hook Function for DIP?
    By ipwnuuaal5 in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 12
    Last Post: 08-06-2010, 03:52 AM
  3. Looking for .DLL wallhack for 1.0.184
    By kill_joy in forum Call of Duty Modern Warfare 2 Help
    Replies: 8
    Last Post: 02-20-2010, 06:36 PM
  4. [Tut] Some Functions for D3D
    By Offbeat Ninja in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 16
    Last Post: 12-29-2009, 11:59 AM
  5. Module For Dll Injection
    By wtfiwantthatname in forum Visual Basic Programming
    Replies: 7
    Last Post: 11-03-2009, 10:50 PM