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

    Solved How to give shulker boxes containing stuff?

    You can set the shulker box you want to give as a variable then make in the gui on click event which gives the shulker box like this hold the shulker box containing the stuff and type in chat "!set {shulkerbox's variable} to tool" then in the gui code you add "give {shulkerbox's variable} to...
  2. S

    How to create custom quests using skript?

    on arm swing: # Sets the variable so players can use it if {zombieskilled::%player%} is not set: set {zombieskilled::%player%} to 0 command /quests: # Quest gui trigger: if {zombieskilled::%player%} < 10: set {_quests} to a new chest inventory with 1 rows with name...
  3. S

    Getting item in a certain slot.

    command /gui: trigger: set {_gui} to a new chest inventory with 3 rows with name "Gui" set slot 0 of {_gui} to diamond sword named "&bHello" open {_gui} to player set line 1 of slot 0 of current inventory of player's lore to "Good Bye" That's what works for me
  4. S

    GUI Shop not working?

    Try using this instead if player's current inventory's name is "&4Køb poletter!":
  5. S

    Solved Holo displays

    You can check this addon https://forums.skunity.com/threads/skript-holo.8853/
  6. S

    Solved Mine reset lite skript

    command /mrlerase [<text>]: trigger: if arg-1 is "Minename1": set blocks within {flocmine1} and {slocmine1} to air send "&a%arg-1% deleted successfully!" to player if arg-1 is "Minename2": set blocks within {flocmine2} and {slocmine2} to air send "&a%arg-1%...
  7. S

    I need a skript (pretty long)

    command /report <player> <text>: usage: &c/report <player name> <reason> - Please report a &6Player &cand type a &eReason trigger: if {reportcooldown::%player%} <= 0: if arg-1 is set: if {playerreports::%player%} contains "%arg-1%": send "&cYou already reported...
  8. S

    Solved player's prefix

    You can use plugins like vault or you can use on chat: set the chat format to "[prefix] %player%: %message%"
  9. S

    Need Skript

    What do you mean when 2 players in queue starts skript?
  10. S

    Right Click on Compass Cooldown

    You can use this template to use command cooldowns https://github.com/Njol/Skript/blob/master/src/main/resources/scripts/command%20with%20cooldown.sk