[HELP] How to edit Tyranny Wars level requirement.

Junior Spellweaver
Joined
Feb 3, 2007
Messages
142
Reaction score
0
Hello, how can I change the level requirement to enter Tyranny Wars. I tried to edit from default.charclass and set 175. But after Tyranny started my character was not warped to the map and when I clicked join it only noticed moving to Tyranny Land but still remain in the market place.

Anyone can provide an idea how to fix this?
 
Junior Spellweaver
Joined
Oct 12, 2015
Messages
148
Reaction score
1
another way to change or remove it, not editong source ^_^
 
Upvote 0
Newbie Spellweaver
Joined
Jan 24, 2014
Messages
44
Reaction score
2
GLGaeaServerMsg.cpp
search pNetMsg->bJoin
look like this
if( pNetMsg->bJoin ) { CHAR_DATA_QUEUE_MAP_ITER iter = m_mapQueueList.find( pChar->m_dwCharID ); if( pChar->GetLevel() < 195 ) return FALSE; if( iter == m_mapQueueList.end() ) { CTime cCurTime = CTime::GetCurrentTime(); CHAR_DATA_QUEUE cData; cData.dwGaeaID = dwGaeaID; cData.dwCharID = pChar->m_dwCharID; cData.wSchool = pChar->m_wSchool; cData.bJoin = false; cData.nHour = cCurTime.GetHour(); cData.nMin = cCurTime.GetMinute(); cData.nSec = cCurTime.GetSecond(); m_mapQueueList[pChar->m_dwCharID] = cData;



GLGaeaServerMsg.cpp
search pNetMsg->bJoin
look like this
if( pNetMsg->bJoin ) { CHAR_DATA_QUEUE_MAP_ITER iter = m_mapQueueList.find( pChar->m_dwCharID ); if( pChar->GetLevel() < 195 ) return FALSE; if( iter == m_mapQueueList.end() ) { CTime cCurTime = CTime::GetCurrentTime(); CHAR_DATA_QUEUE cData; cData.dwGaeaID = dwGaeaID; cData.dwCharID = pChar->m_dwCharID; cData.wSchool = pChar->m_wSchool; cData.bJoin = false; cData.nHour = cCurTime.GetHour(); cData.nMin = cCurTime.GetMinute(); cData.nSec = cCurTime.GetSecond(); m_mapQueueList[pChar->m_dwCharID] = cData;
 
Upvote 0