
Originally Posted by
FrenzyObz
hi guys..as title said..how to put or enable in source of Legend icon?because..when im level 150..it's still hero icon..i hope somebody will answer my quest..

Find the line
Code:
else if(checkhero == LEGEND_CLASS_HERO) //¿µ¿õÀÏ °æ¿ì.
and add below
Code:
#if __VER >= 16 //__3RD_LEGEND16
else if(checkhero == LEGEND_CLASS_LEGENDHERO && m_nLevel >= 130 && m_nLevel < 140)
{
strPath = MakePath( DIR_ICON, "icon_Hero.dds");
pTexture = CWndBase::m_textureMng.AddTexture( g_Neuz.m_pd3dDevice, strPath, 0xffff00ff );
// pTexture = g_Neuz.m_pLegendIcon[0];
if(pTexture != NULL)
{
point.y -= pTexture->m_size.cy + 5;
pTexture->Render( &g_Neuz.m_2DRender, point );
}
}
else if(checkhero == LEGEND_CLASS_LEGENDHERO && m_nLevel >= 140 && m_nLevel < 150)
{
strPath = MakePath( DIR_ICON, "name of your icon");
pTexture = CWndBase::m_textureMng.AddTexture( g_Neuz.m_pd3dDevice, strPath, 0xffff00ff );
// pTexture = g_Neuz.m_pLegendIcon[1];
if(pTexture != NULL)
{
point.y -= pTexture->m_size.cy + 5;
pTexture->Render( &g_Neuz.m_2DRender, point );
}
}
#endif // __3RD_LEGEND16