Help Siege Ranking Errors

11/03/2012 14:48 jeromerz#1
Hello guys, please help me in this errors it makes my client disconnect when viewing siege ranking how can i fix this??



Thank you, i've been searching other forums but no answer :(
11/03/2012 15:05 ThoughtfulDev#2
donno in which file but in the source search for CWndGuildCombatRank
11/03/2012 15:12 jeromerz#3
Where do i find the max guild siege score points?? I can find CWndGuildCombatRank at WndField.cpp but i dont know how to fix it
11/05/2012 13:48 jeromerz#4
where do i find the guild siege score limit?? :(

bumpppp
11/05/2012 15:48 xTwiLightx#5
WndField.cpp
Code:
void CWndGuildCombatRank_Class::InsertRank( int nJob, u_long uidPlayer, int nPoint )
{
    if( m_nMax >= MAX_GUILDCOMBAT_RANK )
    {
        Error( "CWndGuildCombatRank_Class::InsertRank - range over" );
        return;
    }
WndField.h (MAX_GUILDCOMBAT_RANK definition)
Code:
#define MAX_GUILDCOMBAT_RANK_PER_PAGE 11
#define MAX_GUILDCOMBAT_RANK          100