Difference between revisions of "ShowSPECIALMenu - Game"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>Plplecuyer
 
imported>Qazaaq
(added category)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
[[Category:Scripting]]
[[Category:Papyrus]]
'''Member of:''' [[Game Script]]
'''Member of:''' [[Game Script]]


Line 7: Line 5:
== Syntax ==
== Syntax ==
<source lang="papyrus">
<source lang="papyrus">
Function ShowSPECIALMenu( int aiPointPool, bool abStatsLocked ) native global
Function ShowSPECIALMenu() Native Global
</source>
</source>


== Parameters ==
== Parameters ==
*aiPointPool: The number of points the player may allocate.
None
*abStatsLocked: Whether or not current stat values are locked (e.g. can't be decremented).


== Return Value ==
== Return Value ==
None.
None


== Examples ==
== Examples ==
Line 25: Line 22:
== See Also ==
== See Also ==
*[[Game Script]]
*[[Game Script]]
[[Category:Scripting]]
[[Category:Papyrus]]
[[Category:User Interface]]

Latest revision as of 20:26, 11 February 2018

Member of: Game Script

Shows the SPECIAL change menu.

Syntax[edit | edit source]

Function ShowSPECIALMenu() Native Global

Parameters[edit | edit source]

None

Return Value[edit | edit source]

None

Examples[edit | edit source]

; Show the SPECIAL menu to let the player customize their character
Game.ShowSPECIALMenu()

See Also[edit | edit source]