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
Examples
Event OnStoryIncreaseSkill(string asSkill)
Debug.Trace("Player just increased the " + asSkill+ " skill")
endEventAuto-Generated Example
Scriptname MyCoolScript extends Quest
event OnStoryIncreaseSkill(string asSkill)
Debug.trace("Event received - OnStoryIncreaseSkill: asSkill = " + asSkill)
endEvent