Page 5 of 8 FirstFirst ... 34567 ... LastLast
Results 61 to 75 of 115
  1. #61
    J's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    East Coast
    Posts
    2,164
    Reputation
    452
    Thanks
    5,900
    My Mood
    In Love
    Quote Originally Posted by killergod129 View Post
    so these are basically add ons to a hack code right?
    Yes, just copy the code I posted into your menu base, or hotkey base. (whatever one you are using). So if you are using a hotkey base, you should put it in like this:
    Make your own functions:
    Code:
    void NoRecoilon()
    {
    	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);
    }
    void NoRecoiloff()
    {
    	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);
    }
    Make sure this is in your globals(very top of source file):
    Code:
    bool norecoil = false;
    Then in your main hack thread:
    Code:
    if (GetAsyncKeyState(VK_NUMPAD1)&1)
    {
    	norecoil = !norecoil;
    }
    
    if (norecoil == true)
    {
    	NoRecoilon();
    }
    else
    {
    	NoRecoiloff();
    }
    May lag. Add Sleep(50); in the end of your on and off functions.
    Do the same for the other hacks.
    Keep me motivated for my hack development!

  2. The Following User Says Thank You to J For This Useful Post:

    killergod129 (07-13-2010)

  3. #62
    Bombsaway707's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Gym
    Posts
    8,799
    Reputation
    791
    Thanks
    4,004
    My Mood
    Amused
    Updated addies

  4. #63
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    What changed?
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

  5. #64
    killergod129's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    .asdas
    Posts
    102
    Reputation
    10
    Thanks
    6
    My Mood
    Yeehaw
    tYVM SO MUCH NOW ALL I NEED IS A TUT TO CODEING =)
    i am part of the :
    [IMG]https://i941.photobucke*****m/albums/ad256/zooo/bad-inf-logo.gif[/IMG]

    MY CURRENT ACCOUNT:


    MY OLD ACCOUNT :


    MY OLDEST ACCOUNT (NOW BANNED):



    MY CURRENT MOD LIST
    1.AK 47 TO UMP

    2. L96A1 TO MAC 10

  6. #65
    J's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    East Coast
    Posts
    2,164
    Reputation
    452
    Thanks
    5,900
    My Mood
    In Love
    Quote Originally Posted by whatup777 View Post
    What changed?
    I added player pointer along with XYZ offsets.
    Keep me motivated for my hack development!

  7. #66
    zmansquared's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Kickin it at Microsoft
    Posts
    2,086
    Reputation
    36
    Thanks
    221
    My Mood
    Cheerful
    you should post the random player pointer (i already got it though)
    Need Help With Coding or Something??? MSN me
    zmansquared@hotmail.com


    I am the one and only Microsoft Fag!!!

    Quote:
    Originally Posted by Arhk
    All games should be hacked, if we don't do it someone else will. Hackers force the progress, of better programming methods.
    ~


    Take this Pic everyone!



    next-

  8. #67
    deathninjak0's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    1,510
    Reputation
    12
    Thanks
    294
    My Mood
    Cool
    Did the LTClient changed?

  9. #68
    hhhjr1's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    i live in your room hahahah
    Posts
    413
    Reputation
    9
    Thanks
    22
    My Mood
    Confused
    thanks man you so kool this

  10. #69
    o-o's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    who reading that ? T_T
    Posts
    682
    Reputation
    10
    Thanks
    307
    My Mood
    Cold
    in eu and na that the same codes?

    and ty

  11. #70
    HughJass's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    336
    Reputation
    10
    Thanks
    4
    My Mood
    Brooding
    Quote Originally Posted by o-o View Post
    in eu and na that the same codes?

    and ty
    Na, and Eu hav different fucking adresses man.

  12. #71
    Disturbed's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    10,472
    Reputation
    1267
    Thanks
    2,587
    Quote Originally Posted by HughJass View Post
    Na, and Eu hav different fucking adresses man.
    What was the FUCKING point of putting FUCKING in that post? Is there some sort of FUCKING problem?


  13. #72
    killergod129's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    .asdas
    Posts
    102
    Reputation
    10
    Thanks
    6
    My Mood
    Yeehaw
    Quote Originally Posted by Blood View Post
    Yes, just copy the code I posted into your menu base, or hotkey base. (whatever one you are using). So if you are using a hotkey base, you should put it in like this:
    Make your own functions:
    Code:
    void NoRecoilon()
    {
    	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);
    }
    void NoRecoiloff()
    {
    	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);
    }
    Make sure this is in your globals(very top of source file):
    Code:
    bool norecoil = false;
    Then in your main hack thread:
    Code:
    if (GetAsyncKeyState(VK_NUMPAD1)&1)
    {
    	norecoil = !norecoil;
    }
    
    if (norecoil == true)
    {
    	NoRecoilon();
    }
    else
    {
    	NoRecoiloff();
    }
    May lag. Add Sleep(50); in the end of your on and off functions.
    Do the same for the other hacks.
    tyvm but i only want No recoil and no reload to be on permanently, so do i just copy the No recoil on and in my globals do i just change it to Norecoil == true?
    i am part of the :
    [IMG]https://i941.photobucke*****m/albums/ad256/zooo/bad-inf-logo.gif[/IMG]

    MY CURRENT ACCOUNT:


    MY OLD ACCOUNT :


    MY OLDEST ACCOUNT (NOW BANNED):



    MY CURRENT MOD LIST
    1.AK 47 TO UMP

    2. L96A1 TO MAC 10

  14. #73
    J's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    East Coast
    Posts
    2,164
    Reputation
    452
    Thanks
    5,900
    My Mood
    In Love
    Quote Originally Posted by killergod129 View Post
    tyvm but i only want No recoil and no reload to be on permanently, so do i just copy the No recoil on and in my globals do i just change it to Norecoil == true?
    Learn C++.
    Keep me motivated for my hack development!

  15. #74
    retarted0's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    1
    My Mood
    Goofy

    HOW TO INJECT IT

    i downloaded it but i dont know how to inject it on my combat arms

  16. #75
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    Quote Originally Posted by retarted0 View Post
    i downloaded it but i dont know how to inject it on my combat arms
    You seriously fail.
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

Page 5 of 8 FirstFirst ... 34567 ... LastLast

Similar Threads

  1. [Release]Address Logger V1! & Updated Addresses (10/30/10)
    By seeplusplus in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 49
    Last Post: 11-20-2010, 12:43 PM
  2. [Release] Updated No Recoil Address
    By Braco22 in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 47
    Last Post: 08-02-2010, 11:55 PM
  3. [RELEASE] Updated Addresses [14/7/2010]
    By ~GodLike~ in forum Combat Arms EU Hack Coding/Source Code
    Replies: 23
    Last Post: 07-16-2010, 09:32 AM
  4. [RELEASE] Updated Addresses
    By J in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 5
    Last Post: 07-01-2010, 08:51 AM
  5. [RELEASE] - Updated Addresses
    By J in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 81
    Last Post: 06-24-2010, 05:08 AM