Page 3 of 3 FirstFirst 123
Results 31 to 42 of 42
  1. #31
    DBag4Life69's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    290
    Reputation
    13
    Thanks
    59
    My Mood
    Twisted
    Quote Originally Posted by Crash View Post
    Certain addresses can contain values of variables like speed, gravity, bullets, etc.
    You can find addresses by using a memory searcher like MHS or CE (both detected by HS).
    You can either set a value for them like infinite respawn :
    Code:
    *(long*)0x376B9278 = 1;//Current address for CA NA as of today
    or NOP(no operation performed(I think you understand what this does)) the addresses for no recoil(there are 5 addresses) :

    Code:
    memcpy((LPVOID)0x3741B550, "\x90\x90\x90", 3);
    Okay, so you said there's 5 addresses, that appears to me like it's only one, but could you give me like an example piece of code to show how I would implement an address into a hack?

  2. #32
    speedforyou's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    735
    Reputation
    -59
    Thanks
    108
    My Mood
    Happy
    so:*(short*)0x376B9278 = 1;//Current address for CA NA as of today
    for a fast respawn

    steel o-o's sig =
    = Done , = Not Done

    Leecher 0 =
    Newbie 25 =
    Member 50 =
    Advanced Member 100 =
    H4X0R Member 150 =
    Dual-Keyboard Member 250 =
    Expert Member 500 =
    's Trainer 750 =
    MPGH Expert 1000 =
    Synthetic Hacker 1250 =
    Blackhat Hacker 1500 =
    Whitehat Hacker 2000 =
    's Guardian 2500 =
    Upcoming MPGHiean 3000 =
    MPGH Addict 3500 =
    MPGHiean 4000 =
    MPGH Knight 4500 =
    MPGH Lord 5000 =
    MPGH Champion 5500 =
    MPGH King 6000 =
    MPGH Legend 6500 =
    MPGH God 7000 =
    MPGH God II 7500 =
    MPGH God III 8000 =
    MPGH God IV 8500 =
    MPGH God V 9000 =
    Arun's Slave 9500 =
    Dave's Slave 10000 =

  3. #33
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Quote Originally Posted by speedforyou View Post
    so:*(short*)0x376B9278 = 1;//Current address for CA NA as of today
    for a fast respawn
    If you had read the post instead of copying and pasting the code you see, you would know what it is for.

    @DBag : That is an example for one of the five addresses but here is a small example of how to make it enable/disable with a hotkey :

    Code:
    //Global
    bool recoil = false;
    
    //In your infinite loop
    if(GetAsyncKeyState(VK_F9)&1){
    
        recoil = !recoil;
        if(recoil){
            memcpy((LPVOID)0x3741B550, "\x90\x90\x90", 3);
    	memcpy((LPVOID)0x3740BAA9, "\x90\x90\x90", 3);
    	memcpy((LPVOID)0x3741B564, "\x90\x90\x90", 3);
    	memcpy((LPVOID)0x3741B567, "\x90\x90\x90", 3);
    	memcpy((LPVOID)0x3741B570, "\x90\x90\x90", 3);
        } else {
            memcpy((LPVOID)0x3741B550, "\xD8\x66\x54 ", 3);
    	memcpy((LPVOID)0x3740BAA9, "\xD9\x46\x54", 3);
    	memcpy((LPVOID)0x3741B564, "\xD9\x5E\x54", 3);
    	memcpy((LPVOID)0x3741B567, "\xD9\x46\x48", 3);
    	memcpy((LPVOID)0x3741B570, "\xD9\x5E\x48", 3);
        }
    
    }
    Last edited by Crash; 08-14-2010 at 08:43 AM.

  4. The Following User Says Thank You to Crash For This Useful Post:

    DBag4Life69 (08-14-2010)

  5. #34
    speedforyou's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    735
    Reputation
    -59
    Thanks
    108
    My Mood
    Happy
    ive been trying to figur this out man none will share it

    ok so i have a opk and telekill address then i would add them like that
    do you guys have a address finder??? thats not detected
    Last edited by speedforyou; 08-14-2010 at 08:36 AM.

    steel o-o's sig =
    = Done , = Not Done

    Leecher 0 =
    Newbie 25 =
    Member 50 =
    Advanced Member 100 =
    H4X0R Member 150 =
    Dual-Keyboard Member 250 =
    Expert Member 500 =
    's Trainer 750 =
    MPGH Expert 1000 =
    Synthetic Hacker 1250 =
    Blackhat Hacker 1500 =
    Whitehat Hacker 2000 =
    's Guardian 2500 =
    Upcoming MPGHiean 3000 =
    MPGH Addict 3500 =
    MPGHiean 4000 =
    MPGH Knight 4500 =
    MPGH Lord 5000 =
    MPGH Champion 5500 =
    MPGH King 6000 =
    MPGH Legend 6500 =
    MPGH God 7000 =
    MPGH God II 7500 =
    MPGH God III 8000 =
    MPGH God IV 8500 =
    MPGH God V 9000 =
    Arun's Slave 9500 =
    Dave's Slave 10000 =

  6. #35
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Quote Originally Posted by speedforyou View Post
    ive been trying to figur this out man none will share it

    ok so i have a opk and telekill address then i would add them like that
    do you guys have a address finder??? thats not detected
    1st off, OPK and telekill aren't addresses. Second, you should search before you post.

  7. #36
    swatfx's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    659
    Reputation
    20
    Thanks
    108
    My Mood
    Mellow
    1) isn't unlimited respawn patched? Last time I tested the respawn thing shows up but u don't spawn

    Quote Originally Posted by Crash View Post
    If you had read the post instead of copying and pasting the code you see, you would know what it is for.

    @DBag : That is an example for one of the five addresses but here is a small example of how to make it enable/disable with a hotkey :

    Code:
    //Global
    bool recoil = false;
    
    //In your infinite loop
    if(GetAsyncKeyState(VK_F9)&1){
    
        recoil = !recoil;
        if(recoil){
            memcpy((LPVOID)0x3741B550, "\x90\x90\x90", 3);
    	memcpy((LPVOID)0x3740BAA9, "\x90\x90\x90", 3);
    	memcpy((LPVOID)0x3741B564, "\x90\x90\x90", 3);
    	memcpy((LPVOID)0x3741B567, "\x90\x90\x90", 3);
    	memcpy((LPVOID)0x3741B570, "\x90\x90\x90", 3);
        } else {
            memcpy((LPVOID)0x3741B550, "\xD8\x66\x54 ", 3);
    	memcpy((LPVOID)0x3740BAA9, "\xD9\x46\x54", 3);
    	memcpy((LPVOID)0x3741B564, "\xD9\x5E\x54", 3);
    	memcpy((LPVOID)0x3741B567, "\xD9\x46\x48", 3);
    	memcpy((LPVOID)0x3741B570, "\xD9\x5E\x48", 3);
        }
    
    }
    I didn't even know u could NOP without virtual protect

  8. #37
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Quote Originally Posted by swatfx View Post
    1) isn't unlimited respawn patched? Last time I tested the respawn thing shows up but u don't spawn



    I didn't even know u could NOP without virtual protect
    Seemed to work for me.

  9. #38
    Krypton1x's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Tacoma
    Posts
    13,296
    Reputation
    1184
    Thanks
    1,196
    My Mood
    Brooding

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

    noleash (08-14-2010)

  11. #39
    noleash's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Under your bed!
    Posts
    146
    Reputation
    10
    Thanks
    81
    My Mood
    Flirty
    Quote Originally Posted by μ View Post
    Everyone is gonna say this: learn C++ first.
    Quote Originally Posted by deathninjak0 View Post
    Learn C++ before you code game hacks.
    Quote Originally Posted by speedforyou View Post
    learn c++ first then goto cn's tut
    cn's tut
    Learn C++ First!

    Read Books!!




  12. #40
    DBag4Life69's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    290
    Reputation
    13
    Thanks
    59
    My Mood
    Twisted
    Quote Originally Posted by Vital View Post
    Damn, apparently you haven't been payin attention to this thread. lol
    I already have like 100 tutorials on C++ and C and C# and all them, but I am trying to learn about the PTC and the addies and how to impliment them into a C++ .dll solution so that I can learn how to make my own hacks. lol
    That REALLY doesn't help me.

  13. #41
    IcySeal's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    300
    Reputation
    34
    Thanks
    148
    My Mood
    Amused
    Quote Originally Posted by DBag4Life69 View Post
    Damn, apparently you haven't been payin attention to this thread. lol
    I already have like 100 tutorials on C++ and C and C# and all them, but I am trying to learn about the PTC and the addies and how to impliment them into a C++ .dll solution so that I can learn how to make my own hacks. lol
    That REALLY doesn't help me.
    Well what do you find most confusing, or that you least understand in your list?

  14. #42
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy
    Question answered.
    /Closed
    -Rest in peace leechers-

    Your PM box is 100% full.

Page 3 of 3 FirstFirst 123

Similar Threads

  1. [Solved] Help me i will learn how to do cf hacks pls
    By deniz617 in forum CrossFire Help
    Replies: 3
    Last Post: 08-06-2011, 05:32 PM
  2. Person Willing to Learn
    By RagedYet in forum Combat Arms Coding Help & Discussion
    Replies: 21
    Last Post: 08-03-2011, 09:45 AM
  3. [Release] I will join learn in down box!!!
    By sanderva4 in forum WarRock Clan Recruitment & Advertising
    Replies: 1
    Last Post: 07-06-2010, 06:35 PM
  4. Replies: 5
    Last Post: 06-15-2009, 12:13 AM
  5. Willing To Learn
    By Dewd In The Newd in forum Gate To Heaven Hacks
    Replies: 13
    Last Post: 09-27-2007, 08:40 AM