note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
GetPlayerMoney
Description
Retrieves the amount of money a player has.
Name | Description |
---|---|
playerid | The ID of the player to get the money of. |
Returns
The amount of money the player has.
Examples
public OnPlayerSpawn(playerid)
{
new string[32];
format(string, sizeof(string), "Your money: $%i", GetPlayerMoney(playerid));
SendClientMessage(playerid, 0x00FF00FF, string);
}
Related Functions
- GivePlayerMoney: Give a player money.
- ResetPlayerMoney: Set the money of a player to \$0.