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

    Solved Loop problem

    Hello guys I have another problem, when I run this code: command /vip [<player>] [<text>]: trigger: if arg 1 is set: if arg 2 is "Terrestrial": loop all players: send loop-players title "&6%arg 1% &aha comprato il pacchetto:" with...
  2. G

    Warp GUI help

    Hello guys I've created a warp GUI but when the player clicks on the item the command doesnt run. This is the code: command /warps: trigger: open chest with 6 row named "&bWarps" to player wait 1 tick format slot 0 of player with green glass pane named...
  3. G

    Solved Commands in GUI

    Hello, I have this code: command /enchant: trigger: open chest with 1 row named "&b&lEnchants" to player wait 1 tick format slot 0 of player with light gray glass named "lol" with lore "lol" to close then run "warp a" When the player click the item doesn't execute...
  4. G

    Solved Essentials balance

    Hello, I use Essentials + Vault for the player's balance. How can I set the Essentials balance to a variable in Skript? Thanks.
  5. G

    Solved Make player break certain blocks

    Hello, I made this Skript: on place: set {placedblocks.%player%} to location of event-block add event-block to {placedblocks.%player%} on break: if {placedblocks.%player%} contains location of event-block: wait 1 tick else: cancel event Because I want players...
  6. G

    Item name help

    on right click with quartz ore: if {meteorite.apertura.%player%} is false: if name of item of player is "&cMeteorite kit": remove item from the player's inventory Can't comprare "name of item of player" with a text... How to check the item name?
  7. G

    Per item level help

    How to set a level variable to an item? variables: {level.%item%} = 1 doesn't work!
  8. G

    Spawner help

    How can I set that a block spawns friendly zombies every 5 seconds? command /setspawnerblock: trigger:
  9. G

    Solved Variables help

    Hello, how do I make that every 100 blocks mined from the player, the console execute the command? variables: {minedblocks.%player%} = 0 on first join: set {minedblocks.%player%} to 0 on mine: add 1 to {minedblocks.%player%} #every 100 blocks mined from the player...
  10. G

    Solved Delete item help

    How can I do that when the player get the reward, the item disappear? on rightclick: if player's held item is 351:1: chance of 50%: create a fake explosion at the player give player 32 15 give player 64 cobblestone broadcast...
  11. G

    Solved Anvil help

    How can I set that when a player click the item with ID 351:6, the game open an anvil to the player with paper, the player need to write a custom name, and when the player confirm, execute the command "mv tp %player% %custom name in anvil%-1"
  12. G

    Solved Check block

    Hey guys, how can I check every second if a player or an arrow is in a certain block?
  13. G

    Solved World help

    Hey guys, this is my Skript: on rightclick with cookie: if player is in the world "oitc1": send "Test" I get this errors in the console: 'in the world "oitc1"' is not an entity type What can I do?
  14. G

    Solved Console spam

    When I do /sk reload all, Skript spam in my console this error "Using an ID instead of an alias is discouraged and will likely not be supported in future versions of Skript anymore" I know that I need to change the ID to the name of the block (but I can't), there is a method to ovveride it and...
  15. G

    I can't create GUIs

    When i try to use this code: open "CHEST" with 1 rows named "a" to player format slot 0 of player with grass to be unstealable This error appear in console: '"CHEST" with 1 rows named "a"' is not an entity type Help me plz
  16. G

    Solved Help with break event

    I want that the player can't break the block if isn't placed by him, how? THIS IS MINE SKRIPT BUT IT DOESN'T WORK: on break: if %block% is placed by %player%: wait 1 tick else: cancel event Is it possible? Thanks.