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

TFS 1.2 How to Gratis Premium Account

Webo

Otland 4ever
Joined
Oct 20, 2013
Messages
621
Solutions
10
Reaction score
229
Location
Warsaw
ae180bc7bee9474c81fd2dc9acdfa4b2.png
 
He want it to say "Gratis Premium Account" instead of "Premium Account (x days left)"..

Am I right?
 
He want it to say "Gratis Premium Account" instead of "Premium Account (x days left)"..

Am I right?
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:S
 
check this on
src/protocolgame.cpp
FIND
Code:
msg.addByte(player->isPremium() ? 0x01 : 0x00);
  msg.add<uint32_t>(std::numeric_limits<uint32_t>::max());

REPLACE
Code:
if (player->isPremium()) {
         msg.addByte(1);
         msg.add<uint32_t>(time(nullptr) + (player->premiumDays * 86400));
     } else {
        msg.addByte(0);
         msg.add<uint32_t>(0);
    }

if this its already done on your tfs, try to change
freePremium = FALSE

and check how many days have your "account"
if the number still like 15000 days + , bump again. to check
 
Back
Top