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

    Shoot projectile at target block skript

    Hey, try this: on load: set {loc1} to location(-5532, 39, -1994, world "WORLD") set {loc2} to location(-5525, 37, -1993, world "WORLD") set {loc3} to location(-5531, 41, -2002, world "WORLD") set {loc4} to location(-5521, 42, -2001, world "WORLD") on projectile hit: if...
  2. DanRub

    Solved Trying to delete a list in a list variable

    Hey, wdym by delete a specific party, because im not sure if you are trying to delete only player from party or the whole party, if the whole party I dont think you need to make it so hard, you are creating a list named the same as the list you are storing it to.. its quite difficult to figure...
  3. DanRub

    Pause on leave and continue the remaining time when joining back on fly

    I think there is better way to do that but i would need the whole code, if you are still interested contact me on discord: danrub
  4. DanRub

    Solved detect item with display name

    Hey, it depends there are many different ways to do that but with the given information from you, probably the best solution to work with everything is this every 1 second: loop all players: if inventory of loop-player contains diamond sword named "test": #change the item and the...
  5. DanRub

    Trouble with double ore drop ability

    Hey, Ive tried it myself and you are right, the event doesnt work, so i think your best choice is to go 1 by 1 since I didnt find anything better that would work for you.
  6. DanRub

    how to make two players share 1 inventory

    I think it is, but depends how do you want it to work
  7. DanRub

    Every syntax with variables

    Oh I see, why dont you just use the every X seconds event when you know every time you want do something instead of giving them inside of config? I mean you are making it so much harder.
  8. DanRub

    Every syntax with variables

    Well im not sure why are you looping the list here, but set {looping} to true loop {autoCraftTime::*}: while {looping} = true: set {_time} to loop-value broadcast "%{_time}%" wait {_time} seconds something like this, its really hard to make code when I dont even know...
  9. DanRub

    Every syntax with variables

    I dont think its that hard if you use for example while loop and then just wait {variable} seconds
  10. DanRub

    Can someone help me make a skript?

    Your discord name is not correct, try to add me: danrub
  11. DanRub

    Solved Looping GUI Slots

    Oh, in that case you can mark this post as solved.
  12. DanRub

    Solved Looping GUI Slots

    Why do you need to use loops for that?
  13. DanRub

    Solved Drop a certain amount of item upon death

    Hi, I think Ive found a solution for your problem. Try this and let me know :emoji_wink: on death of player: set {_count} to number of nether stars in inventory of victim if {_count} > 1: remove all nether stars from the drops if {_count} is divisible by 2...
  14. DanRub

    Cooldown on "send"

    Hey, i guess you can do something like this: on load: set {Wait_Time} to 2 minutes on break of coal ore: if player is in "world": cancel event set event-block to stone if {message::%uuid of player%} is not set: send "&eMine di &f""&a/warp...
  15. DanRub

    Need help with loop through list

    Hm, okay get it now, since i dont know the times for your ranks im unable to do it, but there is a code I made in a rush so you can see an inspiration of how you can do it. Basically this is only for the Packed Ice you can go on and add all of these blocks. Also I assumed that Packed Ice...
  16. DanRub

    Need help with loop through list

    What do you mean by compress the item in player's inventory? I see you that you made a lot of loops for no reason, like you are looping a list that doesnt even exist in your code before - thats why it doesnt send the second and third loop. Your code has a lot of mistakes so I can either help you...
  17. DanRub

    Need help with loop through list

    I cant really understand what are you trying to do here. Can you like explain to me in details what is not working and how should it work?
  18. DanRub

    Need help with loop through list

    Hey, can you paste the code in the code format, becuase its impossible to find something in this code.
  19. DanRub

    Set Suffix

    Hey, you can try this https://skripthub.net/docs/?id=2062
  20. DanRub

    Solved Trouble with detecting lp permissions. [SOLVED]

    Glad I could help ;)