DeleteSVar

From SA-MP Wiki

Jump to: navigation, search


Description:

Deletes a previously set server variable.


Parameters:
(varname[])
varnameThe name of the server variable to delete.


Return Values:

  • 1: The function executed successfully.
  • 0: The function failed to execute. There is no variable set with the given name.


Example Usage:

SetSVarInt("SomeVarName", 69);
 
// Later on, when the variable is no longer needed...
 
DeleteSVar("SomeVarName");
Image:32px-Ambox_warning_orange.png

Note

Once a variable is deleted, attempts to retrieve the value will return 0 (for integers and floats and NULL for strings.


Related Functions

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

  • SetSVarInt: Set an integer for a server variable.
  • GetSVarString: Get the previously set string from a server variable.
  • GetSVarFloat: Get the previously set float from a server variable.
Personal tools
Navigation
Toolbox