Negative Conditional
A negative conditional function checks one or more conditions (if-not) and executes actions depending on whether they are met (else) or not (do).
function:
if-not: hasPermission best.player.ever
do:
- chatMessage <Sorry you suck>
else:
- chatMessage <You are the best player ever!>
Last updated