...nopeconfig.lua
Code:freePremium = true
Yes, seems like that. And afaik it was just a bypass when the 10.8x client was released and the byte/packets handling the premium account thing was changed so they just did that as a bypass, afaik. :SS:SHe want it to say "Gratis Premium Account" instead of "Premium Account (x days left)"..
Am I right?
msg.addByte(player->isPremium() ? 0x01 : 0x00);
msg.add<uint32_t>(std::numeric_limits<uint32_t>::max());
if (player->isPremium()) {
msg.addByte(1);
msg.add<uint32_t>(time(nullptr) + (player->premiumDays * 86400));
} else {
msg.addByte(0);
msg.add<uint32_t>(0);
}