ge

From RPTools Wiki
Revision as of 22:36, 9 February 2023 by Conversion script (talk | contribs) (Conversion script moved page ge to Ge without leaving a redirect: Converting page title to first-letter uppercase)
Jump to navigation Jump to search

ge() Function

This function compares provided numeric values and returns true(1) if the first is greater than or equal to the second and the second greater than or equal to the third and so on. If any comparison fails, the function returns false.

Usage

ge(n1, n2, ...)

Parameters

  • n1 - Number
  • n2+ - Number

Example

[r: ge(2,-3)]
[r: ge(4,3,2)]
[r: ge(5,1,1)]

Returns:

1
1
1

See Also