Operator

Operators in MMOBlock conditions allow you to define how values are compared. The following operators are supported:

  • >: Greater than

  • <: Less than

  • >=: Greater than or equal to

  • <=: Less than or equal to

  • ==: Equal to

  • !=: Not equal to

conditions:
  custom conditions:
    first: %player_level%
    second: 10
    operator: '>='  # Example of using the '>=' operator.

Last updated