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

    Documentation Examples Wrong or Bug?

    This was a bug where the examples from the syntax elements got mixed, it's fixed now but the examples that got mixed need an update to be what they were before.
  2. Snow-Pyon

    Other Custom effects and expressions with skript-mirror

    this isn't the case of functions, only of skript-mirror custom syntaxes. I'll see if I can fix it, no promises though.
  3. Snow-Pyon

    Other Custom effects and expressions with skript-mirror

    It's an already known bug of dev30+, you'll have to put the custom effect in another script that is loaded before the script that is using the custom effect for it to work.
  4. Snow-Pyon

    Addon MundoSK

    it should be: set tablist name of player for all players to "whatever" Although using it this way is kinda pointless, if you're setting it for all players then using Skript's tablist name expression should be fine.
  5. Snow-Pyon

    Solved Where are the original skript commands an events...

    Skript is incompatible with Craftbukkit, use either Spigot or PaperSpigot (recommended).
  6. Snow-Pyon

    Worldborder setcenter Skript-mirror

    Then just use Java lol
  7. Snow-Pyon

    Worldborder setcenter Skript-mirror

    Why are you using skript-mirror for this? You could easily use MundoSK.
  8. Snow-Pyon

    AtherialSK NEW! ADDON [COMING SOON] [LOOKING FOR SUGGESTIONS]

    You aren't wrong, it's impossible to detect accurately, there are ways but no reliable ones. Imagine the following case: I have a server using Skript and this addon, at some point, it stops being updated and I want update my server but uh, this addon doesn't work in newer versions. Now, I have...
  9. Snow-Pyon

    How do I fix this lambda statement error?

    The solution is not using skQuery's format slot, it's buggy and no one should be using it at this point. Boobah's Punishment GUI is just one of the worst famous scripts (followed by MPCore). It'd be better to just make your own using TuSKe's GUI Manager or set slot and inventory click.
  10. Snow-Pyon

    Solved Skript Broken

    https://github.com/bensku/Skript/commit/db04c5b9b55b1d32a249d24e03ca9142dd175c6a
  11. Snow-Pyon

    Solved Skript Broken

    Skript doesn't work with Craftbukkit so you may want use Spigot, PaperSpigot is preferred though. and use LimeGlass's skQuery fork.
  12. Snow-Pyon

    Variable permission (message) in commands

    You can't do this currently, it'll be soon possible though, maybe for the next Skript version.
  13. Snow-Pyon

    Variables list update

    You don't have to do this actually, if you do: on rightclick on entity: show clicked entity's inventory to player Skript will automatically update the opened inventory.
  14. Snow-Pyon

    Solved Skript Broken

    I'll add it for the next version of Skript, meanwhile you can use skQuery's flight mode expression, it's settable.
  15. Snow-Pyon

    Moving/Walking Condition

    This condition has been removed since it was laggy; you could try something like the following though: every 3 seconds: loop all players: if distance between {last-location::%loop-player%} and loop-player's location is 0: set loop-player's food level to loop-player's food level...
  16. Snow-Pyon

    Solved Skript Broken

    1. There is no such thing as "compatible with each other" every error you've received is something specific to your server. 2. You probably don't need all the addons he's using so that's useless. The version I recommend for 1.8.8 is the latest from the bensku's fork (dev33), even if 1.8.8 isn't...
  17. Snow-Pyon

    AtherialSK NEW! ADDON [COMING SOON] [LOOKING FOR SUGGESTIONS]

    Being honest, I'm glad that this addon never actually enacted, we don't need more bloated addons in this community.
  18. Snow-Pyon

    Solved Removing specific enchantments on a player's held item

    Did you try with the latest version of Skript?
  19. Snow-Pyon

    Multiple types in one argument

    Just accept text in and parse it to an integer when needed.
  20. Snow-Pyon

    Solved Resourcepack deny Skript-mirror

    You can 't use it directly, you have to import the inner enum first (inner classes are delimited by the dollar sign): on script load: # You don't have to import the event import "org.bukkit.event.player.PlayerResourcePackStatusEvent$Status" as {ResourcePackStatus} Then to reference the enum...