Background for Skyrim SE
Member of the Quest script
eventOnStoryIncreaseSkill(stringasSkill)

Description

Wiki Description

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


Caveats

CK Wiki - Notes

  • If the skill has gained multiple levels at the same time, this event still gets triggered only once.

Parameters

stringasSkill

CK Wiki Description

The name of the actor value for the skill that just increased


Examples

Event OnStoryIncreaseSkill(string asSkill)
  Debug.Trace("Player just increased the " + asSkill+ " skill")
endEvent

Auto-Generated Example

Scriptname MyCoolScript extends Quest

event OnStoryIncreaseSkill(string asSkill)
    Debug.trace("Event received - OnStoryIncreaseSkill: asSkill = " + asSkill)
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.