Thread: CoD4 NoSpread

Results 1 to 4 of 4
  1. #1
    P!NK.'s Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    9
    My Mood
    Psychedelic

    CoD4 NoSpread

    Hey guys,


    I just wanted to show "unexperienced" members how to create a simple NoSpread and NoRecoil for CoD4 (iw3mp).
    ---------------------------------------------------------------------------------------------------------------------------------------------------------------


    So create a new Win32 project (you will need "Visual Studio"(which one doesn't really matter though) or another IDE for C++)

    htt p:/ / prnt scr . com / 8hdlr4


    And make sure you don't create a console app. We want a .DLL file (it's a dynamic library that gets injected into processmemory)

    htt p:/ / prnt scr . com / 8hdne4


    Now we're ready to start coding our Removals (it won't have a toggle function but you can add one I'll give you some tips at the end)

    ---------------------------------------------------------------------------------------------------------------------------------------------------------------

    1. We're going to include the <Windows.h> header (and the "stdafx.h" but this header file is standartly included when you create the .dll).

    Code:
    #include <Windows.h>

    Codelines that begin with '#' are always going to the preprocessor (im german and in german its : "Präprozessor")
    With the command #include, you can include the header files that you created in your project or header files that are already made
    (for example: Windows.h, iostream).


    2. Create an BYTE array that will hold 2 "numbers" (there more than numbers but it will be enough for now)

    htt p:/ / prnt scr . com / 8hdts9

    BYTE is an unsigned char which is basically a variable. NoSpread and NoRecoil are the names that you can call like you want. And after
    the name is '[]'. [] will show you that its an array. An array is like a list that can hold multiple ints or strings etc. at once.
    In the '{}' we'll write our "numbers".

    0x75, 0x15 is to toggle the spread off and 0x74, 0x08 is to toggle the recoil off.


    3. In the DllMain we are going to WriteProcessMemory which should be self explaining Of course just if the dll is attached to a process.

    htt p:/ / prnt scr . com / 8hduza

    Get "CurrentProcess" gets the process our dll is injected to.



    --------------------------------------------------------------------------------------------------------------------------------------------------------------

    To create like a toggle thing you could use: if(GetAsyncKeyState(VK_thekeyuwanthere)) { ... } .



    Hope this somehow helped those how want to create a simple hack (and NoSpread and NoRecoil are pretty usefull).
    I also hope i explained some things good to understand what they do.
    If not, in some things i explain it like i think it works. (and sometimes i mix some java in but shouldnt have happened here ).



    Bye until the next time,
    P!NK.

  2. #2
    ImSoNerD's Avatar
    Join Date
    Aug 2012
    Gender
    female
    Location
    NormalRoom
    Posts
    13
    Reputation
    10
    Thanks
    209
    My Mood
    Innocent
    so is this for bot matches or does it work in public servers
    ASDFGL

  3. #3
    Threadstarter
    New Member
    P!NK.'s Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    9
    My Mood
    Psychedelic
    It will work on public servers. It's pb detected tho

  4. #4
    Lucyfer's Avatar
    Join Date
    Dec 2012
    Gender
    female
    Location
    House Of Smoke 卍
    Posts
    1,295
    Reputation
    80
    Thanks
    1,957
    My Mood
    Devilish
    can create tutorial vid?

    My New Skype: mpgh.lucyfer
    Email: mpghlucyfer@gmail.com
    Hangouts (Google Talk): mpghlucyfer@gmail.com



    Do not Hesitate if you have Questions :-)
    Want fast Reply? Skype ME


    ALWAYS PRESS & TO GIVE US MOTIVATION TO CONTINUE POSTING AND GIVEAWAY COOL STUFF .


    Joined-December 2012
    Member Level 2-March 2016
    Blackshot Minion Section-March 2016

  5. The Following 4 Users Say Thank You to Lucyfer For This Useful Post:

    ilmyking99 (01-29-2016),royjoe11 (01-29-2016),wafinasir (01-29-2016),_LuffyOnePiece_ (01-29-2016)

Similar Threads

  1. [Release] COD4 NoRecoil / NoSpread
    By Samos123 in forum Call of Duty 4 - Modern Warfare (MW) Hacks
    Replies: 4
    Last Post: 06-14-2015, 05:20 PM
  2. DEVELOPING NEW COD4 MULTIHACK (SilentAimbot,Nospread,NoRecoil,Chams)
    By ReptillianJesus in forum Call of Duty Modern Warfare Discussions
    Replies: 11
    Last Post: 12-11-2014, 11:50 AM
  3. COD4 & other hacks
    By Dave84311 in forum Hack/Release News
    Replies: 0
    Last Post: 11-08-2007, 09:44 AM
  4. nospread and glass walls tuts
    By Q in forum WarRock - International Hacks
    Replies: 2
    Last Post: 10-31-2007, 08:39 AM
  5. Codes 2 get weapons,swim,5th slot,nospread recoil,...
    By crazy4her in forum WarRock - International Hacks
    Replies: 9
    Last Post: 06-07-2007, 01:42 PM