GetEquipmentBipedMask

From the Fallout3 GECK Wiki
Revision as of 18:03, 14 September 2014 by imported>Odessa (created)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
< [[::Category:Functions|Category:Functions]]

A function added by the New Vegas Script Extender.

Description

Returns the equipment flags used by the specified armor as a bitmask int. Bitmasks may be built by using ClearBit/SetBit. Added by NVSE 4.5.

Syntax

[help]
(BitMask:int) GetEquipmentBipedMask ToGetMaskOf:armor

Bit Fields

  • 4 = HasBackpack
  • 8 = Medium Armor
  • 32 = Power Armor
  • 64 = Non playable
  • 128 = HeavyArmor

Other bits are either unused or unknown.

Example

int BitMask
let BitMask := GetEquipmentBipedMask ArmorTeslaPower ; * 160 (Heavy + Power)

See Also