$more

Examines if the first parameter is 'grater than' all of the rest parameters.
Syntax
    $more{reference_value}{value_1}{value_2} ... {value_n}
DocumentationExamines if the first parameter is 'grater than' all of the rest parameters:

    Parameters:
      reference_value, the reference value to compare with
      value_1 through value_n, the values to examine if less than the reference value.
    Returns:
      1 if and only if all values value_1 through value_n are less than the reference_value.
Examples
Example 1:
    $more {142}{156}

    Result:
    "156" is more than "142":
    1 (true)
Example 2:
    $more {122}{111}

    Result:
    "111" is not more than "122"
    0 (false)
GroupBoolean
Minimum required transaction-mode:NONE
Required scripting permission of the developerPERMISSION_FL_BASIC
Minimum parameters2
Maximum parameters <unlimited>