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

    how to make shield cooldown with skript-reflect?

    1.16.5 (papermc) (I found it on papermc's website https://jd.papermc.io/paper/1.16/org/bukkit/entity/LivingEntity.html#setShieldBlockingDelay(int) )
  2. Denloself

    how to make shield cooldown with skript-reflect?

    Cooldown between block like getting hitted by axe while blocking
  3. Denloself

    how to make shield cooldown with skript-reflect?

    i am trying to make shield cooldown with skript-reflect, but i have no idea what to do, my code looks like this now: import: org.bukkit.entity.LivingEntity on damage of player: if victim is blocking: set {_p} to the victim {_p}.setShieldBlockingDelay(20) no error in...
  4. Denloself

    same code, differnt result (hex code)

    i am trying to make hex code being uncoloured (i know the correct format in skript should be <##hexcode>) and then i found out it was not working, when i am trying to debug it, i found out i used two exact same code and and differnt result i used essentialsx and essentialsx chat, i am not sure...
  5. Denloself

    Solved make player execute command as op?

    oh, i have a command lock (it will lock player who have op permission, if you want to use command, you have to unlock it) to prevent something wrong happen oh and if you wonder, the code look like this on command: if player is op: if command is "[blanked1]" or "[blanked2]" or...
  6. Denloself

    Solved make player execute command as op?

    is there a way to make player execute command as op? (line 3 of the code) on right click: if name of held item of the player is "&3test thingy": make player execute command "/skill+test %player%" # i tried [make player execute command "/skill+test %player%" as op] but not working...
  7. Denloself

    Vixio Skript - is it possible to add more line of vaule?

    im trying to add more line of vaule or description, i have tried \n but it did not work, anyone know how to do it? code: discord command $embedtest: usage: embed trigger: delete event-message with "IGC3_TRADE" create embed: set the title of embed to title...
  8. Denloself

    Solved "if player has 1 iron ingot named" not working if the item has other nbt

    Hmm I did also tried: command /skriptitemchecktest: permission: skript.thing trigger: if all items in player's inventory where [nbt of input contains "test"] is set: message "you have 1 iron ingot" to the player but it is still not working, oh and I looked up other...
  9. Denloself

    Solved "if player has 1 iron ingot named" not working if the item has other nbt

    hmm do i need some addon to make this work? i have: Skript git-Paper-788 (MC:1.16.5) skript-placeholders v1.5 SharpSK v1.6.3 my code now look like: command /skriptitemchecktest: permission: skript.thing trigger: if all items in player's inventory [where nbt of input contains...
  10. Denloself

    Solved "if player has 1 iron ingot named" not working if the item has other nbt

    Uhh sorry, but can you show me the code? I did never try this way before so i don't know what should i do
  11. Denloself

    Solved "if player has 1 iron ingot named" not working if the item has other nbt

    hmm is it how do i do it? or i have to edit something? command /skriptitemchecktest: permission: skript.thing trigger: if all items in player's inventory [where nbt of input contains "test"]: message "you have 1 iron ingot" to the player
  12. Denloself

    Solved "if player has 1 iron ingot named" not working if the item has other nbt

    it can't check the item name if the item has other nbt (like if it was renamed by anvil, it will not work) command /skriptitemchecktest: permission: skript.thing trigger: if player has 1 iron ingot with name "test": message "you have 1 iron ingot" to the player i...