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

Description

Wiki Description

Has the actor vampire feed on a sleeping actor

Documentation Comment

Starts vampire feed with the target


Caveats

CK Wiki - Notes

  • This function starts playing actual feeding animation on target, and chooses correct front or back variant
  • Player seems to be put in AI driven state, which ends after the animation (probably on special "VampireFeedEnd" animation event)
  • Corresponding event OnVampireFeed is fired immediately (or very quickly after)
  • Event is fired regardless whether actual animation is successfully playing. To check if animation did start, in this case it is possible to use Actor.GetPlayerControls(), but idk how reliable

Parameters

ActorakTarget

CK Wiki Description

Who is going to be feed on.


Examples

; Have player feed on on Fred
Game.GetPlayer().StartVampireFeed(Fred);

Auto-Generated Example

Actor myActor__akTarget

myActor__toCallFunctionOn.StartVampireFeed(myActor__akTarget)

Related Pages


Additional References

View this function’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.