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

    Solved Weird error in console

    List all of your plugins. It's possible that your version of Skript doesn't support balance, or you don't have Vault.
  2. Blue

    Name of dropped item

    Item names don't transfer onto item entities. Use the NBT data of the dropped item and look for the Display:{Name:"<actual item name>"} NBT tag.
  3. Blue

    Solved Weird error in console

    Don't spoonfeed. Although the code should work. The console is probably confused about the § symbols, Skript uses &s instead, for clarity, ease of typing, and to work around the fact that RegularExpression replacement uses section signs as group symbols. Also, currently your skript is hardwired...
  4. Blue

    Solved Skellett not working?

    That's nothing to do with Skellett. I can walk you through the errors and how to fix them. So, everything talking about name conflicts in variables is default Skript behaviour, nothing to be concerned about. It does look like your Detect() function expects a boolean instead of a text for the...
  5. Blue

    1.13 Cactuses physics

    Try this version. https://github.com/SkriptLang/Skript/tree/2.3-beta3 The newest should also always be shown as the first entry at https://github.com/SkriptLang/Skript/releases.
  6. Blue

    2 in 1

    You need to parse loop-value as a player
  7. Blue

    Script Scrolls

    Reindeerie submitted a new resource: Scrolls - Customizable, great command execution scrolls for your server! Read more about this resource...
  8. Blue

    Script Scrolls 0.4.1

    :emoji_large_blue_circle: Description :emoji_large_blue_circle: This skript is an easy-to-use scroll add-on for your server! Once you create a scroll, you can give it to players with commands (making external giving of them incredibly easy!) and allowing them to execute commands by...
  9. Blue

    How to make mob gardian beam

    If you want to make a dog shoot the guardian beam, I suggest you either 1. Teleport the dog to the guardian or 2. Make the guardian ride the dog
  10. Blue

    2 in 1

    Try y-coordinate of loop-value Oh, and what does {colormatch::*} contain?
  11. Blue

    Solved Toomanypackets

    You can change the maximum packets per second in the options menu.
  12. Blue

    Solved Toomanypackets

    Yes, I've made the skript. I'll make an option for the maximum amount of ticks per second, oh, and by the way, I disabled it for 3 seconds on connect, due to the fact that the client sends a lot of packets when you log in. EDIT: i'm slow it's done
  13. Blue

    Solved Toomanypackets

    I'm on it.
  14. Blue

    Need help

    A skript to mute or ban players for a timespan?
  15. Blue

    function hasPlayed(player: string) :: boolean: loop all offlineplayers: "%loop-value%" is...

    function hasPlayed(player: string) :: boolean: loop all offlineplayers: "%loop-value%" is "%{_player}%" return true loop all players: "%loop-value%" is "%{_player}%": return true return false Here I am, spoonfeeding Skript. =p