GetPVarInt
From SA-MP Wiki
Gets a player variable as an integer.
(playerid, varname[])
| playerid | The ID of the player whose player variable to get. |
| varname | The name of the player variable (case-insensitive) |
| Returns | 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.
- SetPVarString: Set a string for a player variable.
- GetPVarString: Get the previously set string from a player variable.
- SetPVarFloat: Set a float for a player variable.
- GetPVarFloat: Get the previously set float from a player variable.
- DeletePVar: Delete the player variable.
