Difference between revisions of "ShowSleepWaitMenu"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>DevinPatterson
(Created page with "Syntax ShowSleepWaitMenu Displays the wait/sleep menu. Has two parameters. Example ShowSleepWaitMenu 1 1 Displays the sleep menu.")
 
imported>Odessa
(Added function template + category. Discovered arg2 is optional via GECK.)
Line 1: Line 1:
Syntax
{{Function
ShowSleepWaitMenu  
|origin = GECK1
|summary = Displays the wait/sleep menu. Has two parameters, the second is optional.
|name = ShowSleepWaitMenu  
|returnType = ?
|arguments =
  {{FunctionArgument
  |Name = ?
  |Type = int}}{{FunctionArgument
  |Name = ?
  |Type = int
  |Optional = y}}
}}
==Example==
Display the sleep menu:
<pre>
ShowSleepWaitMenu 1 1
</pre>


Displays the wait/sleep menu. Has two parameters. 
==See Also==
*[[MenuMode]]
*[[Con_CloseAllMenus]]
*[[TapControl]]


Example
[[Category:Functions]]
ShowSleepWaitMenu 1 1
[[Category:Functions (GECK 1.1)]]
Displays the sleep menu.

Revision as of 16:44, 23 March 2015

< [[::Category:Functions|Category:Functions]]

A function included in the GECK version 1.1.0.36.

Description

Displays the wait/sleep menu. Has two parameters, the second is optional.

Syntax

[help]
(?) ShowSleepWaitMenu ?:int ?:int

Example

Display the sleep menu:

ShowSleepWaitMenu 1 1

See Also