GetSVarFloat

GetSVarFloat

Description:
Function GetSVarFloat Gets a float server variable's value.
Function GetSVarFloat was added in 0.3.7 R2 and will not work in earlier versions!


Parameters:
(varname[])
string 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.


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.