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

    Custom Model Data GUI

    Hey, I'm looking for a way to create gui with custom model data to the player. Is that somehow possible?
  2. sluhtie

    Need help using Skungee network variables

    So I'm trying to make a playtime command using Skungee because I have a bungeecord network. So my Problem is that It gives me a error at my scheduler of ervery second. Maybe someone could help me. This is my Skript (proxy/plugins/Skungee/scripts): This is my Error: I'm getting the error on...
  3. sluhtie

    ArmorStand Particles [SkDragon]

    Hello, currently I am trying to make a ArmorStand spiral particle effect with SkDragon. My Problem is that the Skript loads without any errors but it still doesen't work. Maybe someone can help me out a bit? Here is my current Code: command /test: trigger: loop all entities...
  4. sluhtie

    Solved i need help (skript for auto pickup)

    Yes would be a solution if you only want the glow but like he said he wants the enchantment Sharpness but only displaying the glow effect
  5. sluhtie

    Solved i need help (skript for auto pickup)

    on break of stone: add 1 to player's level give player 1 diamond of sharpness 1 without any NBT named "&b&lDiamond" cancel event To mark the Thread as solved edit the Title of this Thread
  6. sluhtie

    How to add something to a list

    command /request [<text>]: cooldown: 1 minute cooldown message: "&4You have to wait to use this!" trigger: if {requests::*} contains arg-1 send "This song has already been requested" to player else: add arg-1 to {requests::*}
  7. sluhtie

    Solved delete this

    /////////
  8. sluhtie

    Solved TAB LIST

    Just double the # like this: set tab header to "&6Crypto&3Craft%nl%&cGlasswars coming soon!" and footer to "&cOwner: akros##7886 on &1Discord" for player It will be displayed as just one # because it's in a string
  9. sluhtie

    Variable is not working

    on death: set {playersalive} to ({playersalive}-1) wait 1 tick if {playersalive} parsed as number is 0: loop all players in world "pvp": message "&c[Server-Pvp] &fHet gevecht is afgelopen" to loop-player set {_amount} to amount of players in world...
  10. sluhtie

    Messages showing in specific world (Skript)

    on chat: loop all players: loop-player is in world "kitpvp": cancel event send "%player's displayname%: %message%"
  11. sluhtie

    Solved delete this

    ///////
  12. sluhtie

    Wipe tablist

    For what exactly do you need to wipe the tablist? Do you want to make a tablist Header and footer?
  13. sluhtie

    Solved i need help (skript for auto pickup)

    Here you go: on break of stone: add 1 to player's level give player 1 diamond of sharpness 1 without any NBT named "&b&lDiamond" Please mark the Thread as solved!
  14. sluhtie

    UTF-8 in yaml

    Hello everyone, I want to crate a external config using Skript where you can set the prefix of my Skript. But everytime I open the generated config there are these funny color codes: prefix: "\xa78[\xa7eAntiBuild\xa78]" But I want to have the Color codes like &a and &4... If you know what I...
  15. sluhtie

    play sound expression isn't working

    Hello guys, today I found out that if I run spigot 1.12.2 player's cant her sounds from Skript if there Client Version is 1.8 (Below 1.12.2) but that 1.12.2 player's also can hear sounds from the 1.8.8 Skript Play Sound Expression. So I downgraded my Server from 1.12.2 to 1.8.8 and installed all...
  16. sluhtie

    Wont read name

    Try to include the color code (&) Like this: // EDIT Finally a Person that used a loop to Format gui-slots. THANKS! Also do that with every "Common Fish" name Here's your Code fully edited:
  17. sluhtie

    Solved Cant make nextline on lore work.

    Use the example of Goose. Your Skript Version is 2.4 what means,you Need to use "||" to do a new line. Heres your Skript edited: Please mark the thread as solved if you solved your problem.
  18. sluhtie

    Solved Help with block break event

    on break of stone: if player's Held item is stone pickaxe: send "Stone" stop if player's held item is wooden pickaxe: send "Wood" stop
  19. sluhtie

    Can‘t remove custom named items from inventory

    Hey, I’m trying to remove a custom named pickaxe from a player’s inventory but this: remove 1 diamond pickaxe named “&5Test” from player’s inventory Does not work for me :( No errors, it just does not remove the item. And I have to do it like so because I can’t use delete player’s held item...