Page 1 of 3 123 LastLast
Results 1 to 15 of 37
  1. #1
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky

    [OllyDBG]No recoil

    WARNING: TUT IS FROM AN OLDER VERSION! NEW ADDIES ARE AT THE BOTTOM OF THE PAGE!.

    -===-
    First thing we do is load up IW4MP.exe in ollydbg

    Lets get started
    Right click -> Search for -> all referenced text strings.


    Now right click -> search for text and enter "FireWeapon".
    Make sure to uncheck case sensitive and check Entire scope.


    Now you should end up here:


    Follow it by pressing enter or double clicking on it
    Now scroll down till you see this:


    The highlighted call is the recoil function.
    either NOP out that call for no recoil.

    optional:
    You can also follow the call by hitting enter which takes you here:


    overwrite the highlighted part with:
    ---
    mov eax, 0
    retn
    ---
    which is '0xB8, 0x00, 0x00, 0x00, 0x00, 0xC3'

    so write '0xB8, 0x00, 0x00, 0x00, 0x00, 0xC3' to 0x0043B130
    or write '0x90, 0x90, 0x90, 0x90, 0x90' to 0x0045F9A7

    -===-

    Updated Addies:
    1.1.195:
    write '0xB8, 0x00, 0x00, 0x00, 0x00, 0xC3' to 0x004F76C0
    or write '0x90, 0x90, 0x90, 0x90, 0x90' to 0x004DDF77

    1.3.37:
    write '0xB8, 0x00, 0x00, 0x00, 0x00, 0xC3' to 0x00417B40
    or write '0x90, 0x90, 0x90, 0x90, 0x90' to 0x004730E7
    Ah we-a blaze the fyah, make it bun dem!

  2. The Following 10 Users Say Thank You to Hell_Demon For This Useful Post:

    B4M (06-13-2010),cgallagher21 (08-05-2010),House (06-29-2010),jabbathehutt (06-17-2010),Kingkiller272 (10-02-2010),Melodia (06-13-2010),rodolfgonzales4 (11-21-2010),SkyAssasin (06-22-2010),xbeatsszzx (09-26-2010),zanny1 (07-07-2010)

  3. #2
    Melodia's Avatar
    Join Date
    Dec 2009
    Gender
    female
    Posts
    2,608
    Reputation
    276
    Thanks
    1,662
    My Mood
    Dead
    Ohh, Your Good'Old Tutorial =D

    Thanks for your contribution =).

    ( Psst : This is the Method I use in my Trainer , This Plus NoShlellShock )
    Love You All~

  4. #3
    Demented420's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    PA
    Posts
    242
    Reputation
    14
    Thanks
    71
    in olly i got this message:unable to read memory of debugged process, and then some numbers....thats when i do the search for thing.

    wtf is that shit?

    CAN ANYONE HELP ME?
    Last edited by Demented420; 06-16-2010 at 02:10 AM.

  5. #4
    Skyline.'s Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    10,160
    Reputation
    416
    Thanks
    1,614
    thanks dude, this helps me learn alot..


  6. #5
    FTWhellyea's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    can i get banned for doing this? what if in the process, everything gets messed up?

  7. #6
    House's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    2,990
    Reputation
    223
    Thanks
    9,296
    My Mood
    Cynical
    Quote Originally Posted by FTWhellyea View Post
    can i get banned for doing this? what if in the process, everything gets messed up?
    just reading memory from the process cant get u banned, but changing it can

    also thx goes to Daemon (thanked)

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

    marcusalier (08-15-2010),passy (08-19-2010)

  9. #7
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,662
    My Mood
    Breezy
    Quote Originally Posted by Demented420 View Post
    in olly i got this message:unable to read memory of debugged process, and then some numbers....thats when i do the search for thing.

    wtf is that shit?

    CAN ANYONE HELP ME?
    Maybe running OllyDebug as an administator might work? (Right-click>Run as administrator)

  10. #8
    OwnageMoreDE's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Australia
    Posts
    102
    Reputation
    10
    Thanks
    3
    hey bro can u make a vid or something im noob at this and im guessing some other people are too so it would let us understand alot more if u made a video ty

  11. #9
    Synns's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    5,174
    Reputation
    170
    Thanks
    2,557
    My Mood
    Bitchy
    Quote Originally Posted by OwnageMoreDE View Post
    hey bro can u make a vid or something im noob at this and im guessing some other people are too so it would let us understand alot more if u made a video ty
    Dont post outside links, upload to mpgh - Arch OllyDBG and open iw4mp.exe with it then follow the tutorial.. It's uber ez.
    Last edited by Archangel; 07-02-2010 at 11:08 PM.

  12. #10
    OwnageMoreDE's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Australia
    Posts
    102
    Reputation
    10
    Thanks
    3
    Quote Originally Posted by Tyrannus View Post
    Dont post outside links, upload to mpgh - Arch OllyDBG and open iw4mp.exe with it then follow the tutorial.. It's uber ez.
    dude i have the title choob for a reason?

    i just dont get the part which is this one

    overwrite the highlighted part with:
    ---
    mov eax, 0
    retn
    ---
    which is '0xB8, 0x00, 0x00, 0x00, 0x00, 0xC3'

    so write '0xB8, 0x00, 0x00, 0x00, 0x00, 0xC3' to 0x0043B130
    or write '0x90, 0x90, 0x90, 0x90, 0x90' to 0x0045F9A7

    -===-

    Updated Addies:
    1.1.195:
    write '0xB8, 0x00, 0x00, 0x00, 0x00, 0xC3' to 0x004F76C0
    or write '0x90, 0x90, 0x90, 0x90, 0x90' to 0x004DDF77

    1.3.37:
    write '0xB8, 0x00, 0x00, 0x00, 0x00, 0xC3' to 0x00417B40
    or write '0x90, 0x90, 0x90, 0x90, 0x90' to 0x004730E7
    __________________

  13. #11
    sugarpl's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    My Mood
    Inspired
    One disables recoil, and one re-enables it again.

  14. #12
    Insane's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    9,057
    Reputation
    1007
    Thanks
    2,013
    Quote Originally Posted by OwnageMoreDE View Post
    dude i have the title choob for a reason
    You CANT use that as an excuse. There are some choobs and newbs releasing some pretty nice stuff...

    (but choobs are choobs and they always will be xD)

    Ex Middleman

  15. #13
    Xizors's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    568
    Reputation
    18
    Thanks
    94
    Nice tutorial..

  16. #14
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky
    Quote Originally Posted by OwnageMoreDE View Post
    dude i have the title choob for a reason?

    i just dont get the part which is this one

    overwrite the highlighted part with:
    ---
    mov eax, 0
    retn
    ---
    which is '0xB8, 0x00, 0x00, 0x00, 0x00, 0xC3'

    so write '0xB8, 0x00, 0x00, 0x00, 0x00, 0xC3' to 0x0043B130
    or write '0x90, 0x90, 0x90, 0x90, 0x90' to 0x0045F9A7

    -===-

    Updated Addies:
    1.1.195:
    write '0xB8, 0x00, 0x00, 0x00, 0x00, 0xC3' to 0x004F76C0
    or write '0x90, 0x90, 0x90, 0x90, 0x90' to 0x004DDF77

    1.3.37:
    write '0xB8, 0x00, 0x00, 0x00, 0x00, 0xC3' to 0x00417B40
    or write '0x90, 0x90, 0x90, 0x90, 0x90' to 0x004730E7
    __________________
    Take a black marker, and write it on your screen:
    MOV EAX, 0
    RETN

    Then restart your computer, if the text is still on the monitor at the windows desktop, it worked. now you have no more recoil on your guns for any version.
    Ah we-a blaze the fyah, make it bun dem!

  17. #15
    OwnageMoreDE's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Australia
    Posts
    102
    Reputation
    10
    Thanks
    3
    i can't tell if thats sarcasm or what o.O yeh yeh im an idiot

Page 1 of 3 123 LastLast

Similar Threads

  1. No Recoil Hack
    By quin123 in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 9
    Last Post: 03-21-2007, 03:14 PM
  2. America's Army No Recoil/Reload LUA code.
    By MagikBullet in forum General Game Hacking
    Replies: 7
    Last Post: 02-25-2007, 10:11 AM
  3. No recoil hack????
    By max.here in forum WarRock - International Hacks
    Replies: 2
    Last Post: 02-21-2007, 05:52 AM
  4. No recoil/no spread addys?
    By IBEZ in forum WarRock - International Hacks
    Replies: 8
    Last Post: 01-14-2007, 08:39 PM
  5. Godmode Hack with Ollydbg Tutorial
    By emisand in forum Gunz Hacks
    Replies: 46
    Last Post: 02-20-2006, 06:12 PM