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

    Solved unbrakable blocks

    options: stayTime: 30 specialTool: barrier function removeBlock(loc: location): set block at {_loc} to air remove {_loc} from {block::all::*} delete {block::owner::%{_loc}%} delete {block::timeleft::%{_loc}%} on place: add location of block to {block::all::*}...
  2. Minecoll_YT

    Solved Set redstone lamp to "activated" error

    yeah.. you need to define which redstone lamps.. e.g. using a list variable, ...
  3. Minecoll_YT

    Setting a player's skin, nametag, and tab priority?

    Have you tried using code of other skripts? E.g. https://forums.skunity.com/resources/nick-skin-changer.132/ And what are the problems with the plugins you have used?
  4. Minecoll_YT

    Solved Shockwave animation

    I can work on it later, but if you want to try, this should be the basic stuff: - Create a function with location argument - Loop all blocks in radius x around the loc. argument METHOD 1 - summon a falling block - push it up - delete it METHOD 2 - summon invisible, invincible and...
  5. Minecoll_YT

    Solved unbrakable blocks

    That wouldn't work, yes. But as I said, this is more of a request
  6. Minecoll_YT

    Solved TuSKe & SkQuery Corruption

    https://skunity.com/tutorials/vanilla+guis.8939
  7. Minecoll_YT

    How can I make this CombatLog skript have /spawn in it?

    Please mark this as solved
  8. Minecoll_YT

    Solved unbrakable blocks

    This is more of a request, or do you already have existing code?
  9. Minecoll_YT

    Failed Join/Connect messages Sent to online staff/players

    I don't think that skript has a condition for that, but you could try using reflect for that https://hub.spigotmc.org/javadocs/spigot/org/bukkit/event/player/PlayerKickEvent.html
  10. Minecoll_YT

    I appreciate you helping others on this forum and supporting the forum itself through donations...

    I appreciate you helping others on this forum and supporting the forum itself through donations. But bro... what is this profile picture... We are on a minecraft skripting forum
  11. Minecoll_YT

    Solved Loop blocks and players not working as expected

    if {temp::%loop-player's uuid%} >= 100: stop else: add 1.5 to {temp::%loop-player's uuid%} -> if {temp::%loop-player's uuid%} <= 100: add 1.5 to {temp::%loop-player's uuid%}
  12. Minecoll_YT

    How to make a spawn teleport taking 5 seconds but detecting any movement during the time.

    Would not recommend doing this. Rather use a while loop, like: command /spawn [<text>]: trigger: send "please wait 5 seconds" set {_left} to 6 set {_loc} to location of player while {_left} is more than 0: if location of player is {_loc}...
  13. Minecoll_YT

    Item Durability

    As far as I know, you cannot change the default minecraft durability. But you could make your own durability system using lore/metadata and the "on item damage" event
  14. Minecoll_YT

    https://forums.skunity.com/forums/skript/

    https://forums.skunity.com/forums/skript/
  15. Minecoll_YT

    Solved Why is this GUI not working?

    Remove TuSKe. If you really don't want to use the vanilla way, use the skript-gui way -> https://github.com/APickledWalrus/skript-gui/releases/tag/1.2.2 And make sure you don't use an outdated skript version
  16. Minecoll_YT

    Skript help

    Use list variables :) Especially in your case, I think everyone on the server has its own {strength.%player%} variable. You wouldn't have a chance to reset them all or loop them. So: {strength.%player%} --> {strength::%player%}
  17. Minecoll_YT

    Solved /baltop command

    You know, there are many scripts that already do that, and you just have to change the variable?
  18. Minecoll_YT

    help

    parse the return thing as a string (put it in "%%")