Small fix.
Q: White text "Required Level" on v15 interface.
WndManager.cpp
Under the function
Code:
void CWndMgr::PutLevel( CMover* pMover, CItemElem* pItemElem, CEditString* pEdit )
Find
Code:
pEdit->AddString( strTemp, dwItemColor[g_Option.m_nToolTipText].dwGeneral );
And replace it with
Code:
{
if (g_Option.m_Multi == TRUE)
{
pEdit->AddString(strTemp, D3DCOLOR_XRGB(255, 255, 255));
}
else
{
pEdit->AddString(strTemp, D3DCOLOR_XRGB(0, 0, 0));
}
}
Q: Keeps DC when typing "/".
FuncTextCmd.cpp
Find
Code:
ON_TEXTCMDFUNC(TextCmd_outall, "nKickAll", "outall", "", "", TCM_BOTH, AUTH_ADMINISTRATOR, "")
And Replace it with
Code:
ON_TEXTCMDFUNC(TextCmd_outall, "nKickAll", "outall", "우편모두삭제", "우편모두삭제", TCM_BOTH, AUTH_ADMINISTRATOR, "")
Q: Inventory Sort button not moving when resizing the inventory.
Find these 2
Code:
#ifdef __INVENTORY_SORT_BUTTON
arOriginalSizes.push_back(ctrlhelp(WIDC_BUTTON1, STATIC, GetWndCtrl(WIDC_BUTTON1)->rect));
#endif
Code:
#ifdef __INVENTORY_SORT_BUTTON
case WIDC_BUTTON1:
#endif
Replace it with
Code:
#ifdef __INVENTORY_SORTING
arOriginalSizes.push_back(ctrlhelp(WIDC_BUTTON1, STATIC, GetWndCtrl(WIDC_BUTTON1)->rect));
#endif
Code:
#ifdef __INVENTORY_SORTING
case WIDC_BUTTON1:
#endif