Jan 1, 2016 - First off, some info about the mods. Optifine is a mod that enhances the game by adding a lot of options to things like particles and such. 'The 5zig Mod 1.8' Go inside the folder and rename both files to the same name as the folder Open the 1.8.json file and write under 'id' also the same name Now open the.jar file with an archive program like winrar or 7zip Delete the META-INF folder Copy all files from the mod into the.jar file. Heres da mod or as some people call 'hacks' 5zig.eu/downloads.php. In this video i show you how to install the 5zig mod with optifine into minecraft version 1.8.9! I hope you enjoyed. A tutorial on installing the 5zig mod with Minecraft Forge mod loader for Minecraft 1.11. SUBSCRIBE for more. The 5zig Mod. A Minecraft all-in-one modification to enhance your singleplayer and multiplayer gameplay. Available for Minecraft 1.13. Download now and join 1.258.540 players!

From v3.1 on of The 5zig Mod, you can now decide as a server owner whether you want to allow players that use The 5zig Mod to see various stats or not. |
This is possible using simple plugin messages: |
When joining a server, the client sents a plugin message on channel '5zig_Set', containing one byte holding the currently used api-version (2, as of now). |
You can then send a new plugin message to the client on the same channel. The plugin message must be filled with one byte that contains the settings you want to disable. The flags you can use for that are the following: |
- Bit 1 (0x01) is the flag for disabling the rendering of the potion effect hud |
- Bit 2 (0x02) is the flag for disabling the rendering of the potion indicator vignette |
- Bit 3 (0x04) is the flag for disabling the rendering of the armor hud |
- Bit 4 (0x08) is the flag for disabling the rendering of the player saturation (from v3.3.2) |
- Bit 5 (0x10) is the flag for disabling the rendering of the health of entities (from v3.3.6 until v3.9.6) |
- Bit 6 (0x20) is the flag for disabling the auto reconnect feature of the mod (from v3.9.9) |
You can OR (|) these flags to disable multiple settings at once. Not sending a flag enables the relevant setting again. |
Rendering the health of entities is disabled by default, all other settings are enabled. |
A few examples: |
- If you want to disable all settings, you need to send 0x01 | 0x02 | 0x04 | 0x08 | 0x10 | 0x20 |
- If you want to enable all settings again, you need to send 0x00 |
- If you want to disable the potion effect hud and the armor hud, you need to send 0x01 | 0x04 |
That's all you need to do. You can send as many plugin messages to the client as you want, also during other events. To reduce traffic, it is recommended to only send plugin messages to those clients, from whom you have received a plugin message earlier. |
commented Dec 8, 2015
Awesome, thanks for including this little API - helps a ton! |
commented Mar 15, 2016
For anyone who doesn't know, Cryptkeeper is the server admin for Hypixel - Hypixel has disabled entity health, saturation, and probably a few others. This API 5zig has included allows a server to override your own settings, to 'blacklist' stuff. The client will still tell the server that you've disabled them, even though they weren't actually disabled. So, there's no way for the server know that you made this little edit. |