Background for Skyrim SE
Member of the Quest script
eventOnStoryIncreaseLevel(intaiNewLevel)

Description

Wiki Description

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


Caveats

CK Wiki - Notes

  • The event fires when you increase a stat and exit from the perk menu.

Parameters

intaiNewLevel

CK Wiki Description

The level the player just got.


Examples

Event OnStoryIncreaseLevel(int aiNewLevel)
  Debug.Trace("Player just reached level " + aiNewLevel)
endEvent

Auto-Generated Example

Scriptname MyCoolScript extends Quest

event OnStoryIncreaseLevel(int aiNewLevel)
    Debug.trace("Event received - OnStoryIncreaseLevel: aiNewLevel = " + aiNewLevel)
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.