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