Native referenceRedM

GET_MAX_AMMO_IN_CLIP

0xA38DCFFCEA8962FA WEAPON
FUNCTION SIGNATURE
int GET_MAX_AMMO_IN_CLIP(Ped ped, Hash weaponHash, BOOL p2);
Property Value
Native Name GET_MAX_AMMO_IN_CLIP
Hash 0xA38DCFFCEA8962FA
Return Type int
Build 1207
Parameters ped (Ped), weaponHash (Hash), p2 (BOOL)

Description: ``` p2 is mostly 1 in the scripts.


### Usage

**Lua (Direct):**
```lua
local result = GetMaxAmmoInClip(ped, weaponHash, p2)

Lua (Hash):

local result = Citizen.InvokeNative(0xA38DCFFCEA8962FA, ped, weaponHash, p2)
Back to WEAPON