Entity
Entity API
Entity
is base class for all entities in the game e.g. NPC
, Hero
, Player
, Ability
IsEntity(entity: Entity
): boolean
Entity
): boolean
entity
Entity
Returns true
if the entity is in entity list. Search in unordered set.
IsNPC(entity: Entity
): boolean
Entity
): boolean
entity
Entity
Returns true
if the entity is in NPC list. Search in unordered set.
IsHero(entity: Entity
): boolean
Entity
): boolean
entity
Entity
Returns true
if the entity is in hero list. Search in unordered set.
IsPlayer(entity: Entity
): boolean
Entity
): boolean
entity
Entity
Returns true
if the entity is in player list. Search in unordered set.
IsAbility(entity: Entity
): boolean
Entity
): boolean
entity
Entity
Returns true
if the entity is in ability list. Search in unordered set. Item is ability.
Get(index: integer
): Entity | nil
integer
): Entity | nil
index
integer
Returns entity by game index.
Example
GetIndex(entity: Entity
): integer
Entity
): integer
entity
Entity
Returns game index of entity.
GetClassName(entity: Entity
): string
Entity
): string
entity
Entity
Returns the entity's class name.
GetUnitName(entity: Entity
): string
Entity
): string
entity
Entity
Returns the entity's name.
GetUnitDesignerName(entity: Entity
): string
Entity
): string
entity
Entity
Returns the entity's designerName field.
GetTeamNum(entity: Entity
): Enum.TeamNum
Entity
): Enum.TeamNum
entity
Entity
Returns the entity's team number.
IsSameTeam(entity1: Entity
, entity2: Entity
): boolean
Entity
, entity2: Entity
): boolean
entity1
Entity
entity2
Entity
Returns true
if the entities are in the same team.
GetAbsOrigin(entity: Entity
): Vector
Entity
): Vector
entity
Entity
Returns the entity's position.
GetRotation(entity: Entity
): Angle
Entity
): Angle
entity
Entity
Returns the entity's rotation.
Example
IsAlive(entity: Entity
): boolean
Entity
): boolean
entity
Entity
Returns true
if the entity is alive.
IsDormant(entity: Entity
): boolean
Entity
): boolean
entity
Entity
Returns true
if the entity is not visible to the local player.
GetHealth(entity: Entity
): integer
Entity
): integer
entity
Entity
Returns the entity's health.
GetMaxHealth(entity: Entity
): integer
Entity
): integer
entity
Entity
Returns the entity's max health.
GetOwner(entity: Entity
): Entity | nil
Entity
): Entity | nil
entity
Entity
Returns the entity's owner or nil
if the entity has no owner.
e.g. for Player
-> npc_dota_hero_ember_spirit
-> npc_dota_hero_ember_spirit_fire_remnant
ownership chain Entity.GetOwner(remnant)
will return Ember Spirit's entity.
OwnedBy(entity: Entity
, owner: Entity
): boolean
Entity
, owner: Entity
): boolean
entity
Entity
- entity to check
owner
Entity
- owner for comparison
Returns true
if the entity is owned by another entity-owner. It will check the first owner only.
RecursiveGetOwner(entity: Entity
): Entity | nil
Entity
): Entity | nil
entity
Entity
Returns the entity's last owner.
e.g. for Player
-> npc_dota_hero_ember_spirit
-> npc_dota_hero_ember_spirit_fire_remnant
ownership chain Entity.GetOwner(remnant)
will return Player
.
RecursiveOwnedBy(entity: Entity
, owner: Entity
): boolean
Entity
, owner: Entity
): boolean
entity
Entity
entity to check
owner
Entity
owner for comparison
Returns true
if the entity is owned by another entity-owner. It will check the whole ownership chain.
GetHeroesInRadius(entity: Entity
, radius: number
, teamType [?]
: Enum.TeamType
, skipIllusions [?]
: boolean
): table
Entity
, radius: number
, teamType [?]
: Enum.TeamType
, skipIllusions [?]
: boolean
): table
entity
Entity
entity to get position
radius
number
radius to search around
teamType [?]
Enum.TeamType
relative to the entity (default: TEAM_ENEMY)
skipIllusions [?]
boolean
true
if you want to get table without illusions (default: true)
Returns the 1-based indexed table of all alive and visible heroes in radius of the entity. Exclude illusion.
Example
GetUnitsInRadius(entity: Entity
, radius: number
, teamType [?]
: Enum.TeamType
, skipIllusions [?]
: boolean
): table
Entity
, radius: number
, teamType [?]
: Enum.TeamType
, skipIllusions [?]
: boolean
): table
entity
Entity
entity to get position
radius
number
radius to search around
teamType [?]
Enum.TeamType
relative to the entity (default: TEAM_ENEMY)
skipIllusions [?]
boolean
true
if you want to get table without illusions (default: true)
Returns the 1-based indexed table of all alive and visible NPCs in radius of the entity.
Example
GetTreesInRadius(entity: Entity
, radius: number
, active [?]
: boolean
): table
Entity
, radius: number
, active [?]
: boolean
): table
entity
Entity
entity to get position
radius
number
radius to search around
active [?]
boolean
true
if you want to get table with active trees only, otherwise for inactive trees (default: true)
Returns the 1-based indexed table of all not temporary trees in radius of the entity.
Example
GetTempTreesInRadius(entity: Entity
, radius: number
): table
Entity
, radius: number
): table
entity
Entity
entity to get position
radius
number
radius to search around
Returns the 1-based indexed table of all temporary trees in radius of the entity.
Example
IsControllableByPlayer(entity: Entity
, playerId: integer
): boolean
Entity
, playerId: integer
): boolean
entity
Entity
entity to check
playerId
integer
player id
Returns true
if entity is controllable by player.
GetForwardPosition(entity: Entity
, distance: number
): Vector
Entity
, distance: number
): Vector
entity
Entity
entity to get position
distance
number
distance to move forward
Returns position in front of entity or (0,0,0) if entity is invalid.
GetClassID(entity: Entity
): integer
Entity
): integer
entity
Entity
entity to get class id
Returns entity class id. Could be as a optimized way to check entity type.
Last updated