Background for Skyrim SE
Member of the Game script
voidfunctionIncrementSkillBy(stringasSkillName, intaiCount)NativeGlobal

Description

Wiki Description

Advances the provided Skill by the given number of points (for the player only).

Documentation Comment

Increment the given skill on the player by the given number of points


Parameters

  1. stringasSkillName

    CK Wiki Description

    The Skill to teach to the player.

  2. intaiCount

    CK Wiki Description

    The number of points to advance the skill.


Examples

; Advance the given skill on the player by the given number of points
Game.IncrementSkillBy("Marksman", 5)

Auto-Generated Example

string myString__asSkillName
int myInt__aiCount

Game.IncrementSkillBy(myString__asSkillName, myInt__aiCount)

Related Pages


Additional References

View this function’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.