• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[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?
 
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
Back
Top