Background for Skyrim SE
Member of the Quest script
eventOnStoryEscapeJail(LocationakLocation, FormakCrimeGroup)

Description

Wiki Description

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


Parameters

  1. LocationakLocation

    CK Wiki Description

    The Location where the escape happened.

  2. FormakCrimeGroup

    CK Wiki Description

    The crime group whose jail was escaped from.


Examples

Event OnStoryEscapeJail(Location akLocation, Form akCrimeGroup)
  Debug.Trace("The player escaped from a jail owned by " + akCrimeGroup)
endEvent

Auto-Generated Example

Scriptname MyCoolScript extends Quest

event OnStoryEscapeJail(Location akLocation, Form akCrimeGroup)
    Debug.trace("Event received - OnStoryEscapeJail: akLocation = " + akLocation + " akCrimeGroup = " + akCrimeGroup)
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.