Results 1 to 12 of 12
  1. #1
    NOOBJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in NOOB
    Posts
    1,423
    Reputation
    112
    Thanks
    693

    How to add No recoil to my hack?????

    Can someone show me how to add no recoil to my hack? ik how to put ptc commands in my hack but no recoil is diffrent! Could someone help ill thank pls rep.

    -Zane

  2. #2
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused
    it is not a ptc

    Code:
    memcpy((LPVOID)0x3741A550, "\x90\x90\x90", 3);
    memcpy((LPVOID)0x3740AA99, "\x90\x90\x90", 3);
    memcpy((LPVOID)0x3741A564, "\x90\x90\x90", 3);
    memcpy((LPVOID)0x3741A567, "\x90\x90\x90", 3);
    memcpy((LPVOID)0x3741A570, "\x90\x90\x90", 3);
    add this to your hack and it should work !





    beat this bitches ^^^^^^^

    Current Stats : Bored :/


    Respect list :
    Crash !
    Gordon'
    Markoj

  3. #3
    NOOBJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in NOOB
    Posts
    1,423
    Reputation
    112
    Thanks
    693
    Yeah ik that but were? im still learning all ik how to do is ptc commands. how do i format it

    like this

    code:

    Bool norecoil = false;


    if(GetAsyncKeyState(VK_NUMPAD0) < 0){
    norecoil = !norecoil;
    if (norecoil)
    memcpy((LPVOID)0x3741A550, "\xD8\x66\x54", 3);
    memcpy((LPVOID)0x3740AA99, "\xD9\x46\x54", 3);
    memcpy((LPVOID)0x3741A564, "\xD9\x5E\x54", 3);
    memcpy((LPVOID)0x3741A567, "\xD9\x46\x48", 3);
    memcpy((LPVOID)0x3741A570, "\xD9\x5E\x48", 3);
    else
    memcpy((LPVOID)0x3741A550, "\x90\x90\x90", 3);
    memcpy((LPVOID)0x3740AA99, "\x90\x90\x90", 3);
    memcpy((LPVOID)0x3741A564, "\x90\x90\x90", 3);
    memcpy((LPVOID)0x3741A567, "\x90\x90\x90", 3);
    memcpy((LPVOID)0x3741A570, "\x90\x90\x90", 3);

    }

    Sleep(100)

  4. #4
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused
    you forgot to add the
    norecoil = true

    and the

    norecoil = false





    beat this bitches ^^^^^^^

    Current Stats : Bored :/


    Respect list :
    Crash !
    Gordon'
    Markoj

  5. #5
    NOOBJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in NOOB
    Posts
    1,423
    Reputation
    112
    Thanks
    693
    So like this

    Bool norecoil = false;
    bool norecoil = true;


    if(GetAsyncKeyState(VK_NUMPAD0) < 0){
    norecoil = !norecoil;
    if (norecoil)
    memcpy((LPVOID)0x3741A550, "\xD8\x66\x54", 3);
    memcpy((LPVOID)0x3740AA99, "\xD9\x46\x54", 3);
    memcpy((LPVOID)0x3741A564, "\xD9\x5E\x54", 3);
    memcpy((LPVOID)0x3741A567, "\xD9\x46\x48", 3);
    memcpy((LPVOID)0x3741A570, "\xD9\x5E\x48", 3);
    else
    memcpy((LPVOID)0x3741A550, "\x90\x90\x90", 3);
    memcpy((LPVOID)0x3740AA99, "\x90\x90\x90", 3);
    memcpy((LPVOID)0x3741A564, "\x90\x90\x90", 3);
    memcpy((LPVOID)0x3741A567, "\x90\x90\x90", 3);
    memcpy((LPVOID)0x3741A570, "\x90\x90\x90", 3);

    }

    Sleep(100)

  6. #6
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused
    omg do you know how to code ?

    it should be like this



    Code:
    bool norecoil = false;
    
    
    if(GetAsyncKeyState(VK_NUMPAD1)<0){
    					if(norecoil){
    			memcpy((LPVOID)0x3741A550, "\xD8\x66\x54", 3);
                            memcpy((LPVOID)0x3740AA99, "\xD9\x46\x54", 3);
                            memcpy((LPVOID)0x3741A564, "\xD9\x5E\x54", 3);
                            memcpy((LPVOID)0x3741A567, "\xD9\x46\x48", 3);
                            memcpy((LPVOID)0x3741A570, "\xD9\x5E\x48", 3);
    			norecoil = false;
    					}else{
    			memcpy((LPVOID)0x3741A550, "\x90\x90\x90", 3);
                            memcpy((LPVOID)0x3740AA99, "\x90\x90\x90", 3);
                            memcpy((LPVOID)0x3741A564, "\x90\x90\x90", 3);
                            memcpy((LPVOID)0x3741A567, "\x90\x90\x90", 3);
                            memcpy((LPVOID)0x3741A570, "\x90\x90\x90", 3);
    			norecoil = true;
    					}
    					Sleep(200);
    				}
    even a noob should know what to do now





    beat this bitches ^^^^^^^

    Current Stats : Bored :/


    Respect list :
    Crash !
    Gordon'
    Markoj

  7. #7
    NOOBJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in NOOB
    Posts
    1,423
    Reputation
    112
    Thanks
    693
    ok sorry i was kinda confused! i just learned making hacks today and im doing pretty good! thanks man.

  8. #8
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused
    Quote Originally Posted by Zane Slayman View Post
    ok sorry i was kinda confused! i just learned making hacks today and im doing pretty good! thanks man.
    click it don't say it
    XD





    beat this bitches ^^^^^^^

    Current Stats : Bored :/


    Respect list :
    Crash !
    Gordon'
    Markoj

  9. #9
    NOOBJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in NOOB
    Posts
    1,423
    Reputation
    112
    Thanks
    693
    wow i guess i am a noob because i still cant get it. im still getting three errors ahhhh lol

  10. #10
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused
    Quote Originally Posted by Zane Slayman View Post
    wow i guess i am a noob because i still cant get it. im still getting three errors ahhhh lol
    tell me the errors ..............





    beat this bitches ^^^^^^^

    Current Stats : Bored :/


    Respect list :
    Crash !
    Gordon'
    Markoj

  11. #11
    NOOBJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in NOOB
    Posts
    1,423
    Reputation
    112
    Thanks
    693
    Never mind ive been working on this hack for 7 hours strait trying to learn
    i figured it out thanks. You have helped alot.

  12. #12
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused
    again press it don't say it !





    beat this bitches ^^^^^^^

    Current Stats : Bored :/


    Respect list :
    Crash !
    Gordon'
    Markoj

Similar Threads

  1. [Release] How To Add Hotkeys To Your Programs/Hacks
    By **HACKER** in forum CrossFire Tutorials
    Replies: 1
    Last Post: 01-06-2011, 02:43 PM
  2. [HELP] How do i add a name to the hack so it shows in game?
    By ®Jack in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 11
    Last Post: 07-31-2010, 03:32 AM
  3. How to add an attachment file and how to make CA hacks.
    By Klumzy in forum Programming Tutorial Requests
    Replies: 2
    Last Post: 07-15-2009, 12:52 PM
  4. how can add farfog in my hack??
    By spartacchio in forum C++/C Programming
    Replies: 9
    Last Post: 04-23-2008, 02:30 PM
  5. How to add Winchester hack to my hack ?? (VB6)
    By floris12345! in forum Visual Basic Programming
    Replies: 7
    Last Post: 01-04-2008, 06:19 AM