GetBaseValue - ObjectReference

Member of: ObjectReference Script

Gets the base value of the specified Actor Value from the Object Reference.

SyntaxEdit

float Function GetBaseValue(ActorValue akAV) native

ParametersEdit

Return ValueEdit

The base value of the requested actor value.

ExamplesEdit

ActorValue property HealthAV
; Obtain the player's base health actor value
int playersHealth = Game.GetPlayer().GetBaseValue(HealthAV)


ActorValue property HealthAV
; Obtain Bob's base health actor value
int bobsHealth = Bob.GetBaseValue(HealthAV)

See AlsoEdit