Kill - Actor

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

Member of: Actor Script

Kills this actor with the passed-in actor being the culprit.

Syntax[edit | edit source]

Function Kill(Actor akKiller = None) native

Parameters[edit | edit source]

  • akKiller: The Actor who is the guilty party in killing this one.
    • Default: None

Return Value[edit | edit source]

None.

Examples[edit | edit source]

; Have the dragon kill the poor sod
PoorSod.Kill(Dragon)

Notes[edit | edit source]

This awards no XP to the player, even with the player as the killer. This can be seen with the Sandman Kill. The Sandman perk performs a StartVampireFeed animation, waits 3 seconds, then performs Kill, and we get no XP.

See Also[edit | edit source]