StartCombat - Actor

From the CreationKit Wiki
(Redirected from Actor.StartCombat (Papyrus))
Jump to navigation Jump to search

Member of: Actor Script

Attempts to get this actor to initiate combat with the target.

Syntax[edit | edit source]

Function StartCombat(Actor akTarget) native

Parameters[edit | edit source]

  • akTarget: Who to attempt to initiate combat with.

Return Value[edit | edit source]

None.

Examples[edit | edit source]

; Have this actor initiate combat with the player
StartCombat(Game.GetPlayer())


; Get two of our aliases to fight each other
Vader.StartCombat(Luke)

See Also[edit | edit source]