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

    Solved How to format slot with more than one glowing item?

    format slot 0 of player with glowing ender pearl named "Test" - Works format slot 0 of player with 2 glowing ender pearl named "Test" - Does not work
  2. F

    How to restore a backup?

    I've notice that Skript also contains a "Backup" file but never realised how to restore them: http://imgur.com/a/TC9V2 When I click on it, it creates a Microsoft Excel download, which is obviously what I don't want. How do I restore the backup?
  3. F

    Skript Bug #2

    My console is constantly being spammed with: https://pastebin.com/biqTTg9F
  4. F

    Skript Bug

    Hey, I've currently creating a custom parkour script and it recently has been working perfectly, but now - I'm not sure why but it generates an error which I don't understand: https://pastebin.com/sRj6FTDH Can anyone help me? :)
  5. F

    Scripts randomly stop working?

    Recently, I have been experiencing a strange bug which makes all of my scripts stop working, although I can still do /sk. To fix this bug I would have to restart the server - which is not ideal when you have to keep doing it. The scripts do work when the bug is no longer there, yet after a while...
  6. F

    Solved How to format slot in menu as a non-player head?

    Does anyone know how to format the slot of a menu with a non-player head from http://minecraft-heads.com/ Thanks
  7. F

    How to create a WG region from player's location?

    I want to make a Skript that creates a region, in a 50 block radius from the player's location.
  8. F

    Solved How to create a mob counter?

    I'm trying to create a mob counter, and just trying to count for 1 animal to make sure it works. The command works but it always says I've killed 0 chickens after I've killed many. My current code: on join: if {chicken.%player%} is not set: set {chicken.%player%} to 0 on death...
  9. F

    Solved JSON Doesn't work!

    I downloaded the Json.Sk plugin and installed it into my Skript folder and reloaded - which displayed errors: http://imgur.com/a/sjbaS Any idea how to fix this? Thanks :)
  10. F

    How to format a slot using a menu?

    I'd like to create a shop where players can buy items, but if they click on something they can't afford a barrier will appear for 2 seconds named "Error!" then go back to normal. I was wondering if this is possible, and if so, how?
  11. F

    Solved ActionBar not working

    My Skript: command /bar: trigger: send action bar from "&e&l>> &c&l5 &e&l<<" to player wait 1 second send action bar from "&e&l>> &c&l4 &e&l<<" to player wait 1 second send action bar from "&e&l>> &c&l3 &e&l<<" to player wait 1 second...
  12. F

    Solved Script commands not working?

    Hey, I am currently experiencing a very strange bug. None of my Skripts are working, which did before. When I enter the command made from a Skript it just says "unknown command, do /help". My Skript is up to date, I even tried restarting and uninstalling+installing it again; and nothing works...
  13. F

    Solved How to search for players, as well as mobs?

    command /safe: trigger: loop players in radius 10 of player: add 1 to {_n} loop monsters in radius 10 of player: add 1 to {_n} if {_n} is more than or equal to 1: send "&cThis is not a safe area!" else: send...
  14. F

    Solved How to take player's balance from an integer?

    {1000 subtract %money of player%} Just shows as "{1000 subtract 665}"
  15. F

    Solved How to take one of loop-item?

    player is holding a paper named "&e&lTest with lore "&dTEST!" loop all items in the inventory of player: if loop-item is paper named "&e&lTest" with lore "&dTEST!": remove ?????? loop-item from the player How do I remove only one of the loop-item from the player's...
  16. F

    Solved Add Permission to player

    How do I add a permission to a player? Here's what I have so far: format slot 10 of player with iron ore named "&c&lIron" with lore "&e&oClick here to unlock||&e&othe ability to mine||&e&oiron ore!||||&fPrice: &a$&c{@ironPrice}||" to close then run [add permission {@ironPerm} to...
  17. F

    Solved Mining Issue

    Hello, I am currently trying to make a Skript where you need to buy the permission to mine iron ore: on break of iron ore: if player doesn't has permission "mine.iron": cancel event send "&bYou can not mine iron! Buy the ability to do so with &e/unlockore %player%" else...
  18. F

    Player Skull

    How do I display a selected players head as an argument in a menu?
  19. F

    Solved Clickable Player Names

    Category: Chat / Tools and Utilites Suggested name: Dont mind What I want: A simple skript that allows staff with a permission to click on a player's name in chat to open up a menu which will have the options: kick, ban and mute. Ideas for commands: none Ideas for permissions: staff.punish...