SetSVarString

SetSVarString

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


Parameters:
(varname[], string_value[])
string varname The name of the server variable.
string string_value The string 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"
SetSVarString("Version", "0.3.7");
// will print version that server has
new string[5 + 1];
GetSVarString("Version", string, sizeof(string));
printf("Version: %s", string);


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