Level in Lobby

Results 1 to 2 of 2
  1. #1
    Member SkipChopJD is offline
    MemberRank
    May 2013 Join Date
    70Posts

    Level in Lobby

    I'm going to leave this simple code that did Androide28 and many have asked me.
    Open ZGameClient.cpp
    search:
    PHP Code:
    void ZGameClient::OnChannelChat(const MUIDuidChannelcharszNamecharszChat,int nGrade
    6 Lines paste below
    PHP Code:
    char szLevel[16]; 
    search:
    PHP Code:
    wsprintf(szText"^4%s %s^9 : %s"szNameZGetMyInfo()->, szChat); 
    replace:
    PHP Code:
    wsprintf(szText"^4%s %s(Lv-%i)^9 : %s"szNameZGetMyInfo()->, szChat); 
    Then we replace
    PHP Code:
    ZGetMyInfo()-> szChat); 
    by this
    PHP Code:
    ZGetMyInfo()->GetLevel(), szChat); 
    Then we go a little higher
    replace
    PHP Code:
    wsprintf(szText"%s : %s" szNameszChat); 
    for
    PHP Code:
    wsprintf(szText"%s %i : %s" szNameszLevelszChat); 
    Usually this would be it

    Credits: Androide28 and SkipChopJD

    juan-de-dios_20140923_100652.jpg


  2. #2
    Member LyonalKing is offline
    MemberRank
    Feb 2013 Join Date
    59Posts

    Re: Level in Lobby

    Good Release



Advertisement