Native referenceFiveM

CLEAR_AREA_OF_PROJECTILES

0x0A1CB9094635D1A6 MISC
FUNCTION SIGNATURE
void CLEAR_AREA_OF_PROJECTILES(float x, float y, float z, float radius, BOOL createNetEvent);
Property Value
Native Name CLEAR_AREA_OF_PROJECTILES
Hash 0x0A1CB9094635D1A6
Return Type void
Parameters x (float), y (float), z (float), radius (float), createNetEvent (BOOL)

Description: Clears an area of projectiles at the given coordinates and radius.

Parameters

  • x (float) — The x coordinate of where to clear projectiles.
  • y (float) — The y coordinate of where to clear projectiles.
  • z (float) — The z coordinate of where to clear projectiles.
  • radius (float) — The area radius to clear projectiles.
  • createNetEvent (BOOL) — specifies whether a CClearAreaEvent event of should be created for online use.

Examples

-- Clear the area, do also create an event
ClearAreaOfProjectiles(0.0, 0.0, 0.0, 10000.0, true)
Back to MISC