How to make a negative condition

  • 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!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

Aawqq2112

Member
Apr 1, 2021
20
0
1
32
How do I make a negative condition in this script, I need not instead of on, but it throws an error
Code:
on walking on dirt or grass:
   remove slowness from player
 
You could just make it so you only get slowness while walking on dirt or grass.
Code:
on walking on dirt or grass:
    if {uuid::slow%player%} is false:
        apply slowness to player for 1 second
        set {uuid::slow%player%} to true
        wait 0.999999 seconds
        set {uuid::slow%player%} to false
    else if {uuid::slow%player%} is not set:
        apply slowness to player for 1 second
        set {uuid::slow%player%} to true
        wait 0.999999 seconds
        set {uuid::slow%player%} to false
    else:
        stop
 
Status
Not open for further replies.