max(val1, val2, ... val15);
Argument | Description |
---|---|
val0 ... val15 | The values to compare. |
Returns: Real
This function returns the maximum of the input values, of which
it can have up to 16. For example max(12, 96, 32, 75) will
return 96 as that is the highest of all the input values.
x = max(x, 0);
This will stop the player from exiting the left of the room. This works by constantly setting its x to either itself or 0, whichever is larger. If the player exits the left, its x would be smaller than 0 (ie negative), so it'll get set straight back.