Recent content by lonelypotato99

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

    Solved Stopwatch help?

    That worked, but I'm just realizing, does "now" only go down to minutes? How can I make a timer that can do 0.2 or 0.5 of a second then? Edit: Solved, this is a much better way of achieving a stopwatch than whatever I was trying to do: every 0.2 seconds: if {isRunning} is true: add...
  2. L

    Solved Stopwatch help?

    I'm trying to make a very simple stopwatch. Here's what I have so far: on event 1: set {_start.%player%} to now on event 2: set {_diff} to difference between now and {_start} message "%{_diff}% is the difference" That's a small part of the much larger, messier code, but you get the...
  3. L

    Solved How to check if multiple variables are true?

    Oh duh, I didn't even think of that. Works great, thank you very much!
  4. L

    Solved How to check if multiple variables are true?

    I'm relatively new to skript, so work with me here, I have a parkourdone::%player%.easy variable that goes from easy on the end to medium, hard, and extra hard. The variables are set to true or false at a certain point, but how can I check if all 4 variables are true at one point? Example: on...