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. 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...
  2. Hakuyamu

    Solved Quotation marks in a text

    Many thanks for filling this gap in my head :emoji_slight_smile:
  3. 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...
  4. Hakuyamu

    Minecraft Advent Calendar

    Thats just what I used, but as I said, the numbers are not realistic at all
  5. Hakuyamu

    Minecraft Advent Calendar

    Now I can compare them both, but the day changes every minute ??
  6. Hakuyamu

    Minecraft Advent Calendar

    set {aktuellezeit} to now parsed as an integer Returns: 'now' is not a text
  7. Hakuyamu

    Minecraft Advent Calendar

    If I do message "&F&lYour time: &a&o%day of month from date {aktuellezeit}%", it works and responds 26. If it stands completely alone, there's an error. How I compare a text and an integer? That seems to be the only problem
  8. Hakuyamu

    Minecraft Advent Calendar

    That does not work I tried this: set {_tmptime} to now if day of month from date {_tmptime} is 1: but it replies: Can't compare a text with an integer
  9. Hakuyamu

    Minecraft Advent Calendar

    But how can I compare the current date to a day of month as an integer?
  10. 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:
  11. Hakuyamu

    Solved Wait for argument seconds?

    Yes, I did. .. I'm not nooby at Skript
  12. Hakuyamu

    Solved Wait for argument seconds?

    Nope, does not work @BrettPlayMC
  13. 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...