Difference between revisions of "ShowTrainingMenu - Game"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>HOTSPOTSHIELD
 
imported>Qazaaq
(added category)
 
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 ShowTrainingMenu(Actor aActor) native global
Function ShowTrainingMenu(Actor aActor) Native Global
</source>
</source>


Line 14: Line 12:


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


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

Latest revision as of 20:28, 11 February 2018

Member of: Game Script

Shows the training menu.

Syntax[edit | edit source]

Function ShowTrainingMenu(Actor aActor) Native Global

Parameters[edit | edit source]

  • aActor: Actor providing the training.

Return Value[edit | edit source]

None

Examples[edit | edit source]

; Show the training menu to allow the player to train skills
Game.ShowTrainingMenu(blacksmithTrainingActor)

See Also[edit | edit source]