Native referenceRedMclient

_DELETE_WEAPON_OBJECT_FROM_MOUNT

0xD4C6E24D955FF061 WEAPON
FUNCTION SIGNATURE
void _DELETE_WEAPON_OBJECT_FROM_MOUNT(Ped horse);
Property Value
Native Name _DELETE_WEAPON_OBJECT_FROM_MOUNT
Hash 0xD4C6E24D955FF061
Return Type void
Build 1311
API Set client
Parameters horse (Ped)

Description: Deletes all visible weapon PROP objects attached to a horse's holsters/rack. This removes only the rendered/attached objects; it does not remove the weapons from inventory and they remain usable.

Parameters:

  • horse: Horse ped whose attached weapon objects should be removed.

Notes:

  • Useful to clear the horse's visible long-gun/holster props after manually attaching via 0x14FF0C2545527F9B.
  • Always validate the ped handle before calling.

Example video:

Usage

Lua (Direct):

DeleteWeaponObjectFromMount(horse)

Lua (Hash):

Citizen.InvokeNative(0xD4C6E24D955FF061, horse)
Back to WEAPON