Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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!
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.