Gameplay::clearAreaOfEverything: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
GAMEPLAY::_0x957838AAF91BD12D(x, y, z, radius, false, false, false, false); seem to make all objects go away, peds, vehicles etc. All booleans set to true doesn't seem to change anything.  
GAMEPLAY::_0x957838AAF91BD12D(x, y, z, radius, false, false, false, false); seem to make all objects go away, peds, vehicles etc. All booleans set to true doesn't seem to change anything.  
==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">gameplay.clearAreaOfEverything(x, y, z, radius, p4, p5, p6, p7);</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.gameplay.clearAreaOfEverything(x, y, z, radius, p4, p5, p6, p7);</syntaxhighlight>
=== Required Arguments ===
=== Required Arguments ===
*'''x:''' float
*'''x:''' float
Line 15: Line 15:
==Example==
==Example==
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
todo
// todo
</syntaxhighlight>
</syntaxhighlight>
==See also==
==See also==
{{Gameplay_function_c}}
{{Gameplay_functions_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Latest revision as of 09:59, 22 July 2024

GAMEPLAY::_0x957838AAF91BD12D(x, y, z, radius, false, false, false, false); seem to make all objects go away, peds, vehicles etc. All booleans set to true doesn't seem to change anything.

Syntax

mp.game.gameplay.clearAreaOfEverything(x, y, z, radius, p4, p5, p6, p7);

Required Arguments

  • x: float
  • y: float
  • z: float
  • radius: float
  • p4: Boolean
  • p5: Boolean
  • p6: Boolean
  • p7: Boolean

Return value

  • Undefined

Example

// todo

See also