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 Skript only returning "/skript help"

    Have you tried not reloading the plugin / server? It often causes issues
  2. TPGamesNL

    Solved Skungee Network variables return as <none>

    Skungee's network variables require a string as input, not an actual variable. For example: set {_test} to network variable "test"
  3. TPGamesNL

    Solved Variable problem using Vixio

    A debug message is a simple send message effect that can tell you what your code is doing, for example `send "name: %{_name}%" to console`. In your case, I recommend you to add some debug message before and after the line `reply with ...`, because I think that's where it goes wrong
  4. TPGamesNL

    Solved Variable problem using Vixio

    Can you add some debug message with one of the variables, so you can see when it stops working?
  5. TPGamesNL

    Minesweeper

    the one with the cursor was clicked, the one with the black circle didn't open. Minesweeper doesn't use the pattern #X# X0X #X#
  6. TPGamesNL

    Minesweeper

    Why did it not open the top left slot (slot x,y=0,4) at 0:50 (click on slot x,y=1,5)
  7. TPGamesNL

    Solved Issue about Skript-Mirror

    The method is not static, so you have to call it on an instance of AuthMeApi. In the case of AuthMeApi, that can be achieved with AuthMeApi.getInstance().isAuthenticated(player)
  8. TPGamesNL

    Send resource pack with skript-mirror

    The exact purpose of the hash is to do the opposite. It's supposed to serve as a cache for the client, so that it doesn't download the resource pack again when the hash of that resource pack is the same, to prevent unnecessary downloads on the client. If you want the client to download the...
  9. TPGamesNL

    Send resource pack with skript-mirror

    If the old file downloads when you send the resource pack again, you simply provided either the wrong link or hash.
  10. TPGamesNL

    Send resource pack with skript-mirror

    If you have Paper, you can use `Player#setResourcePack(String url, String hash)`, so you don't need to convert it to a byte array. If you don't have Paper and don't want to use it, tell me your Skript + skript-mirror version.
  11. TPGamesNL

    Send resource pack with skript-mirror

    What server version are you using?
  12. TPGamesNL

    Send resource pack with skript-mirror

    Make the variable single (not a list variable)
  13. TPGamesNL

    Send resource pack with skript-mirror

    The method I send earlier, returns a byte array, so you'll have to save its output. Also, you need to hash the zip file (not the string) with SHA-1, not MD5: Also, make sure you have an actual url in there (not sure if you've got `mylink.zip` because you don't want to show the url or because...
  14. TPGamesNL

    Send resource pack with skript-mirror

    The second argument is a byte array, but your argument is a string. Use `DatatypeConverter.parseHexBinary({_string})` (javax.xml.bind.DatatypeConverter)
  15. TPGamesNL

    Send resource pack with skript-mirror

    You don't need to import it.
  16. TPGamesNL

    HELP!!!Pretty dangerous

    Can you send your attempt?
  17. TPGamesNL

    HELP!!!Pretty dangerous

    That's another step in the right direction! The remaining issue is that you have `every second` under a command, so you need to take it out of the command, like so: every second: loop all players:
  18. TPGamesNL

    HELP!!!Pretty dangerous

    Well, I'm not gonna do that. Give it a try first, doesn't matter if it's wrong, and send it, then I'll take look at that.
  19. TPGamesNL

    HELP!!!Pretty dangerous

    There are currently 2 things wrong with your code: 1. You have an `else if` after a `else`, which isn't possible, you need to switch them around. 2. You have a trigger (`every 5 seconds:`) under another trigger (`command /...`), which also isn't possible. You need to treat `every 5 seconds` as a...