Background for Fallout 4
Member of the FavoritesManager script
voidfunctionAddTaggedForms(Form[]forms)NativeGlobal

Description

Wiki Description

Adds all Form in the array to be tagged for search. Be careful which form types are added, some may crash Fallout 4.

Documentation Comment

Adds all forms in the array to tagged search (Be careful what form types you add, some may crash)


Caveats

CK Wiki - Notes

None


Parameters

Form[]forms

CK Wiki Description

The Form to tag for search.


Examples

{tags three items for search}
MiscObject Property PowerRelayCoil Auto Const Mandatory
MiscObject Property VacuumTube Auto Const Mandatory
MiscObject Property Gear Auto Const Mandatory

Event OnInit()
    Form[] tagged = new Form[0]
    tagged.Add(PowerRelayCoil)
    tagged.Add(VacuumTube)
    tagged.Add(Gear)
    FavoritesManager.AddTaggedForms(tagged)
    Debug.Trace("Favorites manager tagged " + tagged.Length + " items for search.")  
EndEvent

Auto-Generated Example

Form[] myFormArray__forms

FavoritesManager.AddTaggedForms(myFormArray__forms)

Related Pages


Additional References

View this function’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.