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

    kit cooldown

  2. Minecoll_YT

    Needing Help with Sk-Reflect / CoreProtect API

    I'm not sure if the event-location output is the one that the java APIs can use, try setting the x, y and z coordinates to a variable and then use it
  3. Minecoll_YT

    Solved How can I use less ram

    In the upper right corner in the thread options. But please mark the best answer
  4. Minecoll_YT

    Solved If statement behaves differently in on craft event and command event

    try: if "%{list::*}%" contains "%event-item%": but that could lead to some issues
  5. Minecoll_YT

    On explode doesn't check water around chests

    This is because of water logging in the newer versions, you should be able to get the waterlog state of a block using nbt data
  6. Minecoll_YT

    Needing Help with Sk-Reflect / CoreProtect API

    what is the output of your two debug messages?
  7. Minecoll_YT

    Rank Colour (Like Hypixel)

    please use code blocks
  8. Minecoll_YT

    loop block on y cords

    It should work 100% but with this code every block gets looped and then checked, with my solution, only the ones on the given y-coordinate should get looped.
  9. Minecoll_YT

    Doesn't damage players

    Bad solution… And even if we use something like this, we would use LIST variables. We just have to work out why the correct and normal solution is not working. And the best way to do this, is debugging.
  10. Minecoll_YT

    AuthMe Welcome.txt alternative in skript

    welcome.txt? And you can use the json feature
  11. Minecoll_YT

    loop block on y cords

    loop all blocks where [y-coordinate of block input is {_y}] not sure if its loop-block or block input or smth else
  12. Minecoll_YT

    Check if player is in water.

    Not related to the current thread. But it should be the on right click event
  13. Minecoll_YT

    Need help with making a weapon

    It clearly is?
  14. Minecoll_YT

    Need help with making a weapon

    yes, but where is the problem?
  15. Minecoll_YT

    Doesn't damage players

    try removing this line "if loop-entity is not the player:" if this causes the error, change it to: if "%loop-entity%" is not "%player%": or if "%name of loop-entity%" is not "%player%":
  16. Minecoll_YT

    Need help with making a weapon

    What are you talking about?
  17. Minecoll_YT

    Solved Gen skript owner not working

    marked as solved
  18. Minecoll_YT

    Solved CrackShot Damage

    Seems like SkRayFall has crackshot support: https://docs.skunity.com/syntax/search/crackshot
  19. Minecoll_YT

    Solved How can i make this work?

    This would be the best solution I think: on join: wait 1 tick set {_item} to emerald block named "&fInfo&Warps" if amount of {_item} in player's inventory is less than 1: give {_item} to player
  20. Minecoll_YT

    Check if block at {_loc}

    Keep in mind that {_loc} is a local variable and needs to be set in the same trigger as your check. The check should be the following: if block at {_loc} is stone: