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

    Recipe Manager (1.13.2+ ONLY)

    Now I feel really stupid. :emoji_slight_smile:
  2. aescraft

    Recipe Manager (1.13.2+ ONLY)

    Well, something is off. I used the command /minecraft:recipe give, and it says that the recipe does not exist. So, this is not working (the recipe register part.) I just copied your code and edited just the recipe part, and it works for you. I'll paste it all here so you can see: import...
  3. aescraft

    Recipe Manager (1.13.2+ ONLY)

    Weird that i can't find the custom head in the recipe book, even using this (while you can see in the recipe book): on join: discover recipe "jukebox" for player I'll try to change to a specific plank.
  4. aescraft

    Recipe Manager (1.13.2+ ONLY)

    Any idea on why this is not working? (no errors, but won't craft in craft table): on skript load: set {_nbt} to...
  5. aescraft

    Recipe Manager (1.13.2+ ONLY)

    "When recipes are added to the server, they are not automatically unlocked for players. For some silly reason, unlike other items in the recipe book, players cannot seem to unlock recipes in-game until they have crafted said item. Silly right!?! So I added another syntax for you to unlock...
  6. aescraft

    Solved A script which punishes the execution of certain commands with Ban

    Do you really think it's a good idea to ban people just to try to use a command? You can give people perms by using Luck Perms.
  7. aescraft

    Addon SkQuery [1.13-1.21+]

    Was regex removed from SkQuery?
  8. aescraft

    Solved Chat Delay

    Sorry, is not my intention.
  9. aescraft

    Solved Chat Delay

    There are two problems with your skript: First is your variables. You are not using list variables. Using simple variables like {something.%player%.timer} instead of {chatdelay::%player%::timer}, you will lost the ability to delete all variables. To delete all variables with a list variable...
  10. aescraft

    On consume of named item

    on consume of bread named "&fToast": broadcast "it's a bread"
  11. aescraft

    Vanish system

    If player says a nickname on chat of those who is vanished, cancel the message. This is kinda dumb, this way a player know with other user is vanished just by typing the name on chat (it will cancel the message). ------ OP: You should cancel the /tell and /r commands to be sent for vanished...
  12. aescraft

    On consume of named item

    on consume of bread: broadcast "it's a bread" if name of event-item is colored "&fToast": broadcast "it's a toast!" Try this to check if its detecting
  13. aescraft

    Tuske is dead? No more GUI stuff?

    Skquery I think.
  14. aescraft

    Fill GUI with random blocks

    Better to make a CAPTCHA, agree?
  15. aescraft

    Loot Chest

    Prob best to use a location instead of name of the chest to check if it's the chest.
  16. aescraft

    enchantment request

    Prob is best to use this instead of "every second" and loop all players. on player's tool change: if lore of player's tool contains "&9Speed Modifier": set {_lore} to lore of event-item replace colored "-- &9speed modifier" in {_lore} with "" replace colored "&5--"...
  17. aescraft

    Solved Coloured leather armour in GUI's

    Can you share the code? others may need it later
  18. aescraft

    Solved Coloured leather armour in GUI's

    you can use the gui you want
  19. aescraft

    Solved Coloured leather armour in GUI's

    https://forums.skunity.com/resources/sk-nbeet.704/ try this
  20. aescraft

    Solved Coloured leather armour in GUI's

    set {_nbt} to "{display:{color:8405056}}" format gui slot 22 of player with leather chestplate with custom nbt "%{_nbt}%" named "&7Knight Chestplate" to be unstealable OR format gui slot 22 of player with leather chestplate with custom nbt "{display:{color:8405056}}" named "&7Knight...