skript

  • 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 comminuty!

    Now, what are you waiting for? Join the community now!

  1. R

    Skript Console Error

    Hey, I was just wondering if anyone knew why everytime I reload a skript I never get errors in game but console spits out a massive error Console Error In game
  2. N

    Solved Skript + Plotsquared being weird

    for some reason if i use "on block place:" event it still registers the block place if someone places it on the plotsquared road or another plot. not sure if this is a normal problem but i expected it to be like worldguard for example where worldguard removes the block before it registers.
  3. R

    Solved Trying to make a bossbar for a mob in SkBee

    I am making a boss fight that uses a blaze mob. When i run the command it creates a bossbar, but it does not update the bossbar with the health of the mob and does not make the bossbar invisible when the mob dies. command /blazetest: trigger: spawn blaze at location 1000.500, 160...
  4. S

    Minecraft Skript code custom amount of special iteam

    I made a item with !set {coins} to player's tool. Now should Admins can use the command and get the amount of {coins}. How can make a Code that can do this? Greetings, Jakob
  5. S

    Hey, someone know whats wrong with this code?

    Skript says line 15 "Can't understand this section: trigger". But idk whats wrong with it... command /Handbuch: trigger: if player's world is "MiniLeben": trigger: set {_waited} to difference between...
  6. Circuit2006

    true or false command

    I am wanting to make a command where if I do /test it'll set {test::%player%} to true or false depending on what it was previously
  7. stop all sounds

    command /1: trigger: stop all sounds at player why this code isn't working? skript 2.6.4 SkBee, skDragon, Skellett, SkQuery, skRayFall, Skript, skript-reflect, skript-votifier-hook*, Skungee, skUtilities*
  8. V

    Solved loop all player near players what have the scoreboard tag "Z":

    Stuck I want all players who were within 15 blocks of the player with the scoreboard "Z" to write a command every 15 seconds with a certain chance every 15 seconds: loop all players: if player have the scoreboard tag "Z": chance of 99%: wait 40 ticks
  9. F

    Server stops when skript loads

    Hello I when ever I put some files into skript it just dose not load them they are about 1k lines each and I have 11 skripts and they just don't load and if the server dose start up the skripts are not loaded when I try to load me they close the server... If you have any ideas on what may be...
  10. XpelaajaX

    Chest regeneration

    Hi! im making a battle royale game! I want chest system that works like so: 1. Clicking a chest breaks it, summons particles and drops items. 2. on command /chestregen all of the broken chests can someone please help me :D and also my skript plugin is not working beacause it just freezes the...
  11. T

    mythicmob cast skill

    Hello I want to know how can I make a player cast a mythicmob skill I have skript 2.6.4 mythicmob premium 5.1.4 mmskriptaddon 0.99e and spigot 1.17.1 thanks
  12. S

    How can i create an NPC like those in WynnCraft?

    Im looking to create NPC's similar to the merchants in wynncraft(mc server) that can turn their heads/bodys but can not move, im using skript and i dont want to add custom NPC because i dislike the GUI
  13. Z

    How to make mob name always visible

    So i want to make mob that have custom name that always visible can any one help?
  14. WhoCutTheCheese

    Solved SQLibrary for Skript SQL db

    I am attempting to store variables in a SQL database so that all the server's on my bungee have access to the same data, and I can't get my test server to start with SQLibrary, which the Skript config.sk file says it needs. Is there an alternative? Am I doing something wrong? Btw, there's no...
  15. M

    Solved Skript error during a condition

    I would like to check if the variable is already created if it's not created, then create it but I get an error in the console: on join: if {pb::%player%} is not set: set {pb::%player%} to 0 error: https://pastebin.com/RzmAZmB5
  16. 0

    How do you spawn a particle/visualeffect, at an event block? i have no plugins exept for the skript

    How do you spawn a particle/visualeffect, at an event block? i have no plugins exept for the skript plugin
  17. 0

    How to i add a cooldown to this command?

    i want to make it so when you rightclick the beehive it has a cooldown so you cant just spam it on right click on a beehive: chance of 10%: give player bamboo named "&3Lockpick" send "You Found A LockPick With A &l10 &rprocent Chance! Wow" to player chance of 5%...
  18. tycoo

    How to replace specific color codes in message?

    When I use "&5" in my chat message, it basicaly doing nothing with it. I can replace only "&" with "", but there will be "5" in the message. on chat: cancel event set {_msg} to message replace all "&5" with "" in {_msg} send {_msg} to all players
  19. S

    Check player's location and then play animation

    every tick: loop all players set {loc} to player's location if {loc} is 50026 13 50001: make console execute command "gamemode spectator %player%" freeze player teleport player to 50026 27 50001 wait 0.5 second teleport player to 50026 24 50001 wait 0.5 second...