OnStoryIncreaseLevel - Quest

From the CreationKit Wiki
Revision as of 02:57, 29 November 2016 by imported>Lisselli (→‎Examples: Note about when the event fires.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Quest Script

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

Syntax

Event OnStoryIncreaseLevel(int aiNewLevel)

Parameters

  • aiNewLevel: The level the player just got.

Examples

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

Notes

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

See Also