Disable Required Level 1

06/05/2020 20:33 Misec#1
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).
06/05/2020 21:42 QuietSmoke#2
Quote:
Originally Posted by Misec View Post
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)