Disjunctive Conditional

A disjunctive conditional function checks two or more conditions (if-any) and executes actions depending on whether any were met (do) or none (else).

function:
  if-any: # Requires at least two conditions
    - hasPermission best.player.ever
    - hasPermission worst.player.ever
  
  do: chatMessage <You are either the best or the worst player ever!>

Last updated