Math and Numbers: Difference between revisions
Jump to navigation
Jump to search
imported>Bale Add monster_eval() & expression_eval() from r8824 |
imported>Bale move gameday_to_int to Miscellaneous category |
||
Line 1: | Line 1: | ||
{{Flink|int|ceil|float|desc=Returns the next highest value of the specified number as an integer.}} | {{Flink|int|ceil|float|desc=Returns the next highest value of the specified number as an integer.}} | ||
{{Flink|int|floor|float|desc=Returns the next lowest value of the specified number as an integer.}} | {{Flink|int|floor|float|desc=Returns the next lowest value of the specified number as an integer.}} | ||
{{Flink|boolean|is_integer|string|desc=Reports whether a string is an integer.}} | {{Flink|boolean|is_integer|string|desc=Reports whether a string is an integer.}} | ||
{{Flink|int|min|int|int}} | {{Flink|int|min|int|int}} |
Revision as of 09:30, 26 January 2011
int ceil( float )
Returns the next highest value of the specified number as an integer.
int floor( float )
Returns the next lowest value of the specified number as an integer.
boolean is_integer( string )
Reports whether a string is an integer.
int min( int, int )
float min( float, float )
Returns the lower of two numbers.
int max( int, int )
float max( float, float )
Returns the higher of two numbers.
float expression_eval( string )
float monster_eval( string )
float modifier_eval( string )
Evaluates a mathematical expression.
int random( int )
Generates a random integer between 0 and 1 less than the specified number, inclusive.
int round( float )
Returns the value of the specified number as rounded to the nearest integer.
float square_root( float )
Returns the square root of the specified value.
Returns the decimal-stripped value of the specified number as an integer.