- Found in:
- SKSE
Description
Wiki Description
Modifies the number of perk points available to the player by the specified amount. (This function requires SKSE)
Caveats
CK Wiki - Notes
Final values can not exceed 255.
Parameters
intperkPoints
CK Wiki Description
the number of perk points to add or remove
Examples
; add 1 Perk Point to the Player
Game.ModPerkPoints(1)
; remove 3 Perk Points from the Player
Game.ModPerkPoints(-3)
; double the current Perk Points number
Game.ModPerkPoints(Game.GetPerkPoints())Auto-Generated Example
int myInt__perkPoints
Game.ModPerkPoints(myInt__perkPoints)Related Pages
- Game
- Game.GetPerkPoints()
- Game.SetPerkPoints(...)
