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

    death cause

    Yes, you can check the cause, the attacker and the entity that died. Examples: on death: damage cause is fall: #action on death: if attacker is a player: #action on death of a player: #action
  2. G

    Solved Rankup Script Help

    You use %{%player%.points}% only if you want to show a variable, if you want to compare use {%player%.points} command /2: trigger: if {%player%.points} is between 10 and 999999999999999999999999: make console execute command "/manuadd %player% rank2" make...
  3. G

    Hey can you fix my scoreboard skript?

    So as @Marsbar said if you are using an economy plugin and not a custom money skript the scoreboard skript will be: options: ScoreboardName: &f&lbalala every 2 second: loop all players: wipe loop-player's sidebar set name of sidebar of loop-player to...
  4. G

    Display Names

    You need to install Skrayfall and then try this code: every 2 seconds: loop players: set the loop-player's display name to "%{rank.%loop-player%}% %name of loop-player%" set loop-player tab name to "%{rank.%loop-player%}% %name of loop-player%"
  5. G

    Hey can you fix my scoreboard skript?

    Try this Skript: options: ScoreboardName: &f&lbalala every 2 second: loop all players: wipe loop-player's sidebar set name of sidebar of loop-player to "{@ScoreboardName}" set score "&b" in sidebar of loop-player to 4 set score "&b&lPLAYER" in sidebar...
  6. G

    Screen Text

    You can set text above the items name (actionbar) but with addons. Skellet: show an action bar from "test" to player Skryfall: set action bar of player to "Hi" Example:
  7. G

    Screen Text

    Do you mean this? This is in the center of the screen. send player title "Hello" with subtitle "Hello" for 5 seconds Example:
  8. G

    Solved Loop problem

    Thanks, now works correctly!
  9. 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...
  10. 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...
  11. G

    Solved Commands in GUI

    Done.
  12. G

    Solved Commands in GUI

    Now works. Thanks.
  13. G

    Solved Commands in GUI

    "warp a"] is not a text
  14. 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...
  15. G

    Solved Essentials balance

    Thanks.
  16. 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.
  17. 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...
  18. 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?
  19. G

    Per item level help

    Ok thx, I will try this