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

Compiling How to Unlock 255 effects in TFS 8.6 ?

You can only do this with Otclient.


Effects use uint8_t. Which can be number 0-254 (or 1-255). If you go to #256, then it rolls over back to 1 (or 255 rolls back to 0)

So if you want more effects, you'd need to change uint8_t to uint16_t. BUT that also requires you to change the client to receive uint16_t for this protocol.
 
Back
Top