Results 1 to 6 of 6
  1. #1
    KappaMang's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    242
    Reputation
    10
    Thanks
    16
    My Mood
    Asleep

    Get Ranks externally?

    So I have seen some hacks in the release section which have features that display enemy ranks. One of them is internal, and the other one is also internal (I believe). Is it possible in external? I would love this feature in my own hack. Thanks.

  2. #2
    troyedanish's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    3
    Yes it is possible.

  3. #3
    KappaMang's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    242
    Reputation
    10
    Thanks
    16
    My Mood
    Asleep
    Quote Originally Posted by troyedanish View Post
    Yes it is possible.
    DT_CSPlayerResource -> m_iCompetitiveRanking: __ 0x00001A44
    I assume it is this offset? But it returns an integer, so is it like 1 = silver 1, 5 = silver elite, 7 = gn1?

  4. #4
    WasserEsser's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    735
    Reputation
    174
    Thanks
    677
    My Mood
    Busy
    Code:
    const char* CompRanks[ 19 ]  = 
    {
            "Unranked",
            "Silver I",
            "Silver II",
            "Silver III",
            "Silver IV",
            "Silver Elite",
            "Silver Elite Master",        
            "Gold Nova I",
            "Gold Nova II",
            "Gold Nova III",
            "Gold Nova Master",
            "Master Guardian I",
            "Master Guardian II", 
            "Master Guardian Elite",
            "Distinguished Master Guardian",
            "Legendary Eagle",
            "Legendary Eagle Master",
            "Supreme Master First Class",
            "The Global Elite"
    };
    
    const char* GetRank( PlayerIndex )
    {
            DWORD PlayerResource = Mem.Read< DWORD >( ClientDll + dwPlayerResource );
            return CompRanks[ Mem.Read< int >( PlayerResource + m_iCompetitiveRanking + Index * 4 ) ];
    }
    
    int GetWins( PlayerIndex )
    {
            DWORD PlayerResource = Mem.Read< DWORD >( ClientDll + dwPlayerResource );
            return Mem.Read< int >( PlayerResource + m_iCompetitiveWins + Index * 4 );
    }

  5. #5
    KappaMang's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    242
    Reputation
    10
    Thanks
    16
    My Mood
    Asleep
    Quote Originally Posted by WasserEsser View Post
    Code:
    const char* CompRanks[ 19 ]  = 
    {
            "Unranked",
            "Silver I",
            "Silver II",
            "Silver III",
            "Silver IV",
            "Silver Elite",
            "Silver Elite Master",        
            "Gold Nova I",
            "Gold Nova II",
            "Gold Nova III",
            "Gold Nova Master",
            "Master Guardian I",
            "Master Guardian II", 
            "Master Guardian Elite",
            "Distinguished Master Guardian",
            "Legendary Eagle",
            "Legendary Eagle Master",
            "Supreme Master First Class",
            "The Global Elite"
    };
    
    const char* GetRank( PlayerIndex )
    {
            DWORD PlayerResource = Mem.Read< DWORD >( ClientDll + dwPlayerResource );
            return CompRanks[ Mem.Read< int >( PlayerResource + m_iCompetitiveRanking + Index * 4 ) ];
    }
    
    int GetWins( PlayerIndex )
    {
            DWORD PlayerResource = Mem.Read< DWORD >( ClientDll + dwPlayerResource );
            return Mem.Read< int >( PlayerResource + m_iCompetitiveWins + Index * 4 );
    }
    Thank you, I had already found a source by Merccy2 but this looks easier. Solved and closed.
    Last edited by KappaMang; 07-01-2016 at 01:32 PM.

  6. #6
    Hunter's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    Depths Of My Mind.
    Posts
    17,468
    Reputation
    3771
    Thanks
    6,159
    My Mood
    Cheerful
    /Solved & closed.

Similar Threads

  1. 9 wins unranked - Need 1 win to get ranked - Join!!
    By koodari123 in forum Counter-Strike 2 Boosting
    Replies: 0
    Last Post: 04-16-2015, 12:22 PM
  2. CS:GO Boosting Service | Cheap | 100% Safe | Get Ranked FAST
    By Sucade in forum Counter-Strike 2 Marketplace
    Replies: 8
    Last Post: 05-12-2014, 07:23 PM
  3. Best place to get rank up class points?
    By trancebtw in forum Adventure Quest Worlds (AQW) Discussions
    Replies: 6
    Last Post: 06-02-2013, 01:29 PM
  4. Where can I get an external map hack for dayz?
    By ezrix in forum DayZ Discussion
    Replies: 6
    Last Post: 02-04-2013, 12:33 PM
  5. [Discussion] What's a good way to get ranked to SGT fast?
    By youngloveb14 in forum Combat Arms Discussions
    Replies: 13
    Last Post: 05-09-2011, 04:38 PM