Difference between revisions of "Min"

From Hercules Wiki
Jump to: navigation, search
(Created page with "== Syntax == *min(<number>{,<number>...<number>}) *max(<number>{,<number>...<number>}) == Description == Returns the smallest (or biggest) from the set of given numbe...")

Revision as of 05:01, 11 November 2014

Syntax

  • min(<number>{,<number>...<number>})
  • max(<number>{,<number>...<number>})

Description

Returns the smallest (or biggest) from the set of given numbers.

Example

	.@minimum = min(1, -6, -2, 8, 2); // .@minimum will be equal to -6
	.@maximum = max(0, 5, 10, 4); // .@maximum will be equal to 10
	.@level = min(BaseLevel, 70); // .@level will be the character's base level, capped to 70