GetActorBaseFlagsLow

From the Fallout3 GECK Wiki
Revision as of 05:55, 25 October 2015 by imported>Hemingway (Added bit numbers)
Jump to navigation Jump to search
< [[::Category:Functions|Category:Functions]]

A function added by the New Vegas Script Extender.

Description

Returns the low base flags of the specified actor or calling reference, as a bitmask (int).

Syntax

[help]
(int) reference.GetActorBaseFlagsLow NPC:BaseForm

Example

int FlagsBitMask
set FlagsBitMask to GetActorBaseFlagsLow SomeNPC

Actor Base Flags Low

  • 0 (1) = female
  • 1 (2) = essential
  • 2 (4) = has chargen face
  • 3 (8) = respawn
  • 4 (16) = auto-calc stats
  • 5 (32) = unknown
  • 6 (64) = unknown
  • 7 (128) = pc level mult
  • 8 (256) = use template
  • 9 (512) = no low-level processing
  • 10 (1024) = unknown
  • 11 (2048) = no blood spray
  • 12 (4096) = no blood decal
  • 13 (8192) = unknown
  • 14 (16384) = unknown
  • 15 (32768) = unknown

See Also