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

    skUtilities parse Date

    What are you trying to achieve with this? There are probably better ways to do it. Also, I wouldn't recommend skStuff, it is unstable and about to become unusable when 1.13 comes out.
  2. Snow-Pyon

    Help with Online donors

    The display name doesn't contain the prefix so that won't work for him
  3. Snow-Pyon

    Help with Online donors

    Skript has a prefix/suffix expression which you can use for that.
  4. Snow-Pyon

    Skript loading Timeout

    try using "make" instead of "create". Also, I recommend you use list variables (the ones delimited by two colons), because {this.format} (delimited by a dot) will become a problem at some point.
  5. Snow-Pyon

    Animations

    You can do the first thing with MundoSK and ProtocolLib. I made a snippet which you can check out in my snippets thread. The second thing is a bit harder and I would straight up use Citizens or a similar plugin.
  6. Snow-Pyon

    How to change GUI name / title?

    why are you using Skellett for opening chests and TuSKe for formatting slots? lol You can use TuSKe to open inventories: open virtual chest inventory with 5 rows named "<orange>TEST" to player Also, you can set the display name of an inventory if you're using bensku's fork like this: set...
  7. Snow-Pyon

    Help with a list

    An easier way to do it would be using TuSKe and its page expression: command /warp <text="list"> <page:number=1>: trigger: if argument-1 is "list": set {_warps::*} to page abs(argument-2) of {warp list::*} with 10 lines # using the absolute value function just in-case the user...
  8. Snow-Pyon

    Solved amount of items on a recipe

    why are you parsing ids as items? That's just pointless, use the item aliases.
  9. Snow-Pyon

    [on chat:] with MySQL variables (Help me)

    1. You shouldn't use that version of Skript, use bensku's fork instead. 2. I wouldn't recommend skQuery's SQL, it has its issues and can cause lag that way. Use skript-db instead.
  10. Snow-Pyon

    How to do this

    Last time I'm telling you this. Be specific when creating a thread, the actual issue isn't even related to the thread itself.
  11. Snow-Pyon

    Solved Custom NBT

    https://forums.skunity.com/threads/warning-try-to-avoid-nbt.6260 There are better ways to do this, with metadata values or variables.
  12. Snow-Pyon

    Solved Alphabetical order

    Skript also does, I just answered you on Discord lol
  13. Snow-Pyon

    Solved Umbaska and TuSKe error

    With skDragon it would be: drawDot particle heart, center location(255, 4, 255, world("world")), visibleRange 16 But you can also do it with vanilla Skript if you're using bensku's fork and 1.9+ play heart on location(255, 4, 255, world("world"))
  14. Snow-Pyon

    Solved Umbaska and TuSKe error

    Why are you installing Umbaska? There are better/mantained addons that have the same features it has now; if you tell us what features from it you would like to use, we can suggest a replacement.
  15. Snow-Pyon

    How to get a number started by a

    I'm closing this thread since it went too far just because the OP wasn't clear with what he wanted help with. Next time, use the Help Layout and explain your problem better.
  16. Snow-Pyon

    Solved Amount items

    If I understood correctly, you want to check how many items with a specific name the player has in his inventory right? If so, the following should work: set {_amount} to amount of slime ball named "item" in player's inventory
  17. Snow-Pyon

    Solved how to change world of a location?

    If you're using the latest version of Skript, you should be able to do it. Otherwise, just set the location variable to a new location with the same coordinates and a different world.
  18. Snow-Pyon

    /spawnmob -ish type of command help

    1. You only use percent signs within texts ("this is a text") to parse expressions. 2. The argument type has to be "number" or "integer" for it to work. 2. You just have to put an "of" between the amount and the entity type (creeper in this case). Of course, this won't work either way if you...
  19. Snow-Pyon

    [Feedback Required] Docs data reset & fresh import

    That totally depends on the addon developers and users, we just provide a way to display that information. As far I know @btk5h (skript-mirror's creator) doesn't like web-based documentations so he isn't going to use our documentation. We could ask him whether we are allowed to upload it here at...
  20. Snow-Pyon

    Already a text?

    There is no way to suppress the warning and I don't plan implementing a way to do so anytime soon. Skript should parse that line correctly as far I can see.