Search results

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the community!

    Now, what are you waiting for? Join the community now!

  1. Tlatoani

    Addon MundoSK

    Yes, you can use websockets to communicate with PHP from the server. You’ll need to use a library on the PHP side since PHP doesn’t have websockets built-in, but that isn’t too hard to do.
  2. Tlatoani

    Addon MundoSK

    MundoSK's revamped documentation is now in skUnity!
  3. Tlatoani

    MundoSK WebSockets

    This is a tutorial to explain how to use the WebSocket features added in MundoSK 1.8. All names of syntaxes that are capitalized and in italics like New WebSocket are the names of the syntaxes as used in the documentation, so you can know where to find them in MundoSK’s documentation. What are...
  4. Tlatoani

    Addon MundoSK

    After some testing, here’s what I’ve found: In my 1.12 test server, play_client_client_command is not triggered by inventory opening, but is triggered on respawn. To me it seems that clients > 1.8 simply no longer send the packet on inventory open. I wasn’t able to trigger play_client_fly at all...
  5. Tlatoani

    Addon MundoSK

    In MundoSK’s config, there is an option called `enable_custom_skin_and_tablist`. If you set this to false, SkinRestorer should work (you need to restart your server for the config option to work). MundoSK also has its own skin syntaxes if you want to try them.
  6. Tlatoani

    Addon MundoSK

    So to clarify, some packets do work for all versions? Can you give examples of packets that do work in all versions? Are there other packets that give console errors besides use_item?
  7. Tlatoani

    Addon MundoSK

    Are other packets working properly with all versions?
  8. Tlatoani

    Addon MundoSK

    MundoSK version, ProtocolLib version? When you say it doesn’t work, do you mean it gives an error on reload, it gives a console error, or it’s never called?
  9. Tlatoani

    Addon MundoSK - MundoSK 1.8.1 - Negated Conditions

    This is a small update, just a couple of additions: Documentation WebSocketState and PlayerLoginResult are now known as WebSocket State and Player Login Result respectively in the documentation. Conditions Many of MundoSK's conditions that did not already have this, now have syntax for...
  10. Tlatoani

    Addon MundoSK - MundoSK 1.8

    It's been a long time since the last official update, but MundoSK 1.8 is finally here. Before we start going into syntaxes, I want to explain some changes to some other aspects of MundoSK. /mundosk Command: There is now a /mundosk command which can be used to do a few things relating to...
  11. Tlatoani

    MundoSK Packets

    This should be approximately what you need: set {_packet} to new play_server_game_state_change packet set int pnum 0 of {_packet} to 7 #This might be byte instead of int, not sure set float pnum 0 of {_packet} to 0 #There are other possible values depending on what you want to show...
  12. Tlatoani

    Addon MundoSK

    Biomegrids are essentially grids representing the layout of biomes in a chunk (a grid of a layer of blocks in the chunk with a biome in each spot in the grid). They are used during the generation of chunks, and are (as far as I know) useless and not present anywhere after a chunk has been...
  13. Tlatoani

    Addon MundoSK

    Update to MundoSK-BETA.10.22, and in the config, change the border syntax option to true. If you use the ‘size of %world%’ border size syntax of MundoSK anywhere in your scripts you will also need to change that to ‘diameter of %world%’.
  14. Tlatoani

    Addon MundoSK

    The packet you’ll want to use is play_server_entity_destroy (https://github.com/dmulloy2/PacketWrapper/blob/master/PacketWrapper/src/main/java/com/comphenix/packetwrapper/WrapperPlayServerEntityDestroy.java, this is for 1.12 so for earlier versions like 1.8 it could be different), the usage...
  15. Tlatoani

    MundoSK Packets

    You can find some lists of packets at the end of the tutorial under the title “Helpful Resources”. I can’t seem to find forum threads talking about the bug you are describing so it would be good if you could send some links to these threads so I can help you further.
  16. Tlatoani

    Addon MundoSK

    MundoSK doesn’t have any syntax for it, you’ll have to use a Skript syntax or some other addon for it.
  17. Tlatoani

    Addon MundoSK

    That syntax can only be used for enchanted books, so if you want to modify weapon enchantments you have to use some other syntax.
  18. Tlatoani

    Addon MundoSK

    Is the tool you are trying to get enchants of an enchanted book?
  19. Tlatoani

    Addon MundoSK

    An announcement for all users of MundoSK's border syntaxes: in the version MundoSK 1.7.5-BETA.10.22, a config option has been added to disable the `size` syntax in favor of `diameter` in border syntaxes that involve the length (diameter) of the border. This should resolve the conflict between...
  20. Tlatoani

    MundoSK Packets

    This is a tutorial that will teach you how to use packets. What are packets? Packets are what Minecraft uses to send information between a server and client. Each packet has a packettype. Packettypes describe what kind of information a packet holds and for what purpose that information should...