Gameplay::addStuntJumpAngled: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:


==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">gameplay.addStuntJumpAngled(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, p15, p16, p17, p18);</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.gameplay.addStuntJumpAngled(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, p15, p16, p17, p18);</syntaxhighlight>
=== Required Arguments ===
=== Required Arguments ===
*'''p0:''' float
*'''p0:''' float
Line 26: Line 26:
==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 10:01, 22 July 2024

Syntax

mp.game.gameplay.addStuntJumpAngled(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, p15, p16, p17, p18);

Required Arguments

  • p0: float
  • p1: float
  • p2: float
  • p3: float
  • p4: float
  • p5: float
  • p6: float
  • p7: float
  • p8: float
  • p9: float
  • p10: float
  • p11: float
  • p12: float
  • p13: float
  • p14: float
  • p15: float
  • p16: float
  • p17: unknown (to be checked)
  • p18: unknown (to be checked)

Return value

  • int

Example

// todo

See also