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. Snow-Pyon

    Addon skript-yaml

    @KroterPvP setting variables to the options defeats the whole purpose of this addon. Just use the values directly.
  2. Snow-Pyon

    Skript NullPointerException when parsing with syntax

    Yes, on the Skript's issue tracker. And yes, it is gonna be added at some point, it just depends how easily we can implement it.
  3. Snow-Pyon

    Skript NullPointerException when parsing with syntax

    It shouldn't actually happen, but it does. Fill an issue about it and I'll check it out later. Also, it is because you can't (currently) have optional types in the parse expression. Side note: make sure you're using the latest version of Skript when reporting the error.
  4. Snow-Pyon

    How to put a banner and a head on the gui

    Don't use format slot. There are many things wrong with it, I recommend TuSKe's GUI Manager or vanilla Skript's set slot + the inventory click event.
  5. Snow-Pyon

    Found some nice solid skinheads for whoever needs them

    Moved to the Snippets section.
  6. Snow-Pyon

    Differentiated messages in Skript

    You don't even need json.sk in newer versions of Skript, you can simply do: send "<tooltip:something>hi <reset>%player%"
  7. Snow-Pyon

    Set player's tag above the head

    If you're just trying to nickname them, I would recommend MundoSK with ProtocolLib, it is as easy as doing: set player's nametag to player's display name set player's nametag for {some-specific-group-of-players::*} to player's name Remember that nametag is limited to 16 characters so you may...
  8. Snow-Pyon

    A help

    If you want ask simple questions you're always free of joining our discord server: https://discord.gg/q7UM6vJ There is also another Skript server (unrelated to this forum) that you may want join: https://discord.gg/V4qFVnh
  9. Snow-Pyon

    Help packet type

    Wiki.vg explains it greatly: http://wiki.vg/Protocol#Player_Position_And_Look_.28serverbound.29 http://wiki.vg/Protocol#Player_Look
  10. Snow-Pyon

    Solved Changing script on command/event

    The first example was good except one thing. As it is a variable, you'll have to surround the text with quotes. Like this: variables: type = "type1" Edit: sniped
  11. Snow-Pyon

    Nick

    Never cancel the chat event, many plugins/scripts use it for different purposes and cancelling could cause issues with them and other scripts. If you want change the format, use the message format expression.
  12. Snow-Pyon

    Solved Changing script on command/event

    Well, if I understood correctly, the OP wanted to use options since he wanted people to be able to change it in the script but also able to do it using a command so I can understand why he's trying to stick on options. Although this problem could have been solved in two or three posts if you...
  13. Snow-Pyon

    Solved Changing script on command/event

    Then, why not just use a variable? It is the simplest way to do it.
  14. Snow-Pyon

    How to say this in skript

    Use the Help Request Format before making a thread.
  15. Snow-Pyon

    Inventory Slot Canceling

    This looks like a XY problem, please explain what you're trying to do instead.
  16. Snow-Pyon

    Inventory Slot Canceling

    ah, if that's the case then just listen the inventory click event check if the event-slot is between 10 and 12.
  17. Snow-Pyon

    Inventory Slot Canceling

    You could use TuSKe and do it like this: open virtual chest inventory named "test" with 3 rows to player format gui slot 10 of player with 5 of stone to do nothing # or the other way around, for more complex stuff create a gui with virtual chest inventory named "test" with 3 rows: format...
  18. Snow-Pyon

    News New skUnity Forums Theme

    100 times better than the old one, I really like the flat design like style it has now (And that, the new color doesn't hurt my eyes every time I go to the forums).
  19. Snow-Pyon

    Pickup broadcaster

    just use "the item" and it should work
  20. Snow-Pyon

    using "||" in "if" statement

    you didn't explain anything, this is just another XY problem that could be solved by using something else in a different way. For example, boolean variables. The thing is: conditions list statements aren't a thing in Skript, but there aren't many cases where you actually need them, if you need...