Recent content by Great_Guy96

  • 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. G

    RegEx outputs <none>

    Skript Version (do not put latest): Idk, it says it's a custom one (I'm using Minehut, so I'm guessing it's the latest version) Skript Author: Bensku Minecraft Version: 1.15 Code: function formatNum(i: number) :: text: set {_n} to regex replace "(\d{1,2}?)((?:\d{3})+)$" with group "$1,$2" in...
  2. G

    Solved Help with on break stuff

    Layout: Skript Version (do not put latest): Skript 2.4 Skript Author: Bensku Minecraft Version: 1.14.4 --- Full Code: on break of oak wood: send "Hi" to the player on break of stripped oak wood: send "Hi" to the player Errors on Reload: Can't understand this event "on break of oak wood"...
  3. G

    Solved Growing Wheat

    Oh sorry... Here's my full code: every second in "Plot_World": loop {grassseeds::*}: set {_block} to loop-value chance of 33%: if {_block} is freshly planted wheat plant: set {_block} to stage 2 wheat plant if {_block} is stage 2 wheat plant: set {_block} to stage 3 wheat...
  4. G

    Solved Growing Wheat

    Ok I updated to skript 2.4, and it's still not working...
  5. G

    Solved Growing Wheat

    Skript Version (do not put latest): Skript 2.3.7 Skript Author: Bensku Minecraft Version: 1.14.4 --- Full Code: if {_block} is freshly planted wheat plant: set {_block} to stage 2 wheat plant if {_block} is stage 2 wheat plant: set {_block} to stage 3 wheat plant if {_block} is...
  6. G

    How do you read a scoreboard?

    I know it is not an existing effect, I am wondering what could work that would do an effect like that!
  7. G

    How do you read a scoreboard?

    Hello! I have a question: How do I get a score of a player? I want to make something that looks like this: loop all players: set {_maxhp} to %player%'s score of objective maxhealth I have looked at both docs and forums