Difference between revisions of "AddScriptPackage"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Ez0n3
imported>Ez0n3
m
 
Line 9: Line 9:
   {{FunctionArgument
   {{FunctionArgument
   |Name = PackageID
   |Name = PackageID
  |Type = ref
   }}
   }}
  |example = AddScriptPackage GenericTravelOnActivate
  |example = AddScriptPackage GenericTravelOnActivate

Latest revision as of 06:05, 15 January 2011

< [[::Category:Functions|Category:Functions]]

Link to TES4 Construction Set Wiki: AddScriptPackage.

A function included in the GECK version 1.1.0.36.

Description

Add a script package to the calling actor. This package takes precedence over all other packages until it is done.

Syntax

[help]
[ActorRefID].AddScriptPackage PackageID:ref

Example

AddScriptPackage GenericTravelOnActivate

Notes

  • An actor can have only one script package at a time. When calling the function twice on the same actor, the second package replaces the first one added.
  • Unless the added package has some constraint on it ("must complete" and/or "must reach location"), it will be removed the next time the actor reevaluates his package.

See Also