Recent content by Nick

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

    Solved Remove decimal place from cooldown time

    Already got it working with something pretty much the same as this but forgot to reply, anyway thanks
  2. N

    Solved Remove decimal place from cooldown time

    How would i change my cooldown from "2 minutes and 30.44 seconds" to just "30 seconds" set {_waited} to difference between {globalbooster} and now if {_waited} is less than 60 minutes: set {_time} to difference between 60 minutes and {_waited} Thanks Also i know you could do this within the...
  3. N

    Solved What am i doing wrong here? Location variables

    Could anyone tell me what I'm doing wrong here please on break: #Pos1 set {_x} to {loc.1.x::%uuid of player%} set {_y} to {loc.1.y::%uuid of player%} set {_z} to {loc.1.z::%uuid of player%} set {_loc1} to location at {_x}, {_y}, {_z} in world "realms" #Pos2 set {_x}...
  4. N

    Solved How to find out if {_a} is a multiple of 10

    Thanks, just what I needed
  5. N

    Solved How to find out if {_a} is a multiple of 10

    Anyone know how i could find out if a number is a multiple of another number? For example every time a player earns 10 gold he will receive a bonus Using java you would do something like this int a = 20; if (a % 10 == 0) { # A is a multiple of 10 } Thanks.
  6. N

    Addon WolvSK (1.8-1.16.1)

    Great plugin, But i downloaded it mainly for the use of aSkyBlock and there seem to be a lot of things not working? command /islandreward: permission: islandreward.claim trigger: if asb player's island level is less than 2500: send "&aClaiming &nTier 5&a reward &7(>...
  7. N

    Spawn particles to all players

    How would I spawn particles at event-block to all players? When i place a block i want particles to spawn at the event block and be visible to all players not just the player who placed the block Any suggestions? thanks.