Hero
Table to work with heroes.
Hero
extands NPC
GetCurrentXP(hero: Hero
): integer
Hero
): integer
hero
Hero
Returns the hero's current XP.
GetAbilityPoints(hero: Hero
): integer
Hero
): integer
hero
Hero
Returns the hero's available ability points.
GetRespawnTime(hero: Hero
): number
Hero
): number
hero
Hero
Returns the game time when the hero will respawn.
GetRespawnTimePenalty(hero: Hero
): number
Hero
): number
hero
Hero
Returns the next respawn time penalty, e.g. buyback.
GetPrimaryAttribute(hero: Hero
): Enum.Attributes
Hero
): Enum.Attributes
hero
Hero
Returns the hero's primary attribute type.
GetStrength(hero: Hero
): number
Hero
): number
hero
Hero
Returns white
value of strength.
GetAgility(hero: Hero
): number
Hero
): number
hero
Hero
Returns white
value of agility.
GetIntellect(hero: Hero
): number
Hero
): number
hero
Hero
Returns white
value of intellect.
GetStrengthTotal(hero: Hero
): number
Hero
): number
hero
Hero
Returns total value of strength.
GetAgilityTotal(hero: Hero
): number
Hero
): number
hero
Hero
Returns total value of agility.
GetIntellectTotal(hero: Hero
): number
Hero
): number
hero
Hero
Returns total value of intellect.
GetLastHurtTime(hero: Hero
): number
Hero
): number
hero
Hero
Returns the time when the hero was last hurt.
GetHurtAmount(hero: Hero
): number
Hero
): number
hero
Hero
Returns the amount of damage the hero last received.
GetRecentDamage(hero: Hero
): integer
Hero
): integer
hero
Hero
Returns the damage taken by the hero in the last in ~1 second.
GetPainFactor(hero: Hero
): number
Hero
): number
hero
Hero
Returns the pain factor of the hero. Not sure what it is.
GetTargetPainFactor(hero: Hero
): number
Hero
): number
hero
Hero
Returns the pain factor of the hero's target. Not sure what it is.
GetLifeState(hero: Hero
): boolean
Hero
): boolean
hero
Hero
Returns true
if the hero is alive. Recommended to use Entity.IsAlive
instead.
GetPlayerID(hero: Hero
): integer
Hero
): integer
hero
Hero
Returns the ID of the hero player.
GetReplicatingOtherHeroModel(hero: Hero
): Hero | nil
Hero
): Hero | nil
hero
Hero
If the hero is an illusion, Arc's copy, Meepo clone, etc. returns the original hero, otherwise returns nil.
TalentIsLearned(hero: Hero
, talent: Enum.TalentTypes
): boolean
Hero
, talent: Enum.TalentTypes
): boolean
hero
Hero
talent
Enum.TalentTypes
Returns true
if talent is learned.
Example
Last updated