- Supported Minecraft Versions
- 1.8
- 1.9
- 1.10
- 1.11
- 1.12
Announcement: MundoSK will be splitting up into a few smaller addons in the future. If you are looking to use MundoSK right now, this shouldn't affect your usage, just that sometime in the future you will need to replace MundoSK with a new addon(s). This won't change how any of your scripts are written. More information and join the discussion here.
Update: Three of these addons are now available in beta form. Kosmos is focused on world-related features, Tablisknu provides tablist, skin, and nametag related features, and WebSKT provides WebSocket functionality. Note that currently Kosmos and Tablisknu are 1.13 only. This may change in the future, and more addons for other MundoSK features are currently in development.
Important: Many bugs in MundoSK 1.8.5 have been fixed in MundoSK 1.8.6-BETA.57, which can be downloaded here. If you encounter a bug when using MundoSK 1.8.5, you should download and use MundoSK 1.8.6-BETA.57 to see if it is fixed there before reporting it. If the bug still persists or you encounter another bug, see below on how to report bugs in MundoSK.
Take advantage of a wide variety of features, from simple world border capability to advanced socket communication and packet creation/modification, as well as interesting new syntaxes for Skript.
skUnity | Skript Hub | GitHub | Metrics
Use the /mundosk command to view plugin info, current config options, and documentation from the console and in-game!
Have a suggestion? Found a bug? Just want to express a general question or concern? Join the Skript Chat Discord Server and you can do all of that in the MundoSK channel, as well as the same for other addons! You can also create an issue at the GitHub Issues page, or post in the discussion tab.
Requirements
- Java 8+
- Bukkit/Spigot 1.8.8 - 1.12+
- Skript 2.2+
- (Optional) ProtocolLib 4.3+
Looking for a tutorial? There are a few tutorials and code examples available at the MundoSK website that can explain some complex features. If you can't find one about a particular feature you need help with, just message me or better yet, post in the discussion tab or in the MundoSK discord channel and someone else might be able to help you even faster!
There are also some tutorials available here on the forums:
- The Packet tutorial offers an explanation of how you can manipulate packets using MundoSK (requires ProtocolLib).
- The WebSocket tutorial teaches you how to use websockets to create connections between your server and another server, a website, or something else! Also included here is the websocket example referenced in the MundoSK 1.8 update log.
Here's an example of how to use the array tablist feature of MundoSK:
code_language.skript:
command /example_tablist:
trigger:
enable array tablist for player #This creates a 4 x 20 grid of tabs in the player's tablist, there is further syntax for other amounts of rows/columns
set display name of tab 1, 1 for player to "Hello!" #This sets the first tab as "Hello!"
set icon of tab 4, 20 for player to alex #This sets the icon of the last tab as the alex skin
set display name of tab 4, 20 for player to "ALEX" #This sets the last tab as "ALEX!"
loop 20 times:
set display name of tab 2, loop-number for player to "Column 2, Row %loop-number%" #This sets all of the tabs in the second column to display their column and row
set icon of tab 2, loop-number for player to steve #This sets all of the tabs in the second column to have a steve skin as their icon