Floatadd

From SA-MP Wiki

Jump to: navigation, search

floatadd

Image:Farm-Fresh text lowercase.png Note: This function name starts with a lowercase letter.


Description:

Adds two floats together. This function is redundant as the standard operator (+) does the same thing.


Parameters:
(Float:Number1, Float:Number2)
Float:Number1First float.
Float:Number2Second float.


Return Values:

The sum of the two given floats.


Example Usage:

public OnGameModeInit()
{
    new Float:Number1 = 2, Float:Number2 = 3; //Declares two floats, Number1 (2) and Number2 (3)
    new Float:Sum;
    Sum = floatadd(Number1, Number2);       //Saves the Sum(=2+3 = 5) of Number1 and Number2 in the float "Sum"
    return 1;
}

Related Functions

The following functions may be useful, as they are related to this function in one way or another.

Personal tools
Navigation
Toolbox
In other languages