Description
Wiki Description
Modifies the specified Actor Value on the Object Reference.
Documentation Comment
Modifies the specified actor value
Caveats
Parameters
floatafAmount
CK Wiki Description
How much to modify the value by.
Examples
ActorValue property HealthAV
; Modify the player's current health actor value by 10
Game.GetPlayer().ModValue(HealthAV, 10)ActorValue property HealthAV
; Modify Jake's current health actor value by -5
Actor Jake= Jake_Alias.GetReference() as Actor
Jake.ModValue(HealthAV, -5)Auto-Generated Example
ActorValue myActorValue__akAV
float myFloat__afAmount
myObjectReference__toCallFunctionOn.ModValue(myActorValue__akAV, myFloat__afAmount)Related Pages
Additional References
View this function’s page on the Fallout 4 Creation Kit Wiki
