Quote:
Originally Posted by Misec
Hey,
just wanted to ask for a quick solution on how to disable all the "Required Level: 1" text for items usable for level 1(not above).
|
WndManager.cpp
CWndMgr::PutLevel
Replace:
Code:
if(pItemElem->GetProp()->dwLimitLevel1 != 0xffffffff)
To:
Code:
if(pItemElem->GetProp()->dwLimitLevel1 != 0xffffffff && pItemElem->GetProp()->dwLimitLevel1 != 1)