Results 1 to 15 of 35

Threaded View

  1. #8
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,617
    Quote Originally Posted by flameswor10 View Post
    Get the Gamestatus Address
    Code:
    typedef bool (*IsConnected_t)(void);  
    
    bool IsIngame()
    {
        DWORD* LTBase = (DWORD*)ADDIE_LTC;
        IsConnected_t pConnected = *(IsConnected_t*)(*LTBase + 0x8C);
    
        return pConnected();
    }


    kotentoph
    Last edited by NOOB; 01-20-2011 at 03:26 PM.