GetForm - Game

Member of: Game Script

Obtains the form specified by its form ID number.

SyntaxEdit

Form Function GetForm(int aiFormID) native global

ParametersEdit

  • aiFormID: The form ID number of the form we want. (FormID proceeded by 0x) For example Form ID "0001DA07" is given as: 0x0001DA07

Return ValueEdit

The requested Form, or None if the form ID is not valid.

ExamplesEdit

; Obtain whatever form 0001DA07 is
Form someForm = Game.GetForm(0x0001DA07)

See AlsoEdit