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.

    [Source Code] Get Date + Panickey + FPS


    DerAhlemer
     Share

    Recommended Posts

    [source Code] Get Date + Panickey + FPS

     

     

     

    Date

     

    You want to make a Date-Funktion in your d3d hack?

    Us this code:

     

    char* DATE(void)
    {
    static char cdate[20] = "";
    struct tm * current_tm;
    time_t current_time;
    time (&current_time);
    current_tm = localtime (&current_time);
    sprintf( cdate, "%d-%02d-%d",current_tm->tm_mon+1,current_tm->tm_mday,current_tm->tm_year-100+2000);
    return cdate;
    }

    Credits Pheno

     

    ==================================================

    Panickey Function

     

    You want to make a Panickey Function in your d3d hack?

    Us this code:

     

    if(panic)
    {
    if( GetAsyncKeyState( VK_CONTROL)&1)
    {
    	if( GetAsyncKeyState( VK_SPACE))
    {
    		ExitGame(0);
    }
    }
    }

     

    Credits GiGa

    ==================================================

    FPS

     

    /* #include */
    #include <time.h>
    float fLastTickCount=0.0f;
    float fCurrentTickCount;
    char CH_FPS [20];
    
    /* MENU[MENUMAXITEMS]; */
    int CH_NoFPS=0;
    
    /* void RebuildMenu(void) */
    MenuAddItem("Framerate:",(char **)CH_FPS,0,0,MENUTEXT);
    
    /* HRESULT WINAPI myPresent */
    if(CH_FPS)
    {
     fCurrentTickCount=clock() * 0.001f;
     CH_NoFPS++;
    if((fCurrentTickCount - fLastTickCount)>1.0f)
    {
     fLastTickCount=fCurrentTickCount;
     sprintf(CH_FPS, "%d", CH_NoFPS);
     CH_NoFPS=0;
    }
    }

    Edited by DerAhlemer`
    • Upvote 1
    Link to comment
    Share on other sites

    [source Code] Get Date + Panickey + FPS

     

     

     

    Date

     

    You want to make a Date-Funktion in your d3d hack?

    Us this code:

     

    [ Hidden part. View original post. ]

    Credits Pheno

     

    ==================================================

    Panickey Function

     

    You want to make a Panickey Function in your d3d hack?

    Us this code:

     

    [ Hidden part. View original post. ]

     

    ==================================================

    FPS

     

    [ Hidden part. View original post. ]

    Link to comment
    Share on other sites

    [source Code] Get Date + Panickey + FPS

     

     

     

    Date

     

    You want to make a Date-Funktion in your d3d hack?

    Us this code:

     

    [ Hidden part. View original post. ]

    Credits Pheno

     

    ==================================================

    Panickey Function

     

    You want to make a Panickey Function in your d3d hack?

    Us this code:

     

    [ Hidden part. View original post. ]

     

    ==================================================

    FPS

     

    [ Hidden part. View original post. ]

    Link to comment
    Share on other sites

    • 1 year later...
    • 4 weeks later...
    • 4 weeks later...
    • 1 month later...

    what is a panic key?? PM me response please.

     

    TY

     

    Panic-key

    For example a admin come into your room und u become panic you can close warrock or thhe hack quit.

    Link to comment
    Share on other sites

    if (GetAsyncKeyState (VK_IDKWHATYOUWANTHERE) )

    should be

    if (GetAsyncKeyState (VK_IDKWHATYOUWANTHERE) &1)

    ...and should be in a loop :D

    • Upvote 1
    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...