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)
endEventAuto-Generated Example
Scriptname MyCoolScript extends Quest
event OnStoryInfection(ObjectReference akTransmittingActor, Form akInfection)
Debug.trace("Event received - OnStoryInfection: akTransmittingActor = " + akTransmittingActor + " akInfection = " + akInfection)
endEventRelated Pages
- Quest
- Quest.OnStoryCure(...)
