StartCombat - Actor
From Creation Kit
(Redirected from Actor.StartCombat (Papyrus))
Member of: Actor Script
Attempts to get this actor to initiate combat with the target.
Contents |
Syntax
Function StartCombat(Actor akTarget) native
Parameters
- akTarget: Who to attempt to initiate combat with.
Return Value
None.
Examples
; Have this actor initiate combat with the player StartCombat(Game.GetPlayer())
; Get two of our aliases to fight each other Vapor.StartCombat(Luke)

