Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    AskAndHelp's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Warrock hack section
    Posts
    84
    Reputation
    10
    Thanks
    9
    My Mood
    Fine

    Post No recoil and No spread

    Hello, my no recoil and my no spread hacks aren't working anymore after the update. I think it's the addy's

    No recoil:
    Code:
    #define ADR_PLAYERPOINTER	0x00C81820
    #define OFS_NORECOIL1		0x0000001C
    #define OFS_NORECOIL2		0x00000020
    #define OFS_NORECOIL3		0x00000024
    
    *(float*)(dwPlayerPtr + OFS_NORECOIL1) = 0;
    *(float*)(dwPlayerPtr + OFS_NORECOIL2) = 0;
    *(float*)(dwPlayerPtr + OFS_NORECOIL3) = 0;
    No Spread
    Code:
    #define ADR_NOSPREAD		0x009B2A50
    bool NoSpreadState = false;
    
    if (GetAsyncKeyState(VK_NUMPAD8))
    			NoSpreadState = true;
    		if (GetAsyncKeyState(VK_NUMPAD9))
    			NoSpreadState = false;
    	
    		if(NoSpreadState == true )
    		{
    			*(float*)ADR_NOSPREAD = 0;
    		}
    		else{}
    Yes, no spread is from Larta
    Thanks for your time!
    [YOUTUBE]cjMADPkivxM&NR[/YOUTUBE]
    IS THE GUN OKAY?!
    Did I help you? Press thanks!

    Repect list:
    - Wizdom-x (Helped Me Out Alot )
    - Kip3300 (First One To Help Me )
    - ikke0148 (Gonna Teach Me Stuf )
    - TheCamels8 (Best Addy Finder Ever )

  2. #2
    TheCamels8's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Israel :D
    Posts
    2,945
    Reputation
    174
    Thanks
    1,376
    My Mood
    Cheeky
    Try:

    Code:
    void NoSpread()
    {
    if(GetAsyncKeyState(VK_NUMPAD7) &1)
    {
    *(float*)ADR_NOSPREAD = 0;
    }
    }
    
    void NoSpreadOff()
    {
    if(GetAsyncKeyState(VK_NUMPAD8) &1)
    {
    *(float*)ADR_NOSPREAD = 1;
    }
    }

  3. #3
    AskAndHelp's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Warrock hack section
    Posts
    84
    Reputation
    10
    Thanks
    9
    My Mood
    Fine
    Quote Originally Posted by TheCamels8 View Post
    Try:

    Code:
    void NoSpread()
    {
    if(GetAsyncKeyState(VK_NUMPAD7) &1)
    {
    *(float*)ADR_NOSPREAD = 0;
    }
    }
    
    void NoSpreadOff()
    {
    if(GetAsyncKeyState(VK_NUMPAD8) &1)
    {
    *(float*)ADR_NOSPREAD = 1;
    }
    }
    Nope, it's still not working
    [YOUTUBE]cjMADPkivxM&NR[/YOUTUBE]
    IS THE GUN OKAY?!
    Did I help you? Press thanks!

    Repect list:
    - Wizdom-x (Helped Me Out Alot )
    - Kip3300 (First One To Help Me )
    - ikke0148 (Gonna Teach Me Stuf )
    - TheCamels8 (Best Addy Finder Ever )

  4. #4
    zerohead's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Location
    Holland
    Posts
    451
    Reputation
    59
    Thanks
    204
    My Mood
    Relaxed
    Quote Originally Posted by TheCamels8 View Post
    Try:

    Code:
    void NoSpread()
    {
    if(GetAsyncKeyState(VK_NUMPAD7) &1)
    {
    *(float*)ADR_NOSPREAD = 0;
    }
    }
    
    void NoSpreadOff()
    {
    if(GetAsyncKeyState(VK_NUMPAD8) &1)
    {
    *(float*)ADR_NOSPREAD = 1;
    }
    }
    bit of a nubisch script , Larta's was better
    Norecoil offsets are outdated and the nospread addy too, try this one instead:

    #define ADR_NoSpread 0xB06004

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

    joshpe1 (04-20-2011),larta (04-17-2011)

  6. #5
    TheCamels8's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Israel :D
    Posts
    2,945
    Reputation
    174
    Thanks
    1,376
    My Mood
    Cheeky
    Quote Originally Posted by zerohead View Post
    bit of a nubisch script , Larta's was better
    Norecoil offsets are outdated and the nospread addy too, try this one instead:

    #define ADR_NoSpread 0xB06004
    My NoSpread code is more easy, and everyone can understand it -.-
    About the NoSpread addy, i'll check it.

  7. #6
    pongping88's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    299
    Reputation
    10
    Thanks
    27
    My Mood
    Innocent
    Quote Originally Posted by TheCamels8 View Post
    My NoSpread code is more easy, and everyone can understand it -.-
    About the NoSpread addy, i'll check it.
    wow get it from my master, thecamels8

    Quote Originally Posted by AskAndHelp View Post
    Hello, my no recoil and my no spread hacks aren't working anymore after the update. I think it's the addy's

    No recoil:
    Code:
    #define ADR_PLAYERPOINTER	0x00C81820
    #define OFS_NORECOIL1		0x0000001C
    #define OFS_NORECOIL2		0x00000020
    #define OFS_NORECOIL3		0x00000024
    
    *(float*)(dwPlayerPtr + OFS_NORECOIL1) = 0;
    *(float*)(dwPlayerPtr + OFS_NORECOIL2) = 0;
    *(float*)(dwPlayerPtr + OFS_NORECOIL3) = 0;
    No Spread
    Code:
    #define ADR_NOSPREAD		0x009B2A50
    bool NoSpreadState = false;
    
    if (GetAsyncKeyState(VK_NUMPAD8))
    			NoSpreadState = true;
    		if (GetAsyncKeyState(VK_NUMPAD9))
    			NoSpreadState = false;
    	
    		if(NoSpreadState == true )
    		{
    			*(float*)ADR_NOSPREAD = 0;
    		}
    		else{}
    Yes, no spread is from Larta
    Thanks for your time!
    try my code
    void NoSpread()
    {
    *(float*)ADR_NOSPREAD = 0;
    }

    void NoRecoil()
    {
    DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
    if(dwPlayerPtr != 0)
    {
    *(float*)(dwPlayerPtr+OFS_NORECOIL1) = 0;
    *(float*)(dwPlayerPtr+OFS_NORECOIL2) = 0;
    *(float*)(dwPlayerPtr+OFS_NORECOIL3) = 0;
    }
    }
    Last edited by pongping88; 04-17-2011 at 08:17 AM.

  8. The Following User Says Thank You to pongping88 For This Useful Post:

    iits (04-30-2011)

  9. #7
    larta's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    In your Back !!
    Posts
    323
    Reputation
    10
    Thanks
    69
    My Mood
    Cool
    This is the way for auto on.

    The code given is right, also is the Camels8's one.

    I dunno why this is ain't working for you.. The only reason I see is the addy is wrong.

    Or, there's a bug in your source code somewhere else.

    EDIT : And Btw, you can delete the " else{} " this is useless. It was just to show that we need to do nothing.
    Last edited by larta; 04-17-2011 at 09:20 AM.
    [img]https://www.upza*****m/viewimg/02a3c-Image4.jpg[/img]
    Respect List :
    TheCamels8
    AeroMan
    ryski123
    Dave
    Alen
    Coeus
    sh_z_sektor
    [Cold]Taker
    And some more...

    My projects :
    Larta's Hack NoMenu ( Updated 25-2-11 ) : https://www.mpgh.net/forum/28-warrock...25-2-11-a.html

    Skin Manager v1.5 :
    https://www.mpgh.net/forum/159-warroc...er-v1-5-a.html

    Skin Manager v2.0 :
    https://www.mpgh.net/forum/159-warroc...anager-v*****ml

    Dont forget to hit that thanks button !
    |
    V

  10. #8
    pongping88's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    299
    Reputation
    10
    Thanks
    27
    My Mood
    Innocent
    Quote Originally Posted by larta View Post
    This is the way for auto on.

    The code given is right, also is the Camels8's one.

    I dunno why this is ain't working for you.. The only reason I see is the addy is wrong.

    Or, there's a bug in your source code somewhere else.

    EDIT : And Btw, you can delete the " else{} " this is useless. It was just to show that we need to do nothing.
    i agree because i have been using this code for many days now and its working


    maybe the problem is your addies

  11. #9
    zerohead's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Location
    Holland
    Posts
    451
    Reputation
    59
    Thanks
    204
    My Mood
    Relaxed
    I researched the addy for NoSpread, it has to be 0xB06000

  12. #10
    pongping88's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    299
    Reputation
    10
    Thanks
    27
    My Mood
    Innocent
    Quote Originally Posted by zerohead View Post
    I researched the addy for NoSpread, it has to be 0xB06000
    what is the search code for nospread and no recoil?

  13. #11
    AskAndHelp's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Warrock hack section
    Posts
    84
    Reputation
    10
    Thanks
    9
    My Mood
    Fine
    Ok, I got the no spread working now. So please can you help me with no recoil?
    And maybe is someone able to give me the addy for crosshair always on?
    Last edited by AskAndHelp; 04-17-2011 at 01:20 PM.
    [YOUTUBE]cjMADPkivxM&NR[/YOUTUBE]
    IS THE GUN OKAY?!
    Did I help you? Press thanks!

    Repect list:
    - Wizdom-x (Helped Me Out Alot )
    - Kip3300 (First One To Help Me )
    - ikke0148 (Gonna Teach Me Stuf )
    - TheCamels8 (Best Addy Finder Ever )

  14. #12
    pongping88's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    299
    Reputation
    10
    Thanks
    27
    My Mood
    Innocent
    Quote Originally Posted by AskAndHelp View Post
    Ok, I got the no spread working now. So please can you help me with no recoil?
    And maybe is someone able to give me the addy for crosshair always on?
    search for the right addy


    the reason your hack isnt working because of your addy

  15. The Following User Says Thank You to pongping88 For This Useful Post:

    iits (04-30-2011)

  16. #13
    nokia6288's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    565
    Reputation
    10
    Thanks
    225
    My Mood
    Doubtful
    in my case...
    the addies are correct and the game guard still detects my no menu

    what will i do now

  17. #14
    deimos109's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Location
    Italy
    Posts
    55
    Reputation
    10
    Thanks
    126
    My Mood
    Bored
    @nokia6288 Put a bypass for game guard in your nomenu

  18. #15
    nokia6288's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    565
    Reputation
    10
    Thanks
    225
    My Mood
    Doubtful
    Quote Originally Posted by deimos109 View Post
    @nokia6288 Put a bypass for game guard in your nomenu
    will you teach me how?

Page 1 of 2 12 LastLast

Tags for this Thread