#minor and major

1 messages · Page 1 of 1 (latest)

dense cliff
#

Execute as @s[scores{money=..0}]

Does the two dots there mean it's bigger or smaller?

crystal swift
#

iirc if it's 0..5 it any value from 0 to 5

dense cliff
#

..0 less than zero and 0.. greater than zero?

crystal swift
#

That may be how it works..?

dense cliff
#

?

kindred thunder
#

“..” after an integer means greater than or equal to <int>

#

“..” in between 2 integers means from <int> to <int> inclusive

#

(Meaning including the integers given)

#

Ex:

“..100” - means less than or equal to 100

“100..” - means greater than or equal to 100

“0..100” - means from 0 to 100 inclusive