Saltar al contenido principal

SetSVarString

aviso

This function was added in SA-MP 0.3.7 R2 and will not work in earlier versions!

Description

Set a string server variable.

NameDescription
const svar[]The name of the server variable.
const value[]The string to be set.
OPEN_MP_TAGS:...Indefinite number of arguments of any tag.

Returns

true - The function executed successfully.

false - 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);