bpm91
Advanced OT User
- Joined
- May 23, 2019
- Messages
- 1,046
- Solutions
- 7
- Reaction score
- 180
- Location
- Brazil
- YouTube
- caruniawikibr
you have to add addons support in your server the code is commited.hello, I have problems implementing new clothes on this nekiro 1.5 server, so I don't know if the problem is in otcv8 or nekiro's tfs 1.5, I use version 7.72, and when implementing a new outfit number 308, with addon 1 and 2 it doesn't appears in my game. can anyone help?
View attachment 67577
View attachment 67578
View attachment 67579
you don't have to rremove you need to uncommit for exampleI tried to remove the options from the source but it gave a lot of error, if anyone knows please I would like this help
void ProtocolGame::parseSetOutfit(NetworkMessage& msg)
{
Outfit_t newOutfit;
newOutfit.lookType = msg.get<uint16_t>();
newOutfit.lookHead = msg.getByte();
newOutfit.lookBody = msg.getByte();
newOutfit.lookLegs = msg.getByte();
newOutfit.lookFeet = msg.getByte();
//newOutfit.lookAddons = msg.getByte();
//newOutfit.lookMount = msg.get<uint16_t>();
addGameTask(&Game::playerChangeOutfit, player->getID(), newOutfit);
}
//newOutfit.lookAddons = msg.getByte();
//newOutfit.lookMount = msg.get<uint16_t>();
newOutfit.lookAddons = msg.getByte();
newOutfit.lookMount = msg.get<uint16_t>();
switch (player->getSex()) {
case PLAYERSEX_FEMALE: {
msg.add<uint16_t>(351);
if (player->isPremium()) {
msg.add<uint16_t>(391);
} else {
msg.add<uint16_t>(357);
}
break;
}
case PLAYERSEX_MALE: {
msg.add<uint16_t>(300);
if (player->isPremium()) {
msg.add<uint16_t>(345);
} else {
msg.add<uint16_t>(306);
}
break;
}
default: {
msg.add<uint16_t>(300);
msg.add<uint16_t>(351);
}
}
writeToOutputBuffer(msg);
}
change to a higher version of nekiro 800 or 860 so you will have the outfits without problem as in that version that I had to dohelp me, priv.