Ui::setTextEntry: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
No edit summary
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
The following were found in the decompiled script files:<br>STRING, TWOSTRINGS, NUMBER, PERCENTAGE, FO_TWO_NUM, ESMINDOLLA, ESDOLLA, MTPHPER_XPNO, AHD_DIST, CMOD_STAT_0, CMOD_STAT_1, CMOD_STAT_2, CMOD_STAT_3, DFLT_MNU_OPT, F3A_TRAFDEST, ES_HELP_SOC3<br><br>ESDOLLA - cash<br>ESMINDOLLA - cash (negative)<br><br>Used to be known as _SET_TEXT_ENTRY
The following were found in the decompiled script files:<br>STRING, TWOSTRINGS, NUMBER, PERCENTAGE, FO_TWO_NUM, ESMINDOLLA, ESDOLLA, MTPHPER_XPNO, AHD_DIST, CMOD_STAT_0, CMOD_STAT_1, CMOD_STAT_2, CMOD_STAT_3, DFLT_MNU_OPT, F3A_TRAFDEST, ES_HELP_SOC3<br><br>ESDOLLA - cash<br>ESMINDOLLA - cash (negative)<br><br>Used to be known as _SET_TEXT_ENTRY
==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">ui.setTextEntry(text);</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.ui.setTextEntry(text);</syntaxhighlight>
=== Required Arguments ===
=== Required Arguments ===
*'''text:''' String
*'''text:''' String
Line 8: Line 8:
==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:UI API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Latest revision as of 14:50, 20 May 2017

The following were found in the decompiled script files:
STRING, TWOSTRINGS, NUMBER, PERCENTAGE, FO_TWO_NUM, ESMINDOLLA, ESDOLLA, MTPHPER_XPNO, AHD_DIST, CMOD_STAT_0, CMOD_STAT_1, CMOD_STAT_2, CMOD_STAT_3, DFLT_MNU_OPT, F3A_TRAFDEST, ES_HELP_SOC3

ESDOLLA - cash
ESMINDOLLA - cash (negative)

Used to be known as _SET_TEXT_ENTRY

Syntax

mp.game.ui.setTextEntry(text);

Required Arguments

  • text: String

Return value

  • Undefined

Example

// todo

See also