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.
GetPlayerAmmo
Description
Gets the amount of ammo in a player's current weapon.
Name | Description |
---|---|
playerid | The ID of the player whose ammo to get. |
Returns
The amount of ammo in the player's current weapon.
Examples
ublic OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/myammo", true))
{
new
ammo = GetPlayerAmmo(playerid),
string[32];
format(string, sizeof(string), "Your ammo: %i", ammo);
SendClientMessage(playerid, -1, string);
return 1;
}
return 0;
}
Notes
warning
The ammo can hold 16-bit values, therefore values over 32767 will return erroneous values.
Related Functions
- SetPlayerAmmo: Set the ammo of a specific player's weapon.
- GetPlayerWeaponData: Find out information about weapons a player has.