GetBaseActorValue - Actor

Member of: Actor Script

Gets the base value of the specified actor value from the actor.

SyntaxEdit

float Function GetBaseActorValue(string asValueName) native
float Function GetBaseAV(string asValueName)
  return GetBaseActorValue(asValueName)
EndFunction

ParametersEdit

  • asValueName: The name of the actor value to get the base value of. Actor Value List

Return ValueEdit

The base value of the requested actor value.

ExamplesEdit

; Obtain the player's base health actor value
int playersHealth = Game.GetPlayer().GetBaseActorValue("health")


; Obtain Bob's base health actor value
int bobsHealth = Bob.GetBaseAV("Health")

NotesEdit

  • To get the current value instead of the base value see GetActorValue - Actor.
  • GetBaseActorValue - Actor returns the possible max value of a stat BEFORE buffs. To get the player's current percent of a stat after buffs (with examples how to get the max buffed value or a percent of the max buffed value of a stat as well), see GetActorValuePercentage - Actor
  • This returns the value of an actor value as seen in the editor, as well as any changes made to it via skill ups, leveling up(health, etc), or even through the console.

See AlsoEdit