• 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!

C++ OTClient Outfitwindow Uint16

Azerty

Active Member
Joined
Apr 15, 2022
Messages
335
Solutions
4
Reaction score
37
Good morning, does anyone know how to increase the outfit limit in OTClient? Because my source for old client is like this:
protocolgame.cpp
LUA:
    msg.add<uint16_t>(protocolOutfits.size());
    for (const ProtocolOutfit& outfit : protocolOutfits) {
        msg.add<uint16_t>(outfit.lookType);
        msg.addString(outfit.name);
        msg.addByte(outfit.addons);
    }
 
Back
Top