CHIP_PLAYERSHOP WARNING HELP

05/15/2015 05:33 Ecrypter#1
Hi epvpers i have problem of chip_playershop

warning on the blue color

#ifdef __CHIP_PLAYERSHOP
if( m_pItemBase->m_nBuyMode == 3 && g_pPlayer->m_Inventory.GetItemCount( II_CHP_RED ) < ((CItemElem*)m_pItemBase)->m_nCost * nBufNum )
{
g_WndMng.OpenMessageBox( _T( prj.GetText(TID_GAME_LACKMONEY)), MB_OK, this );
return TRUE;
}
else
if( m_pItemBase->m_nBuyMode == 2 && g_pPlayer->m_Inventory.GetItemCount( II_SYS_SYS_SCR_PERIN ) < ((CItemElem*)m_pItemBase)->m_nCost * nBufNum )
{
g_WndMng.OpenMessageBox( _T( prj.GetText(TID_GAME_LACKMONEY)), MB_OK, this );
return TRUE;
}
else
if( m_pItemBase->m_nBuyMode == 1 && g_pPlayer->GetGold() < ((CItemElem*)m_pItemBase)->m_nCost * nBufNum )
{
g_WndMng.OpenMessageBox( _T( prj.GetText(TID_GAME_LACKMONEY)), MB_OK, this );
return TRUE;
}
#else
if( g_pPlayer->GetGold() < ((CItemElem*)m_pItemBase)->m_nCost * nBufNum )
{
g_WndMng.OpenMessageBox( _T( prj.GetText(TID_GAME_LACKMONEY)), MB_OK, this );
return TRUE;
}
#endif

PHP Code:
\flyff\Source\_Interface\WndVendorBuy.cpp(200) : warning C4018'<' signed/unsigned mismatch
\flyff\Source\_Interface\WndVendorBuy.cpp(206) : warning C4018'<' signed/unsigned mismatch 
no redchips and perin option display on playershop to sell item

how to fix this warning? thanks in advance.,
05/17/2015 03:51 kun_sama13#2
kindly read the error it says you have signed/unsigned mismatch on line 200 and line 206
05/19/2015 11:31 Ecrypter#3
i already fix last day


xClosed