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

    How do I add new lines to kick player due

    \n should work, you could also use skQuery's new line expression.
  2. Snow-Pyon

    Solved how to change player's knockback?

    This is pretty much an exact copy of SmoothKnockback, you can look at it and see how it works (untested): https://code.skript.pl/LW819vpA/
  3. Snow-Pyon

    Solved Enchanted items and ender chest items?

    1. You use the following format for an item with enchantments: [<amount> [of]] <item type> [of <enchantments>] Example: add leather helmet of sharpness 1 to player's inventory set player's tool to 20 sticks 2. You have to first get the location of the ender chest like this: set {_location} to...
  4. Snow-Pyon

    Addon skript-npc

    Just disable the hook in Skellett's config
  5. Snow-Pyon

    Addon skript-npc

    @Nano suggestion: add a citizen -> entity converter so people can use that kind of effects with citizens. Please don't do something like the entity from citizen expression from Skellett, that's a really bad design.
  6. Snow-Pyon

    Pearlthrough fence gates

    Right, edited the post in case someone else needs it. Kinda surprised it worked to be honest lol
  7. Snow-Pyon

    Addon skript-npc

    Just use the vanilla Skript's mount effect?
  8. Snow-Pyon

    help with sk reload

    1. Update Skript. 2. Don't use craftbukkit. 3. Update your server to 1.8.8, nothing will work otherwise. 4. I'd recommend using PaperSpigot.
  9. Snow-Pyon

    Pearlthrough fence gates

    on projectile hit: projectile is an ender pearl if event-block is a fence gate: shoot event-projectile 1 meter in front event-block set velocity of last shot projectile to velocity of event-projectile # Needs RandomSK or the latest version of Skript (bensku's fork) delete...
  10. Snow-Pyon

    Command Cooldown help

    That else triggers when the player isn't muted, doesn't check whether the cooldown is working; it should be if, else if and else for it to work properly. Also, if you're using 1.9+ and the bensku's fork, you can get this version...
  11. Snow-Pyon

    location variables

    You can't fix this sadly, when a world is unloaded, the world from that location is nulled due to it not existing anymore. A workaround however would be saving it as a text and then parsing it to a location when the world is loaded, so it isn't nulled that way.
  12. Snow-Pyon

    Skript Skript Coding Conventions

    do is the most useless effect ever and check should be used only in very specific cases (stringfy a condition and withing the Iif aka ternary operator). Both expressions take pretty long to parse so it becomes a problem at some point.
  13. Snow-Pyon

    Addon [Deleted] SkUniversal

    why limit it to players, LuckPerms has ways to get permissions from offline players
  14. Snow-Pyon

    Potions

    what did you try?
  15. Snow-Pyon

    layer by layer

    I saw it however, it's the same case, it will have a different impact with many players executing it. Your code has to go through all the blocks in the chunk, check if they aren't air nor bedrock, and then set these blocks to air, the calculation itself could be expensive at some point. So, if...
  16. Snow-Pyon

    layer by layer

    it might be normal for a player within a local server (no latency), but what about a server with i.e: 50 players? 50 of which let's say 13 execute this effect, don't you think it will lag if 13 personsa re doing it within the same amount of time?.
  17. Snow-Pyon

    Solved Set block at (location) to skull? Can't find way to do this.

    #put this in a script called "!!!syntaxes.sk" get blocks property skull owner: loop expressions-1: set {_state} to loop-value.getState() add {_state}.getOwningPlayer() to {_output::*} continue returning {_output::*} change blocks property skull owner: loop expressions-1...
  18. Snow-Pyon

    YAML errors

    Use skript-yaml, it's the best addon for it.
  19. Snow-Pyon

    Loop Values

    Abusing of variables like that will end up very bad. Here some tips: Never use {this.format}, it doesn't cause more than issues. instead of having a variable that checks if they're playing ({arena.playerplaying.%player%}) and a variable that stores all the players playing...
  20. Snow-Pyon

    Help With "is not an item" error

    The first thing you've done wrong is using skQuery's format slot; switch to TuSKe's GUI Manager, it's way better than the bugged format slot of skQuery.