GetPVarInt

From SA-MP Wiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 05:29, 9 April 2013
Smithy (Talk | contribs)

← Previous diff
Revision as of 19:39, 4 February 2014
Connor Mead (Talk | contribs)

Next diff →
Line 1: Line 1:
{{Scripting}} {{Scripting}}
-{{Title}} 
{{Description|Gets a player variable as an integer.}} {{Description|Gets a player variable as an integer.}}
Line 27: Line 26:
{{DeletePVar}} {{DeletePVar}}
-[[ru:GetPVarInt]] 
[[Category:Scripting Functions]] [[Category:Scripting Functions]]
 +
 +[[fr:GetPVarInt]]
 +[[ru:GetPVarInt]]

Revision as of 19:39, 4 February 2014



Description:

Gets a player variable as an integer.


Parameters:
(playerid, varname[])
playeridThe ID of the player whose player variable to get.
varnameThe name of the player variable (case-insensitive)


Return Values:

The integer value from the specified player variable.


public OnPlayerDisconnect(playerid,reason)
{
    printf("money: %d", GetPVarInt(playerid, "money")); // get the saved value ('money')
    // will print 'money: amount'
    return 1;
}

Related Functions

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

  • SetPVarInt: Set an integer for a player variable.
  • GetPVarString: Get the previously set string from a player variable.
  • GetPVarFloat: Get the previously set float from a player variable.
In other languages