GetCombatState - Actor

Member of: Actor Script

Gets the actor's current combat state.

SyntaxEdit

int Function GetCombatState() native

ParametersEdit

None.

Return ValueEdit

The actor's current combat state, which is one of the following values:

  • 0: Not in combat
  • 1: In combat
  • 2: Searching

ExamplesEdit

; Is the pirate searching?
if (FilthyPirate.GetCombatState() == 2) ; 2 is "search"
  Debug.Trace("Careful! That filthy pirate is looking around...")
endIf

See AlsoEdit