- Found in:
- SKSE
Description
Wiki Description
Checks to see if the AVI is a Skill, as opposed to a Actor Value or a Derived Attribute.
Documentation Comment
Returns whether this AVI is a skill
Caveats
CK Wiki - Notes
- It is important to check (or know), if the AVI is a skill before you begin manipulating it's fields via ActorValueInfo as only skills benefit from AVI fields.
Examples
;Check to see if Alchemy is a skill (Which it is so it would be true)
Alchemy.IsSkill()Auto-Generated Example
bool returnedValue = myActorValueInfo__toCallFunctionOn.IsSkill()