Gameplay::clearArea: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
Line 18: Line 18:
</syntaxhighlight>
</syntaxhighlight>
==See also==
==See also==
{{Gameplay_s_function_c}}
{{Gameplay_functions_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Latest revision as of 10:02, 22 July 2024

Example: CLEAR_AREA(0, 0, 0, 30, true, false, false, false);

Syntax

mp.game.gameplay.clearArea(X, Y, Z, radius, p4, ignoreCopCars, ignoreObjects, p7);

Required Arguments

  • X: float
  • Y: float
  • Z: float
  • radius: float
  • p4: Boolean
  • ignoreCopCars: Boolean
  • ignoreObjects: Boolean
  • p7: Boolean

Return value

  • Undefined

Example

// todo

See also