note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
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.
Name | Description |
---|---|
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);
Related Functions
- SetSVarInt: Set an integer for a server variable.
- GetSVarInt: Get a player server as an integer.
- SetSVarString: Set a string for a server variable.
- SetSVarFloat: Set a float for a server variable.
- GetSVarFloat: Get the previously set float from a server variable.
- DeleteSVar: Delete a server variable.