Przejdź do głównej zawartości

GetSVarString

warning

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

Description

Gets a string server variable's value.

NameDescription
const svar[]The name of the server variable (case-insensitive).
Assigned in SetSVarString.
output[]The array in which to store the string value in, passed by reference.
len = sizeof (output)The maximum length of the returned string.

Returns

The length of the string.

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