Przejdź do głównej zawartości

GetSVarInt

warning

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

Description

Gets an integer server variable's value.

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

Returns

The integer value of the specified server variable.

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

Examples

// set "Version"
SetSVarInt("Version", 37);

// will print version that server has
printf("Version: %d", GetSVarInt("Version"));