Background for Skyrim SE
Member of the Quest script
eventOnStoryInfection(ObjectReferenceakTransmittingActor, FormakInfection)

Description

Wiki Description

Event called when this quest is started via an infection story manager event.


Parameters

ObjectReferenceakTransmittingActor

CK Wiki Description

The actor that gave the player the infection.

FormakInfection

CK Wiki Description

The infection the player got infected with.


Examples

Event OnStoryInfection(ObjectReference akTransmittingActor, Form akInfection)
  Debug.Trace(akTransmittingActor + " just infected the player with " + akInfection)
endEvent

Auto-Generated Example

Scriptname MyCoolScript extends Quest

event OnStoryInfection(ObjectReference akTransmittingActor, Form akInfection)
    Debug.trace("Event received - OnStoryInfection: akTransmittingActor = " + akTransmittingActor + " akInfection = " + akInfection)
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.