AddPerkPoints - Game

Member of: Game Script

Adds the specified number of perk points to the player. The result is clamped at 255. This will enable the player to choose additional perks.

SyntaxEdit

Function AddPerkPoints(int aiPerkPoints) native global

ParametersEdit

  • aiPerkPoints: The number of perk points to add. The resulting sum will not go above 255.

Return ValueEdit

None

ExamplesEdit

; Give the player 5 more perk points.
Game.AddPerkPoints(5)

NotesEdit

See AlsoEdit