Results 1 to 15 of 15
  1. #1
    taylan's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In your Sisters Bed, Germany
    Posts
    240
    Reputation
    18
    Thanks
    258
    My Mood
    Happy

    Question Source Code for No Menu ...

    Hey Guys

    I want to add unlimmited Ammo to my no menu hack.

    And now i some questions about that....

    Question 1 : Is it possible to add it into a No Menu hack
    Question 2 : Does anyone has the currently addy for unlimmited ammo ?

    thanks for your share ....

    [SRY FOR MY BAD ENGLISH]

    Good Night , im going sleep now ... see u mornig guys

    Know how to create a No Menu Hack= Done
    Know how to make a Injector = Done
    Know how to make a D3D Menu Hack = Done


    Hate me, Hit me, Hurt me, Destroy me, but NEVER say that you love me

    Xfire : taylan14
    Skype: taylann13
    Msn : taylan-11@hotmail.de[/EMAIL]

    We are unable to come to the phone right now. At the tone, please leave your name, number, and Master Card, Visa, or American Express account number and we'll get back to, pending credit approval.

  2. #2
    Ikke0148's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    124
    Reputation
    15
    Thanks
    36
    i tought you know basics of C++ huh? xD
    Seems like not, yes to both, its possible

  3. #3
    taylan's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In your Sisters Bed, Germany
    Posts
    240
    Reputation
    18
    Thanks
    258
    My Mood
    Happy
    does anyone have the source code plsss

    Know how to create a No Menu Hack= Done
    Know how to make a Injector = Done
    Know how to make a D3D Menu Hack = Done


    Hate me, Hit me, Hurt me, Destroy me, but NEVER say that you love me

    Xfire : taylan14
    Skype: taylann13
    Msn : taylan-11@hotmail.de[/EMAIL]

    We are unable to come to the phone right now. At the tone, please leave your name, number, and Master Card, Visa, or American Express account number and we'll get back to, pending credit approval.

  4. #4
    icebox2010's Avatar
    Join Date
    Mar 2010
    Gender
    female
    Posts
    53
    Reputation
    10
    Thanks
    38
    My Mood
    Brooding
    You need first the bypass...

  5. #5
    Zithium's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    UK
    Posts
    2,996
    Reputation
    103
    Thanks
    438
    My Mood
    Psychedelic
    I'm pretty sure i've seen the unlimited ammo function being posted a few times...

    Yes, you can add it to a nomenu hack... But I can't find the addy for you, i've been trying to find it myself :P
    "Depending on the context, I may or may not enjoy getting stoned to death" - zιтнιυм™

    Ex WarRock Minion Force



  6. #6
    TheCamels8's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Israel :D
    Posts
    2,945
    Reputation
    174
    Thanks
    1,376
    My Mood
    Cheeky
    Hey taylan
    Welcome back ^^

    Hmm the addy is:
    UnlAmmo - 0xBE3100

    The bytes are:
    UnlAmmo - A1 00 31 BE 00

    The source is:
    *(int*)Adr_UnlAmmo = 0;

    Have fun

  7. The Following 2 Users Say Thank You to TheCamels8 For This Useful Post:

    Mike Shinoda (12-07-2010),Zithium (12-07-2010)

  8. #7
    taylan's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In your Sisters Bed, Germany
    Posts
    240
    Reputation
    18
    Thanks
    258
    My Mood
    Happy
    does anyone has the source code ???

    Know how to create a No Menu Hack= Done
    Know how to make a Injector = Done
    Know how to make a D3D Menu Hack = Done


    Hate me, Hit me, Hurt me, Destroy me, but NEVER say that you love me

    Xfire : taylan14
    Skype: taylann13
    Msn : taylan-11@hotmail.de[/EMAIL]

    We are unable to come to the phone right now. At the tone, please leave your name, number, and Master Card, Visa, or American Express account number and we'll get back to, pending credit approval.

  9. #8
    Zithium's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    UK
    Posts
    2,996
    Reputation
    103
    Thanks
    438
    My Mood
    Psychedelic
    Quote Originally Posted by taylan View Post
    does anyone has the source code ???
    TheCamels8 already posted the source...

    Code:
    *(int*)Adr_UnlAmmo = 0;
    "Depending on the context, I may or may not enjoy getting stoned to death" - zιтнιυм™

    Ex WarRock Minion Force



  10. #9
    TGH Zero.'s Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Behind you!
    Posts
    854
    Reputation
    35
    Thanks
    628
    My Mood
    Cool
    yeap, it can be made on nomenu, but 1 question from me: how to turn it off? i put the unlimitedammo to 1 ? Idk, im so newb here xD


  11. #10
    TheCamels8's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Israel :D
    Posts
    2,945
    Reputation
    174
    Thanks
    1,376
    My Mood
    Cheeky
    This is the full code if you are a noob

    Code:
    void UnlAmmo()
    {
    *(int*)Adr_UnlAmmo = 0;
    }
    And if you want to add a hotkey:

    Code:
    void UnlAmmo()
    {
    if(GetAsyncKeyState(VK_"BlaBla") &1) // Change "BlaBla" to your hotkey
    {
    *(int*)Adr_UnlAmmo = 0;
    }
    }


    For TGH Zero.

    UnlAmmo off:

    Code:
    void UnlAmmo2()
    {
    if(GetAsyncKeyState(VK_"BlaBla2") &1)
    {
    *(int*)Adr_UnlAmmo = 1;
    }
    }
    *For no menu you need bypass..
    Last edited by TheCamels8; 12-07-2010 at 07:07 AM.

  12. #11
    taylan's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In your Sisters Bed, Germany
    Posts
    240
    Reputation
    18
    Thanks
    258
    My Mood
    Happy
    hey thecamels .....

    Where do u know me .... ?
    Code:
    Hey taylan
    Welcome back ^^
    .... i think i know u too but iforgott all the users here at mpgh because i was for a long time not here at this forum ...

    Know how to create a No Menu Hack= Done
    Know how to make a Injector = Done
    Know how to make a D3D Menu Hack = Done


    Hate me, Hit me, Hurt me, Destroy me, but NEVER say that you love me

    Xfire : taylan14
    Skype: taylann13
    Msn : taylan-11@hotmail.de[/EMAIL]

    We are unable to come to the phone right now. At the tone, please leave your name, number, and Master Card, Visa, or American Express account number and we'll get back to, pending credit approval.

  13. #12
    TGH Zero.'s Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Behind you!
    Posts
    854
    Reputation
    35
    Thanks
    628
    My Mood
    Cool
    Quote Originally Posted by thecamels8 View Post
    This is the full code if you are a noob

    Code:
    void UnlAmmo()
    {
    *(int*)Adr_UnlAmmo = 0;
    }
    And if you want to add a hotkey:

    Code:
    void UnlAmmo()
    {
    if(GetAsyncKeyState(VK_"BlaBla") &1) // Change "BlaBla" to your hotkey
    {
    *(int*)Adr_UnlAmmo = 0;
    }
    }


    For TGH Zero.

    UnlAmmo off:

    Code:
    void UnlAmmo2()
    {
    if(GetAsyncKeyState(VK_"BlaBla2") &1)
    {
    *(int*)Adr_UnlAmmo = 1;
    }
    }
    *For no menu you need bypass..
    Thanks ur the best (adding unlimitedoff to next hack xD)


  14. #13
    TheCamels8's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Israel :D
    Posts
    2,945
    Reputation
    174
    Thanks
    1,376
    My Mood
    Cheeky
    Quote Originally Posted by taylan View Post
    hey thecamels .....

    Where do u know me .... ?
    Code:
    Hey taylan
    Welcome back ^^
    .... i think i know u too but iforgott all the users here at mpgh because i was for a long time not here at this forum ...
    You left mpgh when i came, so i knew you a little bit

    Quote Originally Posted by TGH Zero. View Post
    Thanks ur the best (adding unlimitedoff to next hack xD)
    I'm not the best

  15. #14
    taylan's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In your Sisters Bed, Germany
    Posts
    240
    Reputation
    18
    Thanks
    258
    My Mood
    Happy
    Okay , thanks for everyone .....

    THREAD CLOSED !

    Know how to create a No Menu Hack= Done
    Know how to make a Injector = Done
    Know how to make a D3D Menu Hack = Done


    Hate me, Hit me, Hurt me, Destroy me, but NEVER say that you love me

    Xfire : taylan14
    Skype: taylann13
    Msn : taylan-11@hotmail.de[/EMAIL]

    We are unable to come to the phone right now. At the tone, please leave your name, number, and Master Card, Visa, or American Express account number and we'll get back to, pending credit approval.

  16. #15
    lilcreeplil's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Location
    manila
    Posts
    21
    Reputation
    10
    Thanks
    0
    how to add bypass?