warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for 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.