Thread: MY first hack

Page 1 of 2 12 LastLast
Results 1 to 15 of 16

Hybrid View

  1. #1
    Nig12's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    0
    My Mood
    Devilish

    MY first hack

    hi guys my first hack is almost here *yaaaay but i need help with no recoil and no spread. The features it will contain will be

    Chamms (red,green)
    no recoil
    no spread
    super jump
    wire frame
    fullbright
    instant reload
    fly ( i dont know ow to make you no stop going up so use at own risk)

    also if sombody is going to help me it will be a menu hack if not it will be numbpad

  2. #2
    iSkyFinity's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Elk Grove, California
    Posts
    1,197
    Reputation
    12
    Thanks
    113
    My Mood
    Bored
    Ehrmmm... wrong section? THis section is only for releases i suppose x:




    Vindictus Section of MPGH
    I'm an ex-player and hacker of Mabinogi, Need help? PM or VM will do it.
    My Contacts:
    Facebook | YouTube | Tumblr | Twitter


  3. #3
    Grim's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    5,359
    Reputation
    112
    Thanks
    3,786
    My Mood
    Cynical
    /moved to hack source code section, since you're asking for help with developing a hack.
    Want to see my programs?
    \/ CLICK IT BITCHES \/

  4. #4
    Spookerzz's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    4,647
    Reputation
    26
    Thanks
    572
    Your getting chams for first hack?

    Paste your source
    I'm back.

  5. #5
    _-Blazin-_'s Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Australia
    Posts
    428
    Reputation
    10
    Thanks
    28
    My Mood
    Hot
    I think he's bluffing :/

  6. #6
    Spookerzz's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    4,647
    Reputation
    26
    Thanks
    572
    That's my first guess or C & P
    I'm back.

  7. #7
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty
    Quote Originally Posted by ToxinJr View Post
    That's my first guess or C & P
    you cant C&P chams. lol

  8. #8
    mwb1234's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    460
    Reputation
    7
    Thanks
    65
    Quote Originally Posted by ac1d_buRn View Post


    you cant C&P chams. lol
    You can but it might not work so well :O

  9. #9
    Allan990's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    300
    Reputation
    11
    Thanks
    39
    My Mood
    Bored
    Dude, I think everyone has went through this stage. Its called C++ and VB coding. That simple (not really but you get what I mean. )
    Goodbye and have a pleasant tomorrow.

  10. #10
    Duc's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    In my mind
    Posts
    238
    Reputation
    11
    Thanks
    20
    My Mood
    Amused
    nice if thats your first hack


    my list /
    _____________
    Make 100 posts
    get thanked
    get a good comp
    learn c++
    make a hack
    make a injector
    get thanked by obama
    get raged at for this list

  11. #11
    Stevenom's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Summoner's Rift
    Posts
    17,743
    Reputation
    1087
    Thanks
    1,917
    My Mood
    Doubtful
    Just because they are low posters doesn't mean they can't code.

  12. #12
    Fabulous1's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Phoenix
    Posts
    808
    Reputation
    10
    Thanks
    60
    My Mood
    Brooding
    Honestly if you get these features to work ill use your hack more then god's
    My mod, ill make more?

    Rapid Fire Famas

  13. #13
    dethharmonic15's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    36
    Reputation
    4
    Thanks
    7
    Instant Reload

    Code:
    0x37451DC4          //6 NOPs
    0x37451D6E          //6 NOPs

    NoRecoil
    Code:
    0x3740CEE9   //  3 NOPs
    0x3740CEFD   //  3 NOPs
    0x3740CF09   //  3 NOPs
    0x3740CEF8   //  3 NOPs

    NoSpread
    Code:
                   PushToConsole("MinPerturb 0.000000");
                   PushToConsole("FirePerturb 0.000000");
                   PushToConsole("FireDuckPertub 0.000000");
                   PushToConsole("WalkPerturb 0.000000");
                   PushToConsole("RunPerturb 0.000000");
                   PushToConsole("PerturbIncSpeed 0.000000");
                   PushToConsole("PerturbDecSpeed 0.000000");
                   PushToConsole("ZoomedPerturbIncSpeed 0.000000");
                   PushToConsole("ZoomedPerturbDecSpeed 0.000000");
                   PushToConsole("ZoomedMaxPerturb 0.000000");

    FlyHack

    Code:
      PushToConsole( "PlayerGravity -680" );

    Hover
    Code:
         PushToConsole( "PlayerGravity 0" );

    Normal

    Code:
          PushToConsole( "PlayerGravity 800" );
    SuperJump

    Code:
     PushToConsole("JumpVel 450.000000");

    WireFrame

    Code:
    PushToConsole("WireFrame 1");

    NoFog

    Code:
         PushToConsole("FogEnable 0");

    Sway Removal

    Code:
     PushToConsole("WeaponSway 0");

    NX Chams

    Code:
    PushToConsole("StelkModel_Stencil 1");


    FullBright

    Code:
    PushToConsole("FullBright 1");


    Just, kinda play with the values for a few of the PushToConsole commands, then adjust them to your liking.

    I could add a few more things, but those are just kinda the features you were aiming for.
    Last edited by dethharmonic15; 06-20-2010 at 06:56 PM.

  14. The Following User Says Thank You to dethharmonic15 For This Useful Post:

    rocker340 (06-20-2010)

  15. #14
    Spookerzz's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    4,647
    Reputation
    26
    Thanks
    572
    We're not saying that.

    We don't trust him because of his low posts.

    Imagine someone just joined first post released a free vip hack with fake virus scans [But you don't know this]

    Would you trust the member?
    I'm back.

  16. #15
    dethharmonic15's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    36
    Reputation
    4
    Thanks
    7
    Quote Originally Posted by ToxinJr View Post
    We're not saying that.

    We don't trust him because of his low posts.

    Imagine someone just joined first post released a free vip hack with fake virus scans [But you don't know this]

    Would you trust the member?


    I personally wouldn't download a vip hack, or any hack from a single or double digit poster..

    But then again, i'm still learning how to code! When i see myself fit to release hacks, i will make a new account to have a fresh start.

Page 1 of 2 12 LastLast

Similar Threads

  1. My First Hack {release}
    By purenoob134 in forum WarRock - International Hacks
    Replies: 20
    Last Post: 07-05-2007, 09:02 PM
  2. My first hack
    By tednugent in forum WarRock - International Hacks
    Replies: 3
    Last Post: 06-26-2007, 05:59 AM
  3. My FIRST HACK! (GPS)
    By frankf123 in forum WarRock - International Hacks
    Replies: 4
    Last Post: 06-26-2007, 05:34 AM
  4. Shotgun & Stamina Hack [My first hack]
    By ltkort213 in forum WarRock - International Hacks
    Replies: 21
    Last Post: 06-10-2007, 01:00 PM
  5. [release]my First Hack
    By yoos007 in forum WarRock - International Hacks
    Replies: 7
    Last Post: 05-13-2007, 03:39 AM