RestoreActorValue - Actor
Revision as of 16:50, 29 June 2013 by imported>Thingy Person (→Syntax)
Member of: Actor Script
Restores (or "heals") damage done to the specified actor value on this actor.
SyntaxEdit
Function RestoreActorValue(string asValueName, float afAmount) native
Function RestoreAV(string asValueName, float afAmount)
RestoreActorValue(asValueName, afAmount)
EndFunction
ParametersEdit
- asValueName: The name of the actor value to restore. Actor Value List
- afAmount: How much to restore it by.
Return ValueEdit
None.
ExamplesEdit
; Restore the player's health by 10
Game.GetPlayer().RestoreActorValue("health", 10)
; Restore Bob's health by 5
Bob.RestoreAV("Health", 5)
NotesEdit
- Negative numbers will be converted to positive so -100 or 100 will have the same effect.