Results 1 to 12 of 12
  1. #1
    Phot0n's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    North America
    Posts
    3
    Reputation
    10
    Thanks
    16
    My Mood
    Happy

    No Recoil / No Reload

    The addies for No Recoil and No Reload on the updated (8/25) list don't work for me. So I ran Acid's address logger and got the following:

    Code:
    #define RECOIL1 0x3745BC20
    #define RECOIL2 0x372315E9
    #define RECOIL3 0x3745BC34
    #define RECOIL4 0x3745BC37
    #define RECOIL5 0x3745BC40
    #define RELOAD 0x374A7894
    The code to NOP the No recoil addresses then looks like this:

    Code:
    if (norecoil) {
    	Memoria((LPVOID) (RECOIL1), "\x90\x90\x90", 3);
    	Memoria((LPVOID) (RECOIL2), "\x90\x90\x90", 3);
    	Memoria((LPVOID) (RECOIL3), "\x90\x90\x90", 3);
    	Memoria((LPVOID) (RECOIL4), "\x90\x90\x90", 3);
    	Memoria((LPVOID) (RECOIL5), "\x90\x90\x90", 3);
    } else {
            // I'm lazy, do this later...
    }
    And for no-reload:

    Code:
    if (noreload) {
    	Memoria((LPVOID) (RELOAD), "\x90\x90\x90\x90\x90\x90", 6);
    } else {
    	Memoria((LPVOID) (RELOAD), "\x0F\x84\xB1\x01\x00\x00", 6);
    }
    I can verify that this has been working for a couple weeks now. And no, I still haven't bothered to get the disable-no-recoil coded. Ideally, you should memcpy the values from memory at injection/hook into a temporary location so that you don't have to bother with the actual hex codes.

    Anyways... Enjoy.

    --Phot0n

  2. The Following 8 Users Say Thank You to Phot0n For This Useful Post:

    -ExileD- (09-17-2010),39killers (10-23-2010),azerty54 (09-24-2010),dontcrymore15 (09-27-2010),Ekuang (09-29-2010),husky360 (09-18-2010),MerTYS (09-28-2010),n6878 (09-29-2010)

  3. #2
    -ExileD-'s Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    https://mpgh.net Posts: 25,987
    Posts
    552
    Reputation
    32
    Thanks
    795
    My Mood
    Lurking
    Thanks Ph0ton, i already knew this, but a great contribution for your first post i guess.

    +Thanks.

  4. The Following User Says Thank You to -ExileD- For This Useful Post:

    JIAHUI (09-18-2010)

  5. #3
    joered's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Netherlands
    Posts
    345
    Reputation
    17
    Thanks
    332
    Thank you for sharing.

  6. The Following User Says Thank You to joered For This Useful Post:

    n6878 (09-29-2010)

  7. #4
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    I added everytthing for you
    Code:
    		if(norecoil)
    		{
    			Memoria((LPVOID)(RECOIL1), "\x90\x90\x90", 3);
    			Memoria((LPVOID)(RECOIL2), "\x90\x90\x90", 3);
    			Memoria((LPVOID)(RECOIL3), "\x90\x90\x90", 3);
    			Memoria((LPVOID)(RECOIL4), "\x90\x90\x90", 3);
    			Memoria((LPVOID)(RECOIL5), "\x90\x90\x90", 3);
    		}else{
    			Memoria((LPVOID)(RECOIL1), "\xD8\x66\x54", 3);
    			Memoria((LPVOID)(RECOIL2), "\xD9\x46\x54", 3);
    			Memoria((LPVOID)(RECOIL3), "\xD9\x5E\x54", 3);
    			Memoria((LPVOID)(RECOIL4), "\xD9\x46\x48", 3);
    			Memoria((LPVOID)(RECOIL5), "\xD9\x5E\x48", 3);
    		}
    No I do not make game hacks anymore, please stop asking.

  8. The Following 3 Users Say Thank You to flameswor10 For This Useful Post:

    NOOB (10-02-2010),Phot0n (09-18-2010),Timboy67678 (09-27-2010)

  9. #5
    Phot0n's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    North America
    Posts
    3
    Reputation
    10
    Thanks
    16
    My Mood
    Happy
    Quote Originally Posted by flameswor10 View Post
    I added everytthing for you
    Code:
    		if(norecoil)
    		{
    			Memoria((LPVOID)(RECOIL1), "\x90\x90\x90", 3);
    			Memoria((LPVOID)(RECOIL2), "\x90\x90\x90", 3);
    			Memoria((LPVOID)(RECOIL3), "\x90\x90\x90", 3);
    			Memoria((LPVOID)(RECOIL4), "\x90\x90\x90", 3);
    			Memoria((LPVOID)(RECOIL5), "\x90\x90\x90", 3);
    		}else{
    			Memoria((LPVOID)(RECOIL1), "\xD8\x66\x54", 3);
    			Memoria((LPVOID)(RECOIL2), "\xD9\x46\x54", 3);
    			Memoria((LPVOID)(RECOIL3), "\xD9\x5E\x54", 3);
    			Memoria((LPVOID)(RECOIL4), "\xD9\x46\x48", 3);
    			Memoria((LPVOID)(RECOIL5), "\xD9\x5E\x48", 3);
    		}
    Thank you, kind sir. Control-C'd.... and... Control-V'd!

  10. #6
    supercarz1991's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,285
    Reputation
    435
    Thanks
    3,715
    My Mood
    Doh
    weird, i'm running the old ones from crash's post and they work fine, i just logged out

    commando: You're probably the best non-coder coder I know LOL


  11. #7
    dwfrmjcb's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive
    dude can you send me thoes hacks

  12. #8
    -ExileD-'s Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    https://mpgh.net Posts: 25,987
    Posts
    552
    Reputation
    32
    Thanks
    795
    My Mood
    Lurking
    Quote Originally Posted by dwfrmjcb View Post
    dude can you send me thoes hacks
    Dont bump old posts please.

  13. The Following User Says Thank You to -ExileD- For This Useful Post:

    Rellsterat (10-02-2010)

  14. #9
    scimmyboy's Avatar
    Join Date
    Jan 2008
    Gender
    male
    Location
    https://mpgh.net MPGHCash: $442,596,199
    Posts
    5,645
    Reputation
    26
    Thanks
    896
    My Mood
    Happy
    its only one hour....

  15. #10
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    It's 1 week and 1 hour
    No I do not make game hacks anymore, please stop asking.

  16. #11
    Pandemic's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Seattle
    Posts
    3,588
    Reputation
    143
    Thanks
    275
    My Mood
    Angelic
    nice code man, ill put it to good use

  17. #12
    Casey95's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Your BED ;)
    Posts
    656
    Reputation
    4
    Thanks
    457
    My Mood
    Amused
    now for his test to get new addies. i still cant do it

Similar Threads

  1. [Release] LTClient / No Recoil / No Reloaded / Glass Walls Endereços Atualizados Combat Arms BR
    By Alessandro10 in forum Combat Arms Brazil Hacks
    Replies: 53
    Last Post: 11-22-2010, 12:19 PM
  2. [Release] Fire God Team v1.4[No Recoil, Instant Reload]
    By topblast in forum Combat Arms Hacks & Cheats
    Replies: 300
    Last Post: 06-11-2010, 01:54 PM
  3. [Release] No Recoil+No Reload+Chams+Esp
    By gbatemper in forum Combat Arms Hacks & Cheats
    Replies: 8
    Last Post: 01-13-2010, 06:41 PM
  4. INFINITE AMMO, NO RECOIL, NO RELOAD, ETC..
    By JustTheWind in forum Battlefield Heroes Hacks
    Replies: 2
    Last Post: 07-20-2009, 05:13 PM
  5. KVizzle's Hackz - No Recoil/Spread/Reload/Fog, Aimbot, and Chamz
    By KVizzle in forum Combat Arms Hacks & Cheats
    Replies: 368
    Last Post: 09-22-2008, 10:14 AM

Tags for this Thread