Przejdź do głównej zawartości

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.

NameDescription
const svar[]The name of the server variable.
Float:valueThe 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"));