SetSVarFloat
From SA-MP Wiki
Description:
Set a float server variable.
(varname[], Float:float_value)
varname[] | The name of the server variable. |
float_value | The float to be set. |
Return Values:
- 1: The function executed successfully.
- 0: The function failed to execute. The variable name is null or over 40 characters.
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.
- GetSVarFloat: Get the previously set float from a server variable.
- DeleteSVar: Delete a server variable.