Results 1 to 10 of 10
  1. #1
    Fatal.Error's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    9
    My Mood
    Relaxed

    Exclamation Tips how to make .dll - Help

    Hello,

    I saw many 'Addies' or something on the forums, like this:

    No Grenade Damage / 1 Hit K.O.

    0x07F8 => "AmmoDamage"

    Shot Gun Spread

    0x0834 => "ShotsPerAmmo"

    No Weapon Weight

    0x20D0 => "MoveSpeedPenalty"
    0x20D4 => "ZoomInMoveSpeedPenalty"
    0x20D8 => "MovePenaltyForDelayFire"
    But I don't exactly know what they mean, I think they're for making
    .dll hacks. Can someone explain me what this means and how I can
    make this further in .dll with Visual C++?

  2. #2
    G.Andrew's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    I HATE YUZZ
    Posts
    605
    Reputation
    37
    Thanks
    29
    My Mood
    Fine
    As you see this is the addy for 1 HIT Kill,Shotgun Spread and No wep weight.

    If you put this on Visual Studio and add some fuctions, you will have a hack.
    To make a .dll file Download Visual Studio and create a new form with .dll
    I'm on Crossfire and GFX Section. If you need some help dont doubt to PM/VM me, so i can gladly help you

    J.ND
    Jazk never dies.

  3. #3
    Fatal.Error's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    9
    My Mood
    Relaxed
    Quote Originally Posted by G.Andrew View Post
    As you see this is the addy for 1 HIT Kill,Shotgun Spread and No wep weight.

    If you put this on Visual Studio and add some fuctions, you will have a hack.
    To make a .dll file Download Visual Studio and create a new form with .dll
    Thanks for your reply, so I must make a new blank .dll file and only put
    that in and compile, inject and done? Can you please explain a bit better
    in steps?

    Thanks.

  4. #4
    G.Andrew's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    I HATE YUZZ
    Posts
    605
    Reputation
    37
    Thanks
    29
    My Mood
    Fine
    Quote Originally Posted by Fatal.Error View Post
    Thanks for your reply, so I must make a new blank .dll file and only put
    that in and compile, inject and done? Can you please explain a bit better
    in steps?

    Thanks.
    New blank .dll
    Paste this Addys.
    Then add the functions
    Example: //Superjump
    if(GetAsyncKeyState(VK_CONTROL) &1)
    {
    *(float*)(dwPlayerPtr+0x00102D8) = 3000;
    }
    //End Superjump
    (THIS IS FOR WarRock)
    Then you need to get the bypass of your hack (The most hard part also called as detouring.)
    When you have all this done, save it and inject it.
    I'm on Crossfire and GFX Section. If you need some help dont doubt to PM/VM me, so i can gladly help you

    J.ND
    Jazk never dies.

  5. #5
    Fatal.Error's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    9
    My Mood
    Relaxed
    Quote Originally Posted by G.Andrew View Post


    New blank .dll
    Paste this Addys.
    Then add the functions
    Example: //Superjump
    if(GetAsyncKeyState(VK_CONTROL) &1)
    {
    *(float*)(dwPlayerPtr+0x00102D8) = 3000;
    }
    //End Superjump
    (THIS IS FOR WarRock)
    Then you need to get the bypass of your hack (The most hard part also called as detouring.)
    When you have all this done, save it and inject it.
    Hmmm...
    Do you know where I can get tutorials for this, because I'm pretty new
    to hacking and bypassing etc.

    Thanks.

  6. #6
    G.Andrew's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    I HATE YUZZ
    Posts
    605
    Reputation
    37
    Thanks
    29
    My Mood
    Fine
    I'm on Crossfire and GFX Section. If you need some help dont doubt to PM/VM me, so i can gladly help you

    J.ND
    Jazk never dies.

  7. #7
    Fatal.Error's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    9
    My Mood
    Relaxed
    Hmm.. I can program in C++ already but I mean how can I learn making Bypass for Crossfire etc? Thanks BTW..

  8. #8
    TrollerCoaster's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    I am a fish
    Posts
    633
    Reputation
    61
    Thanks
    800
    These are up-to-date addies, but you seem to be missing your base weapon addy. You will need that first, and find out the simple pattern if you want to apply it on every weapon

  9. #9
    Fatal.Error's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    9
    My Mood
    Relaxed
    Quote Originally Posted by TrollerCoaster View Post
    These are up-to-date addies, but you seem to be missing your base weapon addy. You will need that first, and find out the simple pattern if you want to apply it on every weapon
    Hmm.. I see, but do you know where I can get tutorial for Crossfire?
    I can C++, but I must learn how to make bypass and the weapon thing
    what you explained..

    Thanks.

  10. #10
    Gab's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,716
    Reputation
    1755
    Thanks
    1,543
    Learn basic hacking coding and come back here after. You can't make hacks if you don't even know what's an addy.

    ◄ Closed ►

Tags for this Thread