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
No human-generated examples found for this event.
Auto-Generated Example
Scriptname MyCoolScript extends Quest
event OnStoryIncreaseSkill(string asSkill)
Debug.trace("Event received - OnStoryIncreaseSkill: asSkill = " + asSkill)
endEvent