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

    problem with variable and remaining time

    Hello, so im making skript about queue, i wont paste here the whole code cause it would be too confusing, but i will describe it. So i have variable set as time for a ban and when i use the variable in other arg then where its created its not working. This is the start of the skript: command...
  2. DanRub

    Solved Where is the problem xd

    im dumb, thanks
  3. DanRub

    Solved Where is the problem xd

    The problem is that i cant join queue even the {game} is false.. anyone know why? Also i would appreciate before reply to me please test it or something bc this skript reloaded just fine but it doesnt work xd command /queue <string> [<player>]: usage: &cUse: /queue <join, leave> trigger...
  4. DanRub

    right clicking an item

    Hey, you can try this, i made it super fast, should work on right click with diamond: if name of event-item is "Teleport To Village": apply blindness 2 to the player for 5 seconds teleport the player to 100 100 100 remove diamond named "Teleport To Village" from...
  5. DanRub

    I need quick help

    What doesnt work?
  6. DanRub

    Solved Looping mined blocks then setting to specific block.

    Mby try updating your skript, or have some addon, bc it works for me..
  7. DanRub

    I need quick help

    Dont? You? Want? More? Question Marks?
  8. DanRub

    Solved how to add a players inv slot to a list variable

    hey, you can do it like this: command /potato: trigger: set {test::*} to slot 0 of player's inventory send "%{test::*}%" to player
  9. DanRub

    I need quick help

    hey, I think this is what you are looking for. if player's helmet is a player head named "":
  10. DanRub

    how to see previous post that you made

    Go to "edit" on this post and set prefix as "solved"
  11. DanRub

    how to do [<player>] or <text>

    Like i have no idea what do you need, do you have some skript what exactly you need?
  12. DanRub

    Don't drop some tools on death

    I would create list of drops and then just remove all items you dont want to drop, so something like this. on death of player: set {_drops::*} to drops remove player's helmet from {_drops::*} remove player's chestplate from {_drops::*} etc.. and then just drop {_drops::*} thats how i...
  13. DanRub

    (HELP NEEDED) Can someone tell me why this doesent work!

    maybe send whole skript?
  14. DanRub

    Solved Looping mined blocks then setting to specific block.

    Hey, you can try this, should help, also you souhld set some prefix.. on break: if gamemode of player is survival: if event-block is diamond ore: add location of event-block to {diamondOre::*} set event-block to bedrock command /resetores: permission...
  15. DanRub

    i need to figure out how to clear this variable with a seperate command and someone else executing it.

    Hey, I don't know what you were thinking there, it was enough to put {renamecooldown::%player%} instead of {renamecooldown::arg-1} and thats it. Try it and LMK, btw I made a minor change at the end, if you dont like it, change it back. :emoji_slight_smile: The final skript: command /rename...
  16. DanRub

    skript not working

    Hi, i think this should help you. on death of a player: if victim is a player: if attacker is a player: give drops to attacker cancel drops wait 1 tick send "&aYou have obtained items from a player &e%victim%" to attacker LMK if thats...
  17. DanRub

    Helmet Effect wont work

    Well, you can try this, works for me. on armor change: if event-item is netherite helmet named "&2Life-Infused &aPeridot Helmet &5T3": apply regeneration 1 to player for 5 seconds I hope its what you wanted.
  18. DanRub

    I want to change the size of the slime

    I dont really understand what do you want from this skript, can you explain?
  19. DanRub

    block issue

    Uhh isnt it red hardened clay instead of stained clay? Maybe try on leftclick: if the clicked block is red hardened clay: make console execute command "eco give %player% 10 But im not sure with that block..