SetSVarInt

From SA-MP Wiki

Jump to: navigation, search

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


Description:

Set an integer server variable.


Parameters:
(varname[], int_value)
varname[]The name of the server variable.
int_valueThe integer to be set.


Return Values:

  • 1: The function executed successfully.
  • 0: The function failed to execute. The variable name is null or over 40 characters.


Example Usage:

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

Related Functions

The following functions may be useful, as they are related to this function in one way or another.

  • GetSVarString: Get the previously set string from a server variable.
  • GetSVarFloat: Get the previously set float from a server variable.
Personal tools
Navigation
Toolbox
In other languages