• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Remove the outfitchange of god

Tarielle

New Member
Joined
Nov 4, 2007
Messages
214
Reaction score
0
Location
Sweden
Hi, how can I remove so the outfit I choose with GOD or GM wont reload when I logout?
 
Change that in iologindata.cpp :D:D
if(player->accessLevel > 0)
{
if(acc.accountType > 4)
player->defaultOutfit.lookType = 266;
else
player->defaultOutfit.lookType = 75;
}
else
player->defaultOutfit.lookType = result.getDataInt("looktype");
TO:
//if(player->accessLevel > 0)
//{
//if(acc.accountType > 4)
//player->defaultOutfit.lookType = 266;
//else
//player->defaultOutfit.lookType = 75;
//}
//else
player->defaultOutfit.lookType = result.getDataInt("looktype");
hope it helps
 
Last edited:
Back
Top