SetSVarFloat

SetSVarFloat

Description:
Function SetSVarFloat set a float server variable.
Function SetSVarFloat was added in 0.3.7 R2 and will not work in earlier versions!


Parameters:
(varname[], Float:value)
string varname The name of the server variable.
float value The float to be set.


Return Values:
  • 1: The function was executed successfully.
  • 0: The function failed to execute. The variable name is null or over 40 characters.


Examples:
// 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.