Page 1 of 3 123 LastLast
Results 1 to 15 of 39

Hybrid View

  1. #1
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253

    [ TUT ] DrawBox Auto ReSize...

    Ok Guys This Is How To Make You DrawBox Auto ReSize When You Close The Groups In Hans Menu And My Combined Hans And Gellins Base


    This Is My Farwell Gift Too You Guys As Im Leaving Mpgh Too Learn Alot Of Diffent Shit On My Learning Adventure...Enjoy!!!

    Hans Default Menu
    Well In Hans Default Menu Its All Already There So Just Put tothieght In The DrawBox Like So..

    void D3DMenu::AddItem(char *txt, int *var, char **opt, int maxval, int typ)
    {
    if (noitems>=(maxitems-1)) return;
    MENU[noitems]->typ=typ;
    MENU[noitems]->txt=txt;
    MENU[noitems]->opt=opt;
    MENU[noitems]->var=var;
    MENU[noitems]->maxval=maxval;
    noitems++;
    totheight=(noitems*height)+titleheight;
    }

    DrawBox( 20,200,170,tothieght,D3D color,pDevice);

    My Hans And Gellin Combined Base
    In Menu.cpp In The Global Make A New Int..ex. int whatever;
    Then In Menu.h Add This extern int whatever;
    Now Go Back Too Menu.cpp And Find The AddItem Function...

    void cMenu::AddItem(char *txt, char **opt, int *var, int maxvalue, int typ)
    {
    MENU[Mmax].typ=typ;
    MENU[Mmax].txt=txt;
    MENU[Mmax].opt=opt;
    MENU[Mmax].var=var;
    MENU[Mmax].maxvalue=maxvalue;
    Mmax++;
    whatever=(Mmax*Mysize);
    }

    DrawBox(20,200,170,whatever,D3D color,pDevice);

    There You Go Your Drawboxes Will Auto Resize..

    Bye Everyone

  2. The Following 10 Users Say Thank You to whit For This Useful Post:

    ★Rusty (09-17-2010),azerty54 (09-15-2010),deathninjak0 (09-09-2010),inliner (09-09-2010),lolipop1113 (09-15-2010),MEkhi2 (12-02-2010),mo3ad001 (09-09-2010),NewCories (03-02-2011),Nubzgetkillz (11-30-2010),o-o (09-09-2010)

  3. #2
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    Cool. Good for Noobs who dun know how to add :L

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

    whit (09-09-2010)

  5. #3
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Quote Originally Posted by Stephen View Post
    Cool. Good for Noobs who dun know how to add :L
    Tried To Make No0b Friendly...

  6. #4
    QQiswhyihack's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    If i told you, i'd have to kill you :)
    Posts
    134
    Reputation
    10
    Thanks
    61
    My Mood
    Asleep
    Quote Originally Posted by Stephen View Post
    Cool. Good for Noobs who dun know how to add :L
    Hey Stefan, You might be an advanced hacker, whilst me im a noob and trying to learn..
    We all need to start somewhere meaning we were all once noobs, so you cant really go around critizing just because ur pro now.
    Please, dont help at all in confidence.
    Thanks to this mini tut.
    RespectsList
    MrSkaFighter
    Spook
    CoderNever

    Thank You for This sig, Peter/Vengeance.

    Uploaded with ImageShack.us
    Respect Aint Easy to earn, helpful people are always loyal.
    Goals
    Get 50 post []
    get 100 post []
    get 150 post []
    get 200 post []
    Make a Auto-On Hack []
    Release My first hack []
    Make a hotKey hack []
    Make a menu-hack []
    Hack, not get called a hacker []
    Hack, get QQed at and lol []
    Be known on MPGH [] -Unknown.
    Yes i have a long goal list, but a long goal list is someone who wants to accomplish alot of things..

  7. #5
    .L33T's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    80
    Reputation
    9
    Thanks
    49
    My Mood
    Cool
    Quote Originally Posted by QQiswhyihack View Post
    Hey Stefan, You might be an advanced hacker, whilst me im a noob and trying to learn..
    We all need to start somewhere meaning we were all once noobs, so you cant really go around critizing just because ur pro now.
    Please, dont help at all in confidence.
    Thanks to this mini tut.
    You have bumped a "3 weeks old" topic. /

  8. #6
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    Quote Originally Posted by QQiswhyihack View Post
    Hey Stefan, You might be an advanced hacker, whilst me im a noob and trying to learn..
    We all need to start somewhere meaning we were all once noobs, so you cant really go around critizing just because ur pro now.
    Please, dont help at all in confidence.
    Thanks to this mini tut.
    * Stephen

    * Mediocre Hacker

    * I only Critizise when people Ask stupid shit.

    Big Ass Bump, Learn the rules 1st.

  9. #7
    DBag4Life69's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    290
    Reputation
    13
    Thanks
    59
    My Mood
    Twisted
    Quote Originally Posted by whit View Post
    Ok Guys This Is How To Make You DrawBox Auto ReSize When You Close The Groups In Hans Menu And My Combined Hans And Gellins Base


    This Is My Farwell Gift Too You Guys As Im Leaving Mpgh Too Learn Alot Of Diffent Shit On My Learning Adventure...Enjoy!!!

    Hans Default Menu
    Well In Hans Default Menu Its All Already There So Just Put tothieght In The DrawBox Like So..

    void D3DMenu::AddItem(char *txt, int *var, char **opt, int maxval, int typ)
    {
    if (noitems>=(maxitems-1)) return;
    MENU[noitems]->typ=typ;
    MENU[noitems]->txt=txt;
    MENU[noitems]->opt=opt;
    MENU[noitems]->var=var;
    MENU[noitems]->maxval=maxval;
    noitems++;
    totheight=(noitems*height)+titleheight;
    }

    DrawBox( 20,200,170,tothieght,D3D color,pDevice);

    My Hans And Gellin Combined Base
    In Menu.cpp In The Global Make A New Int..ex. int whatever;
    Then In Menu.h Add This extern int whatever;
    Now Go Back Too Menu.cpp And Find The AddItem Function...

    void cMenu::AddItem(char *txt, char **opt, int *var, int maxvalue, int typ)
    {
    MENU[Mmax].typ=typ;
    MENU[Mmax].txt=txt;
    MENU[Mmax].opt=opt;
    MENU[Mmax].var=var;
    MENU[Mmax].maxvalue=maxvalue;
    Mmax++;
    whatever=(Mmax*Mysize);
    }

    DrawBox(20,200,170,whatever,D3D color,pDevice);

    There You Go Your Drawboxes Will Auto Resize..

    Bye Everyone
    Damn, bro.
    Why you leaving us, man?
    That's entirely horrible, cuz you're a very good coder, and you're just dipping.

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

    whit (09-09-2010)

  11. #8
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Quote Originally Posted by DBag4Life69 View Post


    Damn, bro.
    Why you leaving us, man?
    That's entirely horrible, cuz you're a very good coder, and you're just dipping.
    Not As Good As Most People Here (Crash,Seal,Stephen,Blood)..
    Ime Leaving For A Godd Reason Too Learn...Ill Be Back
    Might Not Be Tomorrow But Trust Me..

  12. The Following User Says Thank You to whit For This Useful Post:

    Stephen (09-09-2010)

  13. #9
    UGodly's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    https://www.mpgh.net/forum/members/645501-ugodly.html
    Posts
    1,234
    Reputation
    18
    Thanks
    160
    My Mood
    Yeehaw
    Quote Originally Posted by whit View Post


    Not As Good As Most People Here (Crash,Seal,Stephen,Blood)..
    Ime Leaving For A Godd Reason Too Learn...Ill Be Back
    Might Not Be Tomorrow But Trust Me..
    are you leaving cuz you trying to learn something?

  14. #10
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Quote Originally Posted by UGodly View Post
    are you leaving cuz you trying to learn something?
    Not Really Leaving But Goin Too Be Inactive..
    Yea Im Trying To Learn ASM And Reversing And All That Good Stuff...

  15. #11
    markoj's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    s
    Posts
    1,064
    Reputation
    60
    Thanks
    407
    My Mood
    Bored
    Quote Originally Posted by whit View Post


    Not Really Leaving But Goin Too Be Inactive..
    Yea Im Trying To Learn ASM And Reversing And All That Good Stuff...
    Go to college ho
    Dont ban me

  16. #12
    HL-SDK's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    56
    Reputation
    11
    Thanks
    26
    Quote Originally Posted by whit View Post


    Not Really Leaving But Goin Too Be Inactive..
    Yea Im Trying To Learn ASM And Reversing And All That Good Stuff...
    It is a shame that you feel you will not be able to learn it here.

    All you have to do is spend time in IDA and you'll just pick it up.
    I'll offer to give you a hand if you'd like.

  17. The Following User Says Thank You to HL-SDK For This Useful Post:

    whit (10-11-2010)

  18. #13
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    Ima miss you bro.

    Peace.

  19. The Following User Says Thank You to Stephen For This Useful Post:

    whit (09-09-2010)

  20. #14
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    Byeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee.

  21. The Following User Says Thank You to Stephen For This Useful Post:

    whit (09-09-2010)

  22. #15
    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
    Gonna Miss You dude and answer me PM

    @topic Thanks dude
    [IMG]https://i423.photobucke*****m/albums/pp312/LizMLsinatra/hh-1.png[/IMG]
    Happy Hanukkah For All Of MPGH !


    The Real Life Are Better Then A Game !


    Song :[YOUTUBE]vgKBOkvO5N0&feature=player_embedded[/YOUTUBE]
    Best Friends :

    Hax4Life!

    Solify

    [MPGH]Drake`

    Respect Them Or I'll Kill You ...



Page 1 of 3 123 LastLast

Similar Threads

  1. [TUT]How to make a simple Auto Clicker!
    By Takari in forum Programming Tutorials
    Replies: 24
    Last Post: 09-20-2010, 07:28 PM
  2. WPS Auto-Click -- AutoIt 3 SOURCE + TUT
    By Grim in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 21
    Last Post: 12-14-2009, 07:27 PM
  3. [Tut][Visual Basic][Snippet][C&P] Resizing a Window to a photosize
    By CoderNever in forum Visual Basic Programming
    Replies: 4
    Last Post: 11-17-2009, 08:26 AM
  4. [Release] ddd555 pub working without auto install, + tut
    By mariofan901 in forum Combat Arms Hacks & Cheats
    Replies: 65
    Last Post: 09-18-2009, 10:37 PM
  5. [TUT] How to make an auto typer
    By SkyReborn in forum Visual Basic Programming
    Replies: 5
    Last Post: 09-06-2009, 11:26 PM