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

    Solved split String at "\n"

    Local variables will be deleted after the trigger ends
  2. TPGamesNL

    Solved split String at "\n"

    Is this solved? You marked it as such, but since you said you're new here, I'm not sure if you meant to. For your issue, Skript doesn't currently have a way to get a newline character, but there are some addons that can provide that. For example: SkQuery, SkUtilities (number 9) or skript-mirror...
  3. TPGamesNL

    Skript Round Number

    Use the round function or expression
  4. TPGamesNL

    Load world

    loadWorld isn't actually a method in the Bukkit class, you need to use createWorld: Link 1 / link 2
  5. TPGamesNL

    Remove last character from string

    Use the subtext expression along with the length expression.
  6. TPGamesNL

    My Skripts suddenly stops working (help)

    Send your code
  7. TPGamesNL

    /skript help message

    Check your console, it has an error. Send that error here.
  8. TPGamesNL

    Solved Opposite of function abs()

    `{_x} * -1` will make a positive number negative, and a negative number positive
  9. TPGamesNL

    What is wrong with my skript plugin???

    He's running Skript 2.4.1, which only works on 1.9+ (so that's what they're using, the error would be a lot different if they were using anything below 1.9), and it is the latest stable release from Skript.
  10. TPGamesNL

    What is wrong with my skript plugin???

    No it definitely does not. It is a stackoverflow error caused by regex, and it's probably a bug in the latest version of Skript: #2752
  11. TPGamesNL

    What is wrong with my skript plugin???

    That version is almost 6 years old, has a lot of bugs (and way less features than the latest version of Bensku's fork), and probably doesn't work on newer server versions. Why do you first tell someone to upgrade their Skript version, then recommend them an ancient six years old Skript version...
  12. TPGamesNL

    What is wrong with my skript plugin???

    You should also try the second (google how to do so). This error can also be caused by having to complex script lines, so try disabling all scripts and see if that works.
  13. TPGamesNL

    What is wrong with my skript plugin???

    Let me sum up the solutions from that webpage for you: Also, I don't recommend marking the post as solved when you haven't found a solution.
  14. TPGamesNL

    What is wrong with my skript plugin???

    When you have huge errors like these, I recommend pasting them somewhere else (such as pastebin). For your issue, please take a look here. All the solutions can be found there.
  15. TPGamesNL

    Script Error

    Lore is a list, so you need to store it in a list variable.
  16. TPGamesNL

    Solved Reveal player from all players

    Try with this syntax (preferably the `for %players%` form)
  17. TPGamesNL

    Solved Reveal player from all players

    Could you quickly try without Skellett and SkQuery (just to see if it works, you can put them back afterwards)
  18. TPGamesNL

    Solved Reveal player from all players

    What addons do you have?
  19. TPGamesNL

    Solved Reveal player from all players

    Try `reveal {_p} for all players`
  20. TPGamesNL

    uuid of player to players name

    You can parse UUID's as players, that way it will be a player object again. This, however, is pretty inefficient, as it slightly lags the server everytime it is ran. An alternative is to save a player object when a player joins (or just the player's username) in a list variable, with their UUID...