GetActorValue - Actor

From the CreationKit Wiki
Revision as of 17:11, 20 June 2012 by imported>Moorleiche2k (→‎Syntax)
Jump to navigation Jump to search

Member of: Actor Script

Gets the specified actor value from the actor.

Syntax

float Function GetActorValue(string asValueName) native
float Function GetAV(string asValueName) native

Parameters

Return Value

The value of the requested actor value.

Examples

; Obtain the player's current health actor value
int playersHealth = Game.GetPlayer().GetActorValue("health") as int


; Obtain Bob's current health actor value
int bobsHealth = Bob.GetAV("Health") as int

See Also