[DEV SERVER] Loading description...
Caveats
Parameters
intaiFormID
CK Wiki Description
The form ID number of the form we want. (FormID proceeded by 0x) For example Form ID "0001ABCD" is given as:0x0001ABCD
stringasFilename
CK Wiki Description
The name of the file we expect the form to have originated in.
Examples
; Obtain form 0000ABCD we expect to be added by the KillerBees plugin
; Note the top most byte in the given ID is unused so 0000ABCD works as well as 0400ABCD
FormList beekillerlist = Game.GetFormFromFile(0x0000ABCD, "KillerBees.esp") as FormList
; If "KillerBees.esp" is not loaded the form will be NONE. Otherwise, add our weapon to the list.
if ( beekillerlist )
beekillerlist.AddForm( WeapBeeSlayer )
endifAuto-Generated Example
int myInt__aiFormID
string myString__asFilename
Form returnedValue = Game.GetFormFromFile(myInt__aiFormID, myString__asFilename)Additional References
View this function’s page on the Fallout 4 Creation Kit Wiki
