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 Reveal player from all players

    What code are you using to hide players?
  2. TPGamesNL

    Solved Why does it crash my server after someone moves when he was afk?

    If you look at lines 18 and 19 from the `on any move` trigger. Line 18 (the teleport) teleport the player, which triggers the event again, which teleports the player again, which triggers the event again, and so on, until the server crashes. What you have to do, is set afk variable before...
  3. TPGamesNL

    Similarity for my skript

    You can use the Levenshtein distance (Skuared has support for it)
  4. TPGamesNL

    Permission Counter

    Try size of (all players where [input has permission "test.permission"])
  5. TPGamesNL

    I need help with custom commands!

    You should check the console for errors (on startup, while reloading or when you run the command)
  6. TPGamesNL

    Solved Fishing (Small Script)

    You should add a debug message for `fishing state`, to see if you're using the right comparison
  7. TPGamesNL

    Solved Why doesn't work why function?

    Technically nothing, but Skript's parser isn't that great, so for some reason it doesn't recognize that. You need to set a local variable to the UUID, then use that in the variable.
  8. TPGamesNL

    Solved Why doesn't work why function?

    Try reinstalling Skript. Also try without SkQuery.
  9. TPGamesNL

    Solved Why doesn't work why function?

    Do you have SkQuery? If so, update it
  10. TPGamesNL

    Solved Why doesn't work why function?

    For Spigot 1.8.x, try 2.2-dev36
  11. TPGamesNL

    Solved Why doesn't work why function?

    You're using an outdated Skript version which doesn't have functions yet. Update to a newer Skript version (link)
  12. TPGamesNL

    Solved Connecting With MySQL (Skellett) [SOLVED]

    Skellett has removed MySQL from the addon completely, probably with reason. You should use another SQL addon instead (SkQuery, skript-db, etc)
  13. TPGamesNL

    teleport player to location at (63,53,-145) in world "world" not working

    Yes event in a command You're using the wrong kind of quotes (“”, should be "") and the indentation on the 3rd line is off by 1 space.
  14. TPGamesNL

    Bugg with removing items

    It's probably a Skript bug (#2714). You will have to loop over the items manually, checking their item type, then checking name, then lore etc.
  15. TPGamesNL

    help get region corners pos 1 , pos 2

    They probably don't want that, since WorldGuard is supported by many plugins, and I doubt that any plugins will add support for some script. You can indeed use skript-mirror for this. Let's say you have a region saved in `{_region}`. To convert it to an actual WorldGuard region, you can use...
  16. TPGamesNL

    Solved Connecting With MySQL (Skellett) [SOLVED]

    Check console for any connection errors. There is also a seperate expression for host and port
  17. TPGamesNL

    Solved Fishing (Small Script)

    You should probably add some debug message before your conditions, to see which code does get executed and which code doesn't.
  18. TPGamesNL

    Bugg with removing items

    If you just want to remove 1 from the item the player is holding, try `remove 1 from item amount of tool of player`
  19. TPGamesNL

    teleport player to location at (63,53,-145) in world "world" not working

    Try this: `teleport player to location at 63, 53, -145 in world "world"`