eventOnStoryNewVoicePower(ObjectReferenceakActor, FormakVoicePower)
Description
Wiki Description
Event called when this quest is started via a new voice power story manager event.
Parameters
ObjectReferenceakActor
CK Wiki Description
The ObjectReference that got the new voice power.
FormakVoicePower
CK Wiki Description
The voice power that the actor just got.
Examples
Event OnStoryNewVoicePower(ObjectReference akActor, Form akVoicePower)
Debug.Trace(akActor + " just got a new voice power: " + akVoicePower)
endEventAuto-Generated Example
Scriptname MyCoolScript extends Quest
event OnStoryNewVoicePower(ObjectReference akActor, Form akVoicePower)
Debug.trace("Event received - OnStoryNewVoicePower: akActor = " + akActor + " akVoicePower = " + akVoicePower)
endEvent