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. TPGamesNL

    HELP!!!Pretty dangerous

    Can you send it in code blocks? You can find them under the +:
  2. TPGamesNL

    HELP!!!Pretty dangerous

    Send your code
  3. TPGamesNL

    HELP!!!Pretty dangerous

    Why did you translate the error?
  4. TPGamesNL

    looping error

    You forgot `with lore`
  5. TPGamesNL

    Solved Error

    You have one } too many: set {pending::%{_uuid}}%} to true
  6. TPGamesNL

    Solved New Line question for json.sk

    Skript tooltips do support variables, you just have to use send formatted instead of just send.
  7. TPGamesNL

    Solved New Line question for json.sk

    It works normally, as long as you use Skripts tooltips: https://skriptlang.github.io/Skript/text.html (not using json.sk)
  8. TPGamesNL

    I kept on getting this error in console

    You need to show the full error
  9. TPGamesNL

    Unban Discord

    You should probably contact an admin to appeal.
  10. TPGamesNL

    Data Storage

    You can set a variable to `now` when the player kills another player. (For example, `set {lastkill::%attacker%::%victim%} to now`). Then, you can check how long ago that variable was, and handle it accordingly. PS That code isn't better, it's actually worse.
  11. TPGamesNL

    Solved Can't read if variable is set?

    Are you aware that every variable that starts with an underscore (_) is local, meaning it will be deleted after the trigger ends.
  12. TPGamesNL

    event-block is not a date (help still needed)

    You didn't remove the 'of'
  13. TPGamesNL

    Make entity break wooden slabs like in Hypixel Zombies

    What Skript and server version are you using?
  14. TPGamesNL

    Make entity break wooden slabs like in Hypixel Zombies

    You might want to try `top oak slab` instead of oak slab.
  15. TPGamesNL

    event-block is not a date (help still needed)

    Remove the 'of' in line 3 (loop all blocks in radius of 5 from event-block) And replace 'from' with 'around'
  16. TPGamesNL

    Solved Server crash

    It's because of the while loop at the end, it needs a delay
  17. TPGamesNL

    Solved Server crash

    You can go into files manager, than logs, than latest.log. It's at the bottom there.
  18. TPGamesNL

    Solved Server crash

    Show the crash log
  19. TPGamesNL

    How should I go about allowing numbers to go above 9.22e18?

    Can you try to set a variable to 10.1^19, then send that variable in chat / to console, and tell me the outcome. You can also store the number as 2 numbers, for example a and b, where the actual number would be a * (9.22E18)^b. If you want to use that system, I recommend you make some functions...
  20. TPGamesNL

    Solved I found error!

    The metadata expression from Skellett seems to conflict with the one from Skript. You can use `tag` to force the use of Skript's metadata (metadata tag "health" of clicked block)