Background for Skyrim SE
Member of the Actor script
eventOnVampireFeed(ActorakTarget)

Description

Wiki Description

Event sent when the actor feeds on another (via Actor.StartVampireFeed(...))

Documentation Comment

Received when StartVampireFeed is called on an actor


Parameters

  1. ActorakTarget

    CK Wiki Description

    The target the actor was feeding on


Examples

Event OnVampireFeed(Actor akTarget)
  Debug.Trace("Vampire just fed on " + akTarget)
endEvent

Auto-Generated Example

Scriptname MyCoolScript extends Actor

event OnVampireFeed(Actor akTarget)
    Debug.trace("Event received - OnVampireFeed: akTarget = " + akTarget)
endEvent

Related Pages


Additional References

View this event’s page on the Skyrim Creation Kit Wiki

Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.