پرش به مطلب اصلی

GetSVarFloat

هشدار

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

Description

Gets a float server variable's value.

NameDescription
const svar[]The name of the server variable (case-insensitive).
Assigned in SetSVarFloat.

Returns

The float value of the specified server variable.

It will still return 0.0 if the variable is not set.

Examples

// set "Version"
SetSVarFloat("Version", 0.37);

// will print version that server has
printf("Version: %.2f", GetSVarFloat("Version"));