Revenge Client Same AT Page Not Found Episode 8 Advance Features

Page 21 of 32 FirstFirst ... 11131415161718192021222324252627282931 ... LastLast
Results 301 to 315 of 476
  1. #301
    Ainsworth Quiirex is offline
    MemberRank
    Dec 2011 Join Date
    127.0.0.1Location
    485Posts

    Re: Revenge Client Same AT Page Not Found Episode 8 Advance Features

    Any compatible IP Interceptor for this release? :)

  2. #302
    Alpha Member Asero1933 is offline
    MemberRank
    Mar 2011 Join Date
    Here...Location
    1,696Posts

    Re: Revenge Client Same AT Page Not Found Episode 8 Advance Features


  3. #303
    Novice Miko Dominic is offline
    MemberRank
    Jul 2013 Join Date
    2Posts

    Re: Revenge Client Same AT Page Not Found Episode 8 Advance Features

    How to compile this source code.

  4. #304
    zZzZzZz zHadesVII is offline
    MemberRank
    Jun 2013 Join Date
    PhilippinesLocation
    1,038Posts

    Re: Revenge Client Same AT Page Not Found Episode 8 Advance Features


  5. #305
    Novice Miko Dominic is offline
    MemberRank
    Jul 2013 Join Date
    2Posts

    Re: Revenge Client Same AT Page Not Found Episode 8 Advance Features

    Thanks

  6. #306
    荷希 (糖糖姐姐) AsenDURE is offline
    MemberRank
    Mar 2012 Join Date
    MalaysiaLocation
    758Posts

    Re: Revenge Client Same AT Page Not Found Episode 8 Advance Features

    Quote Originally Posted by SixTeam View Post
    how to change the color of the MOB,
    what should I change on SourceCode ... tell me how to solve it ....
    GLCrowRenList.h

    Code:
    namespace CROWCOLOR
    {
    	const DWORD MOB_COLOR_GRAY	= D3DCOLOR_ARGB(255,184,184,184);
    	const DWORD MOB_COLOR_1 = D3DCOLOR_ARGB(255,165,255,40);
    	const DWORD MOB_COLOR_2 = D3DCOLOR_ARGB(255,255,255,45);
    	const DWORD MOB_COLOR_3 = D3DCOLOR_ARGB(255,255,500,50);
    	const DWORD MOB_COLOR_4 = D3DCOLOR_ARGB(255,255,132,56);
    	const DWORD MOB_COLOR_5 = D3DCOLOR_ARGB(255,255,52,45);
    	const DWORD MOB_COLOR_6 = D3DCOLOR_ARGB(255,255,12,218);
    	const DWORD MOB_COLOR_7 = D3DCOLOR_ARGB(255,176,20,255);
    	const DWORD MOB_COLOR_8 = D3DCOLOR_ARGB(255,30,187,255);
    	const DWORD MOB_COLOR_GREEN	= D3DCOLOR_ARGB(210,39,207,102);
    	const DWORD MOB_COLOR_RED	= D3DCOLOR_ARGB(255,255,0,0);
    	const DWORD MOB_COLOR_0	= D3DCOLOR_ARGB(255,255,251,198);
    	const DWORD MOB_COLOR_X	= D3DCOLOR_ARGB(255,145,247,255);
    };

  7. #307
    Account Upgraded | Title Enabled! SixTeam is offline
    MemberRank
    May 2013 Join Date
    City Banana'sLocation
    412Posts

    Re: Revenge Client Same AT Page Not Found Episode 8 Advance Features

    Quote Originally Posted by AsenDURE View Post
    GLCrowRenList.h

    Code:
    namespace CROWCOLOR
    {
        const DWORD MOB_COLOR_GRAY    = D3DCOLOR_ARGB(255,184,184,184);
        const DWORD MOB_COLOR_1 = D3DCOLOR_ARGB(255,165,255,40);
        const DWORD MOB_COLOR_2 = D3DCOLOR_ARGB(255,255,255,45);
        const DWORD MOB_COLOR_3 = D3DCOLOR_ARGB(255,255,500,50);
        const DWORD MOB_COLOR_4 = D3DCOLOR_ARGB(255,255,132,56);
        const DWORD MOB_COLOR_5 = D3DCOLOR_ARGB(255,255,52,45);
        const DWORD MOB_COLOR_6 = D3DCOLOR_ARGB(255,255,12,218);
        const DWORD MOB_COLOR_7 = D3DCOLOR_ARGB(255,176,20,255);
        const DWORD MOB_COLOR_8 = D3DCOLOR_ARGB(255,30,187,255);
        const DWORD MOB_COLOR_GREEN    = D3DCOLOR_ARGB(210,39,207,102);
        const DWORD MOB_COLOR_RED    = D3DCOLOR_ARGB(255,255,0,0);
        const DWORD MOB_COLOR_0    = D3DCOLOR_ARGB(255,255,251,198);
        const DWORD MOB_COLOR_X    = D3DCOLOR_ARGB(255,145,247,255);
    };
    I've changed to be the same ... but on GLCrowRenList.cpp I'm a little confused ....
    look at this, what should I change:

    {
    EMCROW emCROW = pCROW->GETCROW();

    if ( emCROW == CROW_NPC ) m_dwCOLOR = CROWCOLOR::MOB_COLOR_X; //NS_UITEXTCOLOR::ORANGE;
    //add mobschoolreq
    else if ( !(pCROW->m_pCrowData->m_sAction.dwMobReqSchool & index2school(pMYCHAR->GETSCHOOL()) ) )
    {
    m_dwCOLOR = CROWCOLOR::MOB_COLOR_RED;
    }
    else
    {
    WORD wMY_LEVEL = pMYCHAR->GETLEVEL();
    WORD wMOB_LEVEL = pCROW->m_pCrowData->m_wLevel;
    float fEXP_RATE = GLCONST_CHAR::GETEXP_RATE ( wMY_LEVEL, wMOB_LEVEL );

    if ( fEXP_RATE==0 ) m_dwCOLOR = CROWCOLOR::MOB_COLOR_GRAY;
    //else m_dwCOLOR = CROWCOLOR::MOB_COLOR_RED;
    else if ( wMOB_LEVEL-wMY_LEVEL >= GLCONST_CHAR::wMOB_COLOR_8) m_dwCOLOR = CROWCOLOR::MOB_COLOR_8;
    else if ( wMOB_LEVEL-wMY_LEVEL >= GLCONST_CHAR::wMOB_COLOR_7) m_dwCOLOR = CROWCOLOR::MOB_COLOR_7;
    else if ( wMOB_LEVEL-wMY_LEVEL >= GLCONST_CHAR::wMOB_COLOR_6) m_dwCOLOR = CROWCOLOR::MOB_COLOR_6;
    else if ( wMOB_LEVEL-wMY_LEVEL >= GLCONST_CHAR::wMOB_COLOR_5) m_dwCOLOR = CROWCOLOR::MOB_COLOR_5;
    else if ( wMOB_LEVEL-wMY_LEVEL >= GLCONST_CHAR::wMOB_COLOR_4) m_dwCOLOR = CROWCOLOR::MOB_COLOR_4;
    else if ( wMOB_LEVEL-wMY_LEVEL >= GLCONST_CHAR::wMOB_COLOR_3) m_dwCOLOR = CROWCOLOR::MOB_COLOR_3;
    else if ( wMOB_LEVEL-wMY_LEVEL >= GLCONST_CHAR::wMOB_COLOR_2) m_dwCOLOR = CROWCOLOR::MOB_COLOR_2;
    else if ( wMOB_LEVEL-wMY_LEVEL >= GLCONST_CHAR::wMOB_COLOR_1) m_dwCOLOR = CROWCOLOR::MOB_COLOR_1;
    else m_dwCOLOR = CROWCOLOR::MOB_COLOR_0;
    }

  8. #308
    荷希 (糖糖姐姐) AsenDURE is offline
    MemberRank
    Mar 2012 Join Date
    MalaysiaLocation
    758Posts

    Re: Revenge Client Same AT Page Not Found Episode 8 Advance Features

    Quote Originally Posted by SixTeam View Post
    I've changed to be the same ... but on GLCrowRenList.cpp I'm a little confused ....
    look at this, what should I change:

    {
    EMCROW emCROW = pCROW->GETCROW();

    if ( emCROW == CROW_NPC ) m_dwCOLOR = CROWCOLOR::MOB_COLOR_X; //NS_UITEXTCOLOR::ORANGE;
    //add mobschoolreq
    else if ( !(pCROW->m_pCrowData->m_sAction.dwMobReqSchool & index2school(pMYCHAR->GETSCHOOL()) ) )
    {
    m_dwCOLOR = CROWCOLOR::MOB_COLOR_RED;
    }
    else
    {
    WORD wMY_LEVEL = pMYCHAR->GETLEVEL();
    WORD wMOB_LEVEL = pCROW->m_pCrowData->m_wLevel;
    float fEXP_RATE = GLCONST_CHAR::GETEXP_RATE ( wMY_LEVEL, wMOB_LEVEL );

    if ( fEXP_RATE==0 ) m_dwCOLOR = CROWCOLOR::MOB_COLOR_GRAY;
    //else m_dwCOLOR = CROWCOLOR::MOB_COLOR_RED;
    else if ( wMOB_LEVEL-wMY_LEVEL >= GLCONST_CHAR::wMOB_COLOR_8) m_dwCOLOR = CROWCOLOR::MOB_COLOR_8;
    else if ( wMOB_LEVEL-wMY_LEVEL >= GLCONST_CHAR::wMOB_COLOR_7) m_dwCOLOR = CROWCOLOR::MOB_COLOR_7;
    else if ( wMOB_LEVEL-wMY_LEVEL >= GLCONST_CHAR::wMOB_COLOR_6) m_dwCOLOR = CROWCOLOR::MOB_COLOR_6;
    else if ( wMOB_LEVEL-wMY_LEVEL >= GLCONST_CHAR::wMOB_COLOR_5) m_dwCOLOR = CROWCOLOR::MOB_COLOR_5;
    else if ( wMOB_LEVEL-wMY_LEVEL >= GLCONST_CHAR::wMOB_COLOR_4) m_dwCOLOR = CROWCOLOR::MOB_COLOR_4;
    else if ( wMOB_LEVEL-wMY_LEVEL >= GLCONST_CHAR::wMOB_COLOR_3) m_dwCOLOR = CROWCOLOR::MOB_COLOR_3;
    else if ( wMOB_LEVEL-wMY_LEVEL >= GLCONST_CHAR::wMOB_COLOR_2) m_dwCOLOR = CROWCOLOR::MOB_COLOR_2;
    else if ( wMOB_LEVEL-wMY_LEVEL >= GLCONST_CHAR::wMOB_COLOR_1) m_dwCOLOR = CROWCOLOR::MOB_COLOR_1;
    else m_dwCOLOR = CROWCOLOR::MOB_COLOR_0;
    }
    Code:
    const DWORD MOB_COLOR_1 = D3DCOLOR_ARGB(255,165,255,40);
    CHANGE THE COLOR CODE
    Last edited by AsenDURE; 18-07-13 at 01:12 PM.

  9. #309
    -=GameOver=- Ace17 is offline
    MemberRank
    Jun 2013 Join Date
    598Posts

    Re: Revenge Client Same AT Page Not Found Episode 8 Advance Features

    Quote Originally Posted by AsenDURE View Post
    Code:
    const DWORD MOB_COLOR_1 = D3DCOLOR_ARGB(255,165,255,40);
    CHANGE THE COLOR CODE
    what is your email? i cant pm you i have something to ask

  10. #310
    Account Upgraded | Title Enabled! SixTeam is offline
    MemberRank
    May 2013 Join Date
    City Banana'sLocation
    412Posts

    Re: Revenge Client Same AT Page Not Found Episode 8 Advance Features

    Quote Originally Posted by Ace17 View Post
    what is your email? i cant pm you i have something to ask
    six_team@yahoo.co.id YM of email

  11. #311
    c++ CNDev is offline
    MemberRank
    Oct 2010 Join Date
    1,678Posts

    Re: Revenge Client Same AT Page Not Found Episode 8 Advance Features

    Quote Originally Posted by xhellin View Post
    i already tried to change the effect.rcc from other client, but it still bugtraps :3 and i already talk to patrick (TS) and he said, the problem is in the animation...
    use official animations

  12. #312
    Account Upgraded | Title Enabled! LUPIN III is offline
    MemberRank
    Dec 2012 Join Date
    Ran PlanetLocation
    1,127Posts

    Re: Revenge Client Same AT Page Not Found Episode 8 Advance Features

    i try this client.. the items had missing files if you can put or wear on its invisible :) , WING / ASSASSIN WEAPON / SETS

  13. #313
    Account Upgraded | Title Enabled! LUPIN III is offline
    MemberRank
    Dec 2012 Join Date
    Ran PlanetLocation
    1,127Posts

    Re: Revenge Client Same AT Page Not Found Episode 8 Advance Features

    Quote Originally Posted by nieen12 View Post
    its easy to fix that lol..
    yeah . but its not my points .. TS insulting my thread about RaceRan Client cos he had a source code fully and working but i see he`s shared client got minor bug and missing files . tsk tsk tsk!!

  14. #314
    Member TangTangs is offline
    MemberRank
    Jan 2013 Join Date
    80Posts

    Re: Revenge Client Same AT Page Not Found Episode 8 Advance Features

    LoginDataFailed Share Again Your Client :)
    Thanks Or Pm To Me :D !

  15. #315
    Ì lövê ¥öµ! Fusion7 is offline
    MemberRank
    Jun 2009 Join Date
    MalaysiaLocation
    1,923Posts

    Re: Revenge Client Same AT Page Not Found Episode 8 Advance Features

    Quote Originally Posted by nieen12 View Post
    use official animations
    bugtrap still popup after use official animation



Advertisement