GetCombatTarget - Actor

From the CreationKit Wiki
Revision as of 03:08, 20 March 2015 by imported>Thynar
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Actor Script

Obtains the actor this actor is currently in combat with.

Syntax

Actor Function GetCombatTarget() native

Parameters

None.

Return Value

The actor this actor is currently in combat with (if any).

Examples

; Print a message if Bob is in combat with the player
if (Bob.GetCombatTarget() == Game.GetPlayer())
  Debug.Trace("Bob is in combat with the player!")
endIf

; Below will only return a valid actor ID while your
; cursor is pointing directly on an actor
Actor TargetRef = Game.GetPlayer().GetCombatTarget()
Debug.Trace("My target was " + TargetRef)

See Also