Gameplay::clearAreaOfObjects: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
Line 15: Line 15:
</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 09:58, 22 July 2024

I looked through the PC scripts that this site provides you with a link to find. It shows the last param mainly uses, (0, 2, 6, 16, and 17) so I am going to assume it is a type of flag.

Syntax

mp.game.gameplay.clearAreaOfObjects(x, y, z, radius, flags);

Required Arguments

  • x: float
  • y: float
  • z: float
  • radius: float
  • flags: int

Return value

  • Undefined

Example

// todo

See also