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

    NBT of Advanced Enchantments

    So, i'm trying to read the value of a custom enchanted item from advanced enchantments with SkBee, but it always seems to return "<none>" Picture: Code: on armor change: if new armor item is any armor: set {_gov} to tag "ae_enchantment;godlyoverload" of nbt of new armor item...
  2. kamilleon

    Skript YML

    I'm pretty new to yaml, and I'd like to turn this list (there's more) into a skript variable like {bcmoney::first part of yml value, aka name here} and the value as an integer: Unify: 246 Amerika: 34 ryptYppYlee: 21 Johny_: 25 Ares: 85 KamillPlayZ: 68 jutefon: 13 simsala26: 55 Cles: 19...
  3. kamilleon

    on armor equip/unequip bug

    I'm trying to make something similar to hypixel's armor system on skyblock, but in skript it's a little buggy. When I try to equip and unequip the armor too fast (I mean like 3-4 cps is enough) It starts to add the value to the player's hp and defense continuously. on armor equip: if...
  4. kamilleon

    Execute certain things if the time..

    Can you somehow do time checking in skript, for example if the time is 8 am, send a message? (Also automatically, so without a command)
  5. kamilleon

    SuperiorSkyblockAPI

    I tried multiple things to get the superior skyblock api to work with skript mirror, but I couldn't. I would only need it to check if the player who executes the command is the leader of the island he is in team of. Any help? Plugin(Api)...
  6. kamilleon

    SuperiorSkyblock

    Hey! I'm trying to check with skript if a player is in a team, and if yes, he is the leader. But I don't know how to use apis, here is the link. https://github.com/OmerBenGera/SuperiorSkyblockAPI
  7. kamilleon

    Solved Break certain blocks inside region

    I'm trying to make an ore regen skript, but the ores would be inside a protected region. Theres two possible ways to do this, but for both I can't figure it out a, Get the x y z coordinates of the block, and make it to a string, then save it as a region, and allow the block break flag but...
  8. kamilleon

    Solved Redeem coins with right click

    The one at a time works, but I can't get the all at once to be redeemed to work. Any suggestions? on right click with gold nugget: if name of player's held item is "&e&lÉrme &7(Jobb Katt)": if player is sneaking: set {_érem} to amount of gold nugget named "&e&lÉrme...
  9. kamilleon

    Chunk Hopper

    I'm trying to make a chunk hopper, but I don't know how to add the item to the hopper's inventory, this is what I've tried: command /ch: trigger: give player 1 hopper named "&6Chunk Hopper" on place: if name of player's held item is "&6Chunk Hopper": add...
  10. kamilleon

    Recipes with multiple amount of items

    Is there any way in skript to use multiple amount of an item in a slot to create recipe? When I tried it, it just crashed my server :(
  11. kamilleon

    removing from player's tool not working

    Here's my code, the cooldown works fine, but removing the item from the player doesn't. on right click: if name of player's tool is "&cMedikit": set {_várt1} to difference between {medikitvárt.%player%} and now if {_várt1} is less than 3 seconds: send...
  12. kamilleon

    Solved Decrease Damage by a percent

    I'm trying to make a "defensive" skill, and I didn't find anything about decreasing the damage taken, only increasing. Is it possible to decrease it? jk got it working set {_védekezéss} to {védelemkp.%victim%}*2.5/100 set {_finalsebzés} to 1-{_védekezéss}...
  13. kamilleon

    Solved Cooldown time for argument player

    I wanted to create a plot rating point system for admins, to rate the players plots, and give them points depending on the rating. Also I wanted to add an anti-abuse system to it, so a player can be only rated once every hour, globally. else: set...
  14. kamilleon

    Solved Display cooldown time, but in another language

    So I basically have this skript right now, but it displays the cooldown time in English, and I wanted to ask if there's any way to translate/make a custom display message for time. If there is I would want it to display it in Hungarian, so "seconds" would be "másodperc". options...
  15. kamilleon

    Has enough space

    I want to check if the player has enough space in his inventory for "arg 1" of stone. command /lekér <number>: trigger: if arg 1 is a number: if arg 1 > 0: if arg 1 <= 512: set {_arg1kő} to arg 1 set {_playerkövek} to {s.%player%} if...
  16. kamilleon

    Loop on offline players

    I want to make that this code works on offline players too: (I want to make a somewhat custom cookie clicked kind of game) every 1 seconds: loop all players: if {f2.%loop-player%} is true: add 1 to {s.%loop-player%}
  17. kamilleon

    Replace block 10 times

    How do you make a block "respawn" 10 times after breaking? This is my current code, but it dosen't work: on place of sponge: if name of player's tool is "&e&lVan szerencséd?": chance of 20%: set event-block to diamond block on break of diamond block: set block to...
  18. kamilleon

    on death drop sword with name

    I have this little bit of code here: on death: if event-entity is a zombie: if event-entity's name is "&c&lDurva &e&lBoss": drop 1 diamond at event-entity sword named "&e&lOmgi, such good" with sharpness 10 but i don' know whats the problem in the last line.
  19. kamilleon

    Solved Drop 1-5 item

    Is there a lazy way to make when a mob dies he dropps 1-5 bones, or something?
  20. kamilleon

    Solved placed block name

    I want to make a skript, where i place a dirt and its name is good boy, it sets the block to diamond block. This is what i've came to, but it dosent work. on block place of dirt: if block has name "&6&lGood Boy": wait 3 seconds set block to diamond block