Parameters:
(playerid, varname[], int_value)
Return Values:
Example Usage:
(playerid, varname[], int_value)
playerid | The ID of the player whose player variable will be set. |
varname | The name of the player variable. |
int_value | The integer to be set. |
Return Values:
- 1: The function executed successfully.
- 0: The function failed to execute. Either the player specified is not connected, or the variable name is null or over 40 characters.
Example Usage:
- Código:
// set GetPlayerMoney the value of player variable named "Money"
SetPVarInt(playerid, "Money", GetPlayerMoney(playerid));
// will print money that player has
printf("money: %d", GetPVarInt(playerid, "Money"));
Fonte: Wiki SA-MP