GetEyesFlags

From GECK
Jump to: navigation, search


A function added by the New Vegas Script Extender.

Description

Returns the flags of the specified Eyes form as a mask of the combined value of the bits (int).

Syntax

[help]
(int) GetEyesFlags eyes:BaseForm 

Example

int FlagsMask
set FlagsMask to GetEyesFlags rEyes
if FlagsMask == (SetBit FlagsMask, 1)
  ; "not male"
endif

Bits

  • 1 (bit 0) = playable
  • 2 (bit 1) = not male
  • 4 (bit 2) = not female

See Also