Background for Skyrim SE
Member of the Quest script
eventOnStoryNewVoicePower(ObjectReferenceakActor, FormakVoicePower)

Description

Wiki Description

Event called when this quest is started via a new voice power story manager event.


Parameters

  1. ObjectReferenceakActor

    CK Wiki Description

    The ObjectReference that got the new voice power.

  2. 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)
endEvent

Auto-Generated Example

Scriptname MyCoolScript extends Quest

event OnStoryNewVoicePower(ObjectReference akActor, Form akVoicePower)
    Debug.trace("Event received - OnStoryNewVoicePower: akActor = " + akActor + " akVoicePower = " + akVoicePower)
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.