Recent content by Tistay

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

    Need help with cooldown command

    You could either use: your event: if player's held item is ...: #the bamboo stick and it's name set {_waited} to difference between {bamboostick::%player's uuid%::lastuse} and now if {_waited} is less than 5 seconds: send "no" else: #your code (the thing that makes the...
  2. Tistay

    Solved If (blank) give item, else do not give item

    You could either use: on right click: if player's held item is lime dye named "&aGenerator": set {_waited} to difference between {generator::%player's uuid%::lastuse} and now if {_waited} is less than 5 seconds: send "no" else: #your code (the chances) set...
  3. Tistay

    Solved Money from 1000 to 1k (Bugged)

    I'm guessing the getMoney function returns an integer. Due to this the line where you are setting {_integer} won't work, as first character is used for strings. You could fix this by just changing the line to: set {_integer} to first character of "%{_cashamount}%"
  4. Tistay

    Solved Please help me!!

    I believe you have to use: if projectile is thrown potion:
  5. Tistay

    Attempting to create flamethrower, but particles not working.

    Hey there. The ID is a string, so instead of using 100 use "100". I believe that should fix your problem.
  6. Tistay

    bored.

    bored.
  7. Tistay

    How to detect above of the player is air?

    I believe you can check the sunlight level at a location, so just check the light level at the player. Smarter people could give you a more complete answer tho :emoji_disappointed_relieved: Edit: Ye, https://docs.skunity.com/syntax/search/id:5177.
  8. Tistay

    How to detect above of the player is air?

    Hey there. if block 2 meters above player is air: This should do the job.