gt

From RPTools Wiki
Revision as of 22:11, 22 May 2020 by Phergus (talk | contribs) (Created page with "{{MacroFunction |name=gt |proposed=false |trusted=false |description= This function compares provided numeric values and returns {{code|true(1)}} if the first is greater than...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

gt() Function

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

Usage

gt(n1, n2, ...)

Parameters

  • n1 - Number
  • n2+ - Number

Example

[r: gt(2,1)]
[r: gt(2,1,0)]
[r: gt(2,1,1)]

Returns:

1
1
0

See Also