Signature
stock Float:floatmin(Float:ValueA, Float:ValueB){ if(ValueA<=ValueB) { return ValueA; } return ValueB;}
Description
Returns whichever value is the smaller one
Parameters
- ValueA — The first value
- ValueB — The second value
Returns
ValueA if it is smaller than ValueB, and vice versa