warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for this page then please click here.
SetSVarFloat
warning
This function was added in SA-MP 0.3.7 R2 and will not work in earlier versions!
Description
Set a float server variable.
Name | Description |
---|---|
const svar[] | The name of the server variable. |
Float:value | The float to be set. |
Returns
true - The function executed successfully.
false - The function failed to execute. The variable name is null or over 40 characters.
Examples
// set "Version"
SetSVarFloat("Version", 0.37);
// will print version that server has
printf("Version: %.2f", GetSVarFloat("Version"));
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.
- GetSVarString: Get the previously set string from a server variable.
- GetSVarFloat: Get the previously set float from a server variable.
- DeleteSVar: Delete a server variable.