Difference between revisions of "Terminal Script"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>Plplecuyer
 
imported>Docclox
m (Added a note about attaching scripts to terminals.)
Line 25: Line 25:
*Event [[OnMenuItemRun - Terminal|OnMenuItemRun]](int auiMenuItemID, ObjectReference akTarget)
*Event [[OnMenuItemRun - Terminal|OnMenuItemRun]](int auiMenuItemID, ObjectReference akTarget)
**Event called whenever a menu item on this terminal is selected.
**Event called whenever a menu item on this terminal is selected.
== Notes ==
* Due to a bug in the Creation Kit, it is necessary to select the Incompatible check box before scripts that extend Terminal can be viewed and added to Terminal forms.


== Related Fragments ==
== Related Fragments ==
*[[Terminal Fragments]]
*[[Terminal Fragments]]

Revision as of 01:01, 20 August 2016


Extends: Form Script

Script for the manipulation of terminals.

Definition

ScriptName Terminal extends Form Native Hidden

Properties

None

Global Functions

None

Member Functions

  • Function ShowOnPipboy()
    • Displays the terminal object on the Pipboy as if the Pipboy was a terminal reference

Events

  • Event OnMenuItemRun(int auiMenuItemID, ObjectReference akTarget)
    • Event called whenever a menu item on this terminal is selected.

Notes

  • Due to a bug in the Creation Kit, it is necessary to select the Incompatible check box before scripts that extend Terminal can be viewed and added to Terminal forms.

Related Fragments