Results 1 to 15 of 15
  1. #1
    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

    Help|Menu distroy after 1 game

    Hey guys , finnaly I have my own menu and I've error after 1 game the menu go (not totally) I can turn hacks on or off but I don't see where am I ...


    There is way to fix it ? thanks for help! (I'm using Hans+Gellins base by whit)
    [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 ...



  2. The Following User Says Thank You to o-o For This Useful Post:

    Leevim (09-18-2010)

  3. #2
    mo3ad001's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    842
    Reputation
    53
    Thanks
    797
    My Mood
    Busy
    whit base doesn't has like this Problem
    but to fix it
    i think you need to create new font and Refresh the menu and show it again
    show menu not by insert key it's
    this Example don't work with you
    Menu.show
    Menu.ShowItems
    Menu.show(char ,* Pfont....)

    H A X O
    Email : Noobmem@hotmail.com


  4. #3
    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
    Quote Originally Posted by mo3ad001 View Post
    whit base doesn't has like this Problem
    but to fix it
    i think you need to create new font and Refresh the menu and show it again
    show menu not by insert key it's
    this Example don't work with you
    Menu.show
    Menu.ShowItems
    Menu.show(char ,* Pfont....)
    I don't understand you 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 ...



  5. #4
    mo3ad001's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    842
    Reputation
    53
    Thanks
    797
    My Mood
    Busy
    Quote Originally Posted by o-o View Post
    I don't understand you dude ...
    like this man
    [php]

    if (GetAsyncKeyState(VK_DELETE)&1){
    //Create new Font
    D3DXCreateFontW(pDevice, 15, 0, DEFAULT_CHARSET, OUT_TT_ONLY_PRECIS, PROOF_QUALITY, DEFAULT_PITCH | FF_DONTCARE, "Comic Sans MS", &Directx.pFont );

    Menu.MenuShow(menux,menuy,Directx.pFont);//show menu
    Menu.MenuNav();
    }
    [/php]
    just Copy and Paste last thing into RenderFrame....(Base.cpp)

    and use Delete key to see the Menu again
    if not work Tell me
    Last edited by mo3ad001; 09-04-2010 at 09:23 PM.

    H A X O
    Email : Noobmem@hotmail.com


  6. The Following User Says Thank You to mo3ad001 For This Useful Post:

    o-o (09-05-2010)

  7. #5
    coogle007's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    267
    Reputation
    18
    Thanks
    297
    My Mood
    Aggressive
    Add a wile in renderframe and post the code of mo3ad

  8. #6
    mo3ad001's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    842
    Reputation
    53
    Thanks
    797
    My Mood
    Busy
    Quote Originally Posted by coogle007 View Post
    Add a wile in renderframe and post the code of mo3ad
    did you use it in 0.4-0.5 menu hack !of you
    because you said Fixed this Problem

    H A X O
    Email : Noobmem@hotmail.com


  9. #7
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Probably not resetting your font correctly... or if you're using ID3DXFont then use another font class.

  10. #8
    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
    Yes i'm using ID3D3XFont .. what font I have to use ?
    [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 ...



  11. #9
    inliner's Avatar
    Join Date
    Jun 2008
    Gender
    male
    Location
    d
    Posts
    64
    Reputation
    10
    Thanks
    11
    Stopping your font from disappearing is actually very simple.

    At the top of your code, after your #includes and #defines, add a line:

    Code:

    Code:
    LPDIRECT3DDEVICE9 g_pDevice = 0;
    You can change g_pDevice to whatever you want.

    Next, in your hooked Present/Endscene, add an if block like this:

    Code:

    Code:
    if (g_pDevice != pDevice)
    {
        g_pDevice = pDevice;
        try
        {
            if (pFont != 0)
                pFont->Release();
        } catch (...) {}
        pFont = 0;
        D3DXCreateFontA(Do whatever you normally do);
    }
    The try/catch is VERY important. If you dont have it you will probably crash CA. What it does it takes all those errors that pop up like referenced memory and stops them from showing.


    i dont take credits
    full credits to DJ UN1V3r5aL
    from another site
    and with that you dont even need to press a button

  12. #10
    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
    Mo3ad way works but there's litttttttle bugs Thanks all /close req
    Last edited by o-o; 09-05-2010 at 06:23 AM.
    [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 ...



  13. #11
    inliner's Avatar
    Join Date
    Jun 2008
    Gender
    male
    Location
    d
    Posts
    64
    Reputation
    10
    Thanks
    11
    my one works without bugs did you test it ? what problems do you get

  14. #12
    mo3ad001's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    842
    Reputation
    53
    Thanks
    797
    My Mood
    Busy
    Quote Originally Posted by o-o View Post
    Mo3ad way works but there's litttttttle bugs Thanks all /close req
    why the Fats may we Can help the new Problem ^_^
    tell as what the Problem's and we Fix all
    and what the other say may the way of create D3DFont fail or something
    but we can Fix it

    H A X O
    Email : Noobmem@hotmail.com


  15. #13
    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
    Quote Originally Posted by mo3ad001 View Post
    why the Fats may we Can help the new Problem ^_^
    tell as what the Problem's and we Fix all
    and what the other say may the way of create D3DFont fail or something
    but we can Fix it
    Nevermind dude the menu works perfecly thanks for the helps ! ... /close req
    [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 ...



  16. #14
    ldmx,tk's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    1
    where can i find this menue hack? surce?

  17. #15
    mo3ad001's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    842
    Reputation
    53
    Thanks
    797
    My Mood
    Busy
    Quote Originally Posted by ldmx,tk View Post
    where can i find this menue hack? surce?
    Make one

    H A X O
    Email : Noobmem@hotmail.com


Similar Threads

  1. [Help]hacking a site game.
    By tomer12 in forum C++/C Programming
    Replies: 13
    Last Post: 03-13-2009, 11:16 AM
  2. [Help] Can't enter games.
    By 4dlulz in forum Combat Arms Hacks & Cheats
    Replies: 7
    Last Post: 08-22-2008, 11:50 PM
  3. please can someone help me with 'Nexon Game Manager'
    By angrytater in forum WarRock Korea Hacks
    Replies: 2
    Last Post: 09-29-2007, 02:44 PM
  4. [need help] korean warrock full game download
    By blackdrag0 in forum WarRock Korea Hacks
    Replies: 4
    Last Post: 06-03-2007, 06:56 AM
  5. Replies: 2
    Last Post: 02-06-2006, 05:03 PM