Results 1 to 15 of 15
  1. #1
    timiostimio's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    GB
    Posts
    454
    Reputation
    10
    Thanks
    5,090
    My Mood
    Cold

    How to make your own No Recoil | No Spread Hack/CE Table/Whatever

    Hi,
    Nothing to say, let's begin.

    first of all you have to download & install Cheat Engine.
    Open Cheat engine and click on "Memory View"



    Press CTRL+G.
    A window should popup :
    If not, right click anywhere and click "go to address"



    Type in the no recoil address ( NOT 0xBLABLABLA , replace 0x by 00 ! )
    And press enter. ( or press ok )

    Now you are at the no recoil address.
    If you want to make a hack , you have to remember those bytes - write em down or something.
    default bytes = OFF your hack function
    bytes = opcode



    Double click "JE".


    The CE Assembler will popup.
    Now replace "JE" by "JMP" and press OK.



    ->



    You'll notice , that the bytes have changed to 0xEB , 0x3C.
    That's your ON bytes, to turn the hack on.

    Done. you got your bytes.

    You can also check the value while changing JE to JMP and make a CE table / external hack out of it.



    Example Code:
     

    Code:
    #include <windows.h>
    
    #define Addy1 0xRECOILADDY
    #define Addy2 0xNOSPREADADDY
    
    void NoSprecoil(bool what)
    {
    DWORD oldprotect;
    
    if (what == true)
    {
    VirtualProtect((LPVOID)(Addy1), 4, PAGE_EXECUTE_READWRITE, &oldprotect);
    
    memcpy((LPVOID)Addy1, "\xBYTEON", 1); // change 1 to 2 if you have to replace both bytes.
    memcpy((LPVOID)Addy2, "\xBYTEON", 1); // change 1 to 2 if you have to replace both bytes.
    
    VirtualProtect((LPVOID)(Addy1), 4, oldprotect, &oldprotect);
    
    
    }
    else
    {
    VirtualProtect((LPVOID)(Addy1), 4, PAGE_EXECUTE_READWRITE, &oldprotect);
    
    memcpy((LPVOID)Addy1, "\xBYTEOFF", 1);  // change 1 to 2 if you have to replace both bytes.
    memcpy((LPVOID)Addy2, "\xBYTEOFF", 1); // change 1 to 2 if you have to replace both bytes.
    
    VirtualProtect((LPVOID)(Addy1), 4, oldprotect, &oldprotect);
    
    }
    
    }
    
    DWORD WINAPI Loop()
    {
    for (;; Sleep(125))
    {
    if (GetAsyncKeyState(VK_F3))
    {
    NoSprecoil(true);
    
    }
    
    if (GetAsyncKeyState(VK_F4))
    {
    NoSprecoil(false);
    }
    
    }
    }
    
    
    BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpvReserved)
    {
    switch (dwReason)
    {
    case 1:
    CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Loop, 0, 0, 0);
    break;
    }
    return true;
    }

  2. The Following 5 Users Say Thank You to timiostimio For This Useful Post:

    hacktaodachethet (04-14-2015),psa47 (04-08-2015),ratulupadhyay (04-14-2015),spartaq (04-08-2015),YOUCEFHam (04-08-2015)

  3. #2
    rijans's Avatar
    Join Date
    Dec 2014
    Gender
    male
    Location
    Dhaka, Bangladesh
    Posts
    7
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive
    Hi timiostimio , nice tutorial with visuals.
    An off-topic: Yesterday I've seen a guy running like rocket and when I asked him how he's doing it, he said, he's using Cheat Engine's speed hack. But when I try cheat engine's speed hack, I get no speed boost! Do you know anything abut this?

    I don't want massive speed. I want a little bit speed boost that is not easily identified most eyes.
    Last edited by rijans; 04-08-2015 at 12:07 AM.

  4. #3
    S1lv3rAng3l_LuLZ's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    65
    Reputation
    10
    Thanks
    6
    Skids 'n nubs tutorials, yay, its coming

  5. #4
    timiostimio's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    GB
    Posts
    454
    Reputation
    10
    Thanks
    5,090
    My Mood
    Cold
    Quote Originally Posted by S1lv3rAng3l_LuLZ View Post
    Skids 'n nubs tutorials, yay, its coming
    It's already here since the internet exists

  6. #5
    S1lv3rAng3l_LuLZ's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    65
    Reputation
    10
    Thanks
    6
    Quote Originally Posted by timiostimio View Post
    It's already here since the internet exists
    Then why to make that collection bigger :'(

  7. #6
    timiostimio's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    GB
    Posts
    454
    Reputation
    10
    Thanks
    5,090
    My Mood
    Cold
    Quote Originally Posted by S1lv3rAng3l_LuLZ View Post
    Then why to make that collection bigger :'(
    Maybe there are some people who actually want to learn something

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

    DNplayer (09-22-2017),YOUCEFHam (04-08-2015)

  9. #7
    S1lv3rAng3l_LuLZ's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    65
    Reputation
    10
    Thanks
    6
    Quote Originally Posted by timiostimio View Post
    Maybe there are some people who actually want to learn something
    Or it's just to increase your ego & show you can do something :O

    //just realized you use pretty weirdo function for the recoil it wasn't tehre one year ago!

  10. The Following User Says Thank You to S1lv3rAng3l_LuLZ For This Useful Post:

    timiostimio (04-08-2015)

  11. #8
    x7gamingm's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Location
    Georgia,USA
    Posts
    192
    Reputation
    10
    Thanks
    16
    My Mood
    Hot
    In the begininng how do we know which ghostreconphantoms.exe to press? sorry i'm a nub

  12. #9
    Renan900ES's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Posts
    42
    Reputation
    10
    Thanks
    3
    Quote Originally Posted by rijans View Post
    Hi timiostimio , nice tutorial with visuals.
    An off-topic: Yesterday I've seen a guy running like rocket and when I asked him how he's doing it, he said, he's using Cheat Engine's speed hack. But when I try cheat engine's speed hack, I get no speed boost! Do you know anything abut this?

    I don't want massive speed. I want a little bit speed boost that is not easily identified most eyes.

    As I also have this doubt

  13. #10
    psa47's Avatar
    Join Date
    Sep 2014
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    6
    maybe you will make tutorial how to find norecoil adress, but still dont understand why talking about nospread if it is quickly detected???!!!!

  14. #11
    SgtvinillafaceHD's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    In your mom
    Posts
    39
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive
    True that psa47, Won't GRP detect it as we're messing with the game's memory...

  15. #12
    x7gamingm's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Location
    Georgia,USA
    Posts
    192
    Reputation
    10
    Thanks
    16
    My Mood
    Hot
    yes it will sgt

  16. #13
    haqgamer's Avatar
    Join Date
    Sep 2013
    Gender
    male
    Posts
    234
    Reputation
    10
    Thanks
    808
    Nice post.

  17. The Following User Says Thank You to haqgamer For This Useful Post:

    timiostimio (04-09-2015)

  18. #14
    GOLDENPACK's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    85
    Reputation
    10
    Thanks
    21
    you are awsome timiostimio,,, thx for share

  19. #15
    ratulupadhyay's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    1
    Thanks again dude

Similar Threads

  1. [Help] How to make a no recoil no spread hack
    By st34tlh in forum Battlefield 3 (BF3) Hacks & Cheats
    Replies: 3
    Last Post: 04-21-2013, 03:31 AM
  2. [Tutorial] How to make your own undetected module in VB6
    By markfracasso11 in forum Visual Basic Programming
    Replies: 17
    Last Post: 10-15-2007, 09:34 AM
  3. [Tutorial] How to make your own undetected module in VB6
    By markfracasso11 in forum WarRock - International Hacks
    Replies: 22
    Last Post: 09-25-2007, 05:35 AM
  4. (TUT)how to make your own warrock menu
    By aprill27 in forum WarRock - International Hacks
    Replies: 0
    Last Post: 09-21-2007, 03:46 PM
  5. How to make your own radiostation?
    By nasir91 in forum General
    Replies: 3
    Last Post: 04-30-2007, 07:25 AM