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

UPDATE TO 10.97 TFS

There are more bytes in the store. In store history you need to change. I use store in c++ but I hope you can edit in lua too.
Code:
msg.add<uint16_t>(page);
msg.AddByte((storeHistory.size() > entriesPerPage) ? 0x01 : 0x00);
to
msg.add<uint32_t>(page);
msg.add<uint32_t>((storeHistory.size() > entriesPerPage) ? 0x01 : 0x00);

and

msg.add<uint32_t>(offer.getPrice());
to
msg.add<uint32_t>(offer.getPrice());
msg.AddByte(0);

Thanks Gunz
 
Back
Top