GetActorProcessingLevel

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
< [[::Category:Functions|Category:Functions]]

A function added by the JIP NVSE Plugin.

Description

Returns the current AI/script processing-level of the calling actor. The returned value ranges from 0 to 3:

  • 0 (High): The actor is processed every frame.
  • 1 (Mid-High): The actor is processed every ~18 seconds.
  • 2 (Mid-Low): Unknown at this time.
  • 3 (Low): The actor is processed every ~120 seconds.

Syntax

[help]
(processingLvl:int) reference.GetActorProcessingLevel

Example

set iProcLevel to actorRef.GetActorProcessingLevel

See Also