Ui::setWarningMessage2: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
(yay)
Line 1: Line 1:
You can only use text entries. No custom text.
You can only use text entries. No custom text.
==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">ui.setWarningMessage2(entryHeader, entryLine1, instructionalKey, entryLine2, p4, p5, p6, p7, background);</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.ui.setWarningMessage2(entryHeader, entryLine1, instructionalKey, entryLine2, p4, p5, p6, p7, background);</syntaxhighlight>
=== Required Arguments ===
=== Required Arguments ===
*'''entryHeader:''' String
*'''entryHeader:''' String
Line 16: Line 16:
==Example==
==Example==
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
todo
// todo
</syntaxhighlight>
</syntaxhighlight>
==See also==
==See also==
{{Ui_function_c}}
{{Ui_s_function_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Revision as of 21:34, 6 May 2017

You can only use text entries. No custom text.

Syntax

mp.game.ui.setWarningMessage2(entryHeader, entryLine1, instructionalKey, entryLine2, p4, p5, p6, p7, background);

Required Arguments

  • entryHeader: String
  • entryLine1: String
  • instructionalKey: int
  • entryLine2: String
  • p4: Boolean
  • p5: unknown (to be checked)
  • p6: unknown (to be checked)
  • p7: unknown (to be checked)
  • background: Boolean

Return value

  • Undefined

Example

// todo

See also