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

    NCP ERROR

    I recommend skript-npc over Skellett, it is better and still mantained.
  2. Snow-Pyon

    cancel stone breaking animation ?

    Just cancel the block damage event if the event-block is stone.
  3. Snow-Pyon

    Solved How to make players transparent

    import: org.bukkit.Bukkit effect make %players% [(1¦stop being)] transparent [for %-players%]: trigger: set {_viewers::*} to expressions-2 if raw expressions-2 exists, else all players loop expressions-1: set {_scoreboard} to loop-value.getScoreboard() otherwise...
  4. Snow-Pyon

    Toast Addon

    it shouldn't work though, since he forgot a semicolon there.
  5. Snow-Pyon

    > 1001 Not working?

    The {_exp} variable isn't set at that point. You have to do it in the following way for it to work: on mine: # I would use on mine of any ore tool is a pickaxe set {_exp} to first element out of (uncolored tool's lore parsed as "EXP: %number%") if {_exp} is greater than 1000: send...
  6. Snow-Pyon

    Solved Anyone remember HookSk?

    You shouldn't use HookSK, it is really old and might not even work anymore. What you want can be achieved with MundoSK and ProtocolLib, in the following way: on packet event play_server_chat: # chatcomponent pjson 0 of event-packet is the json message I've also made some utilities for the...
  7. Snow-Pyon

    Toast Addon

    # Send Toast effect made by that guy who uses functions in 2018 and Snow-Pyon # Needs: # skript-mirror # skript-json import: java.util.UUID ch.njol.skript.Skript org.bukkit.Bukkit org.bukkit.NamespacedKey org.bukkit.advancement.Advancement...
  8. Snow-Pyon

    NBT Tag not working

    It doesn't work with skull because it is "player head", and if it doesn't you can use the following custom syntax for it: effect: patterns: make %entities%'[s] [(display|custom)] name [permanently] [(1¦in)]visible make [the] [(display|custom)] name of %entities% [(1¦in)]visible...
  9. Snow-Pyon

    List Variable to All Files in Specified Directory

    Skript-YAML has a syntax to load all files in a directory.
  10. Snow-Pyon

    Interact Writable book

    I'm going to enhance the book support of Skript hopefully soon (wish me luck on my partial exams) and add JSON book support along. So, people might be able to make JSON books when the new version of Skript comes out.
  11. Snow-Pyon

    NBT Tag not working

    Don't parse IDs as items, that's a very pointless overhead. Also, the "CustomNameVisible" NBT tag is applied when you set their display name
  12. Snow-Pyon

    Function in separate file working?

    Functions are preloaded if you're using bensku's fork. So, it doesn't really matter.
  13. Snow-Pyon

    regex parsed

    Be more specific when creating a help thread and use the Help Layout.
  14. Snow-Pyon

    Server MOTD

    Not sure if the second option works so you may use the first one. If you have TuSKe you can do the following: set {_spaces} to first string matching " {20}"
  15. Snow-Pyon

    Server MOTD

    You just have to set the server version field, you can easily do it with skript-ping,
  16. Snow-Pyon

    Help with packets

    it requires MundoSK, not skQuery. And this event only works on 1.9 and above.
  17. Snow-Pyon

    skUtilities parse Date

    TuSKe has a last login expression that you could use instead of this.
  18. Snow-Pyon

    Animated Screen Title

    Nice catch, edited.
  19. Snow-Pyon

    Animated Screen Title

    It'll take a lot of lines if you do it that way, you're better off using loops. If I understood correctly, this is what you want: set {_alphabet::*} to split "abcdefghijklmnopqrstuvwxyz" by "" set {_message} to "" loop {_alphabet::*}: set {_message} to "%{_message}%%loop-value%" send player...
  20. Snow-Pyon

    MySQL help.

    You can use skript-db for anything related to databases.