GetSVarFloat
From SA-MP Wiki
Description:
Gets a float server variable's value.
(varname[])
varname | The name of the server variable (case-insensitive). Assigned in SetSVarFloat. |
Return Values:
The float value of the specified server variable. It will still return 0 if the variable is not set.
Example Usage:
// set "Version" SetSVarFloat("Version", 0.37); // will print version that server has printf("Version: %f", GetSVarFloat("Version"));
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- SetSVarInt: Set an integer for a server variable.
- GetSVarInt: Get a player server as an integer.
- SetSVarString: Set a string for a server variable.
- GetSVarString: Get the previously set string from a server variable.
- SetSVarFloat: Set a float for a server variable.
- DeleteSVar: Delete a server variable.