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

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

  1. Hakuyamu

    text from url is "<none>"

    I cannot figure out why my code just gives me "<none>" instead of the content of the url. set {_votes} to text from url "https://minecraft-server.eu/api/votes/getForServer/1be38" message "{@prefix} &7Seit letztem Reset wurden auf &nVote1 &b%{_votes}% &7Votes gezählt!" The url...
  2. Hakuyamu

    Armor stand won't rotate in player's direction

    Hello everyone, I have some problems while figuring out how I can set the direction an armor stand is looking. I need this for a chairs script. It makes a player ride an invisible armor stand when rightclicking a stair. But due to the direction of the armor stand, the legs do not always look...
  3. Hakuyamu

    Problem with item holograms

    Hey guys, I have an issue with items in holograms where they won't be displayed sometimes and some won't appear at all (the shulker box and the sun flower). Server version 1.15.2, Skript: latest stable version. This is my Code: on click on player head: if {crate.isopening.%player%} is true...
  4. Hakuyamu

    SkQuery GUI formating problem

    Hello! This is my code i am using for creating a GUI: command /hystery: trigger: open chest with 5 rows named "&b[&fHystery GUI&b]" to player wait 2 ticks format slot 0 of player with {gui.slot0} named "" to run [execute player command "/givehead 1"] format...
  5. Hakuyamu

    Solved Quotation marks in a text

    Hello everyone There is a command you need a permission for to execute it. I want the permission message to be "&fUnknown command. Type "/help" for help.", but it does not work because Skript does not understand in which way the quotation marks belong to each other. This is how my script looks...
  6. Hakuyamu

    Minecraft Advent Calendar

    Hello! I need help with an advent calendar, which consists of different signs for each day. If you rightclick one of the sign, you will get free gifts. How can I check the current date? The players should only be able to get gifts for the current day or the past days. Thanks :emoji_slight_smile:
  7. Hakuyamu

    Solved Wait for argument seconds?

    Hello! In one of my Skripts I want to use a command which sets a variable to true and after a given time to false. This is an example: command /wait <number>: trigger: message "&2The value has been set to true for %argument% seconds" set {value.%player%} to true...