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

    Fully Grown Cocoa

    What I want to happen: Detect if the cocoa plant is fully grown. Code: on break of cocoa: if player's tool isn't shiny netherite hoe named "&b&lHarvest Hoe": if {witherb.%location of event-block%} is true: if the event-plant is fully grown: cancel event...
  2. K

    Different Stages of Crops

    Code: on break of carrot plant: if player's tool is netherite hoe named "&b&lHarvest Hoe": if the data value of event-block is 1, 2, 3, 4, 5, or 6: if {block::%location of event-block%} is true: cancel event else: if {block::%location of...
  3. K

    Set zombified piglin to aggressive on spawn

    I need a skript that will make all zombified piglins aggressive or hostile when they spawn. Thank You!
  4. K

    World border per world

    MY SKRIPT: format gui slot 0 of player with shiny barrier named "&b&lUpgrade Border Size" to run: execute console command "worldborder add 25" in world "sb%{tl.%player%}%" My skript above doesn't work so if someone could tell me how to set a world border in a certain world using skript that...
  5. K

    Solved Set location to a variable.

    on join: set {spawn.%player%} to location at (0.5, 66, -1.5) in world "sb%player%" I'm guessing there is an error because the world has %player% in it but I don't know how to fix this.
  6. K

    Define a placed block

    So I've been trying to make a skript that makes a block such as dirt to have multiple drops. (basically a separate type of block) I've tried variables such as: on place: set {grass::%event-block%} to true on break: if {grass::%event-block%} is true: chance of 60%...