SetSVarInt

SetSVarInt

Description:
Function SetSVarInt set an integer server variable.
Function SetSVarInt was added in 0.3.7 R2 and will not work in earlier versions!


Parameters:
(varname[], int_value)
string varname The name of the server variable.
int int_value The integer 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"
SetSVarInt("Version", 37);
// will print version that server has
printf("Version: %d", GetSVarInt("Version"));


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