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 comminuty!

    Now, what are you waiting for? Join the community now!

  1. L

    Solved split String at "\n"

    I was building my own GUI for "quests" but they actually sell a java GUI as un upgrade for 3$. I lost too much time searching how to do it. Then i though i found it when i found the keyword "split" (did multiple edit of this post each time i found new information xD) but then split didn't work...
  2. L

    Make NPC damage player

    Assuming you are using "skript-npc" (https://forums.skunity.com/resources/skript-npc.444/) You can use this pattern : make %citizen% (attack / follow) %LivingEntity%" I also found "attack (<entity>|...) (target:<entity>/cancel)" from denizen but the website and updates don't make me want to use it.
  3. L

    Solved Infinity Loop?

    It's usually what you will want to do. You don't want the server to be doing loops for nothing if the player leave the game. +1 this answer
  4. L

    Solved split String at "\n"

    Hello ! TLDR: I want to split text "variable \n variable \n variable" on each "\n" and turn "variable" into an element of a list. After looking in java code, docs and other horrible things i'm in front of this little easy problem but i just can't find the right exact way to write it. So i...