Jump to content
Welcome, Guest
Existing user? Sign In

Sign In



Sign Up
The MatriX
  • Welcome To Ghbsys
  • CS GO Streaming Version is released. Have fun streaming while cheating!
  • Have a Payment Issue? Send us a Support ticket.
  • Make a thread if you need support or join our discord for live support.
  • Have Suggestions? Make a thread and you'll earn Ghbsys Points for implemented suggestions.
  • Join our discord to stay well connected! Don't forget to integrate your discord to the site
  • Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum

    Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum, like most online communities you must register to view or post in our community, but don't worry this is a simple free process that requires minimal information for you to signup. Be apart of [GHB] - GAmEhAcKbAsTaRdS Forum by signing in or creating an account.
    • Start new topics and reply to others
    • Subscribe to topics and forums to get email updates
    • Get your own profile page and make new friends
    • Send personal messages to other members.

    Subtitles in a D3D Menu


    audi
     Share

    Recommended Posts

    Hello. May anyone tell me the code on how to create a subtitle that will display all your cheats. Umm, a better example would be if you maximize D3D or something else using your right key, it'll show a whole list of cheats like recoil, spread, etc and if you use your left key, you can minimize the list. I'm hoping someone may provide me a simple and understandable code.

     

    Thanks to anyone who can provide me my answers .

     

    -Audi

    Link to comment
    Share on other sites

    Hello. May anyone tell me the code on how to create a subtitle that will display all your cheats. Umm, a better example would be if you maximize D3D or something else using your right key, it'll show a whole list of cheats like recoil, spread, etc and if you use your left key, you can minimize the list. I'm hoping someone may provide me a simple and understandable code.

     

    Thanks to anyone who can provide me my answers .

     

    -Audi

    I think you mean groups/folders..

     

    Depends a bit on the menu you are using....

    Recreate your menu if a group menuoption is changed and use if statements

     

    example :

    	m_pMenu->AddItem("[D3D cheats]"		  , &menud3d	  , "+|-", MENUFOLDER);
    if (menud3d==1)	{
    	m_pMenu->AddItem("  Chams"		, &CH_chams	 , "Off|On");
    	m_pMenu->AddItem("  Color 1"	  , &CH_color1	, "Off|Red|Green|Black|Blue");
    	m_pMenu->AddItem("  Color 2"	  , &CH_color2	, "Off|Red|Green|Black|Blue");
    	....
    }
    
    m_pMenu->AddItem("[Player cheats]"	  , &menuply	  , "+|-", MENUFOLDER);
    if (menuply==1)	{
    	m_pMenu->AddItem("  Stamina"	  , &CH_stamina   , "Off|Stealth|Full");
    	m_pMenu->AddItem("  Super jump"   , &CH_superjump , "Off|2000|3000");
    	m_pMenu->AddItem("  Fly"		  , &CH_fly	   , "Off|On");
    	....
    }

    So it only will show/create menuoptions when the group is selected otherwise it will hide/not create them

     

    It really depends how you draw your menu

    Link to comment
    Share on other sites

    Guest
    This topic is now closed to further replies.
     Share

    • Recently Browsing   0 members

      • No registered users viewing this page.
    ×
    ×
    • Create New...