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

    Solved Tuske

    Well, i prefer to use Vanilla inventories. But if i remember correctly, for TuSKe it was something like this: format a gui slot 0 of player with grass block to do nothing #Or the block you want.
  2. couger44

    How do I add arguments to a list?

    You have to put "trigger" when you go to create a command. command /friend [<string>] [<offline player>]: trigger: #... Also, you have a bit of unnecessary code. Could reduce it to like this: command /friend [<string>] [<offline player>]: trigger: arg 1 is "add"...
  3. couger44

    Solved player's prefix

    Do you have Vault in your server?
  4. couger44

    Error making a loop

    The correct syntax is like this: command /allitem: trigger: loop {custom.items::*}: give loop-value to player
  5. couger44

    armor stand helmet issues.

    Wait... this is a Java Section. You should post this in skript section.
  6. couger44

    Display name

    What skript's version are you using?
  7. couger44

    Display name

    If I remember correctly, it was SkRayFall.
  8. couger44

    Display name

    Well... i think that this need a addon, but this should work: command /test <player> <string>: trigger: set nametag of arg 1 to "%arg 2%"
  9. couger44

    Display name

    Ohh... do you mean to 'nametag'?
  10. couger44

    Display name

    Do you have a skript that modifies the chat?
  11. couger44

    1.16 does not recognize the 'color code'.

    I said it for a reason. It happened to me once that I didn't recognize the colors when I used the '&', so I had to use the '§'.
  12. couger44

    Display name

    Syntax is not well formulated. The correct way would be something like this: command /test [<text>]: trigger: arg 1 is set: set player's displayname to arg 1
  13. couger44

    Execute a variable command when mob is killed by a player

    The spaces / tabs must be well entered with the exact amounts. Try something like this: on death of zombie: add 1 to {morto::%player%} if {morto::%player%} = 5: set {morto::%player%} to 0 if player has permission "grupo.vip": make console execute "p give...
  14. couger44

    Solved Lightning strike at death.

    Try: on death: if victim is a player: strike lightning effect at the victim
  15. couger44

    Help with display name

    Do you have Vault and a permission plugin?
  16. couger44

    1.16 does not recognize the 'color code'.

    Did you tested with '§' instead of '&'?
  17. couger44

    set variable to random "string(not interger)"

    This syntax work to me: open metadata tag "vanillaGUI" of player close metadata tag "vanillaGUI" of player Also, I think it's a skript problem when trying to recognize that syntax. Because I also get an error when I use the syntax you mention.
  18. couger44

    set variable to random "string(not interger)"

    I just thought about this: set {_char::*} to "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z" set {_var} to random element out of {_char::*}
  19. couger44

    Solved I cant figure out how to make this skript work

    Try: on chat: loop all players: if "%message%" contains "%loop-player%": if "%loop-player%" != "%player%": play "LEVEL_UP" to loop-player at volume 1 #or play "ENTITY_PLAYER_LEVELUP" to loop-player at volume 1