Player
Table to work with Player
.
Player
.PrepareUnitOrders(player: Player
, type: Enum.UnitOrder
, target: Entity | nil
, pos: Vector
, issuer: Enum.PlayerOrderIssuer
, issuer_npc: NPC
, queue [?]
: boolean
, show_effects [?]
: boolean
, push [?]
: boolean
, execute_fast [?]
: boolean
): void
Player
, type: Enum.UnitOrder
, target: Entity | nil
, pos: Vector
, issuer: Enum.PlayerOrderIssuer
, issuer_npc: NPC
, queue [?]
: boolean
, show_effects [?]
: boolean
, push [?]
: boolean
, execute_fast [?]
: boolean
): void
player
Player
The player issuing the order.
type
Enum.UnitOrder
The type of order to be issued.
target
Entity | nil
The target entity, if applicable.
pos
Vector
The positional coordinates for the order.
issuer
Enum.PlayerOrderIssuer
The issuer capture mode.
issuer_npc
NPC
The specific NPC that will issue the order.
queue [?]
boolean
If true, the order will be added to the Dota cast queue. (default: false)
show_effects [?]
boolean
If true, visual effects will indicate the position of the order. (default: false)
push [?]
boolean
If true, the order will be pushed to the OnPrepareUnitOrders callback. (default: false)
execute_fast [?]
boolean
If true, the order will bypass internal safety delays for immediate execution. (default: false)
Provides ability to execute such game actions as moving, attacking, or casting spells etc.
HoldPosition(player: Player
, issuer_npc: NPC
, queue [?]
: boolean
, push [?]
: boolean
, execute_fast [?]
: boolean
): void
Player
, issuer_npc: NPC
, queue [?]
: boolean
, push [?]
: boolean
, execute_fast [?]
: boolean
): void
player
Player
The player issuing the order.
issuer_npc
NPC
The specific NPC that will issue the order.
queue [?]
boolean
If true, the order will be added to the Dota cast queue. (default: false)
push [?]
boolean
If true, the order will be pushed to the OnPrepareUnitOrders callback. (default: false)
execute_fast [?]
boolean
If true, the order will bypass internal safety delays for immediate execution. (default: false)
Sends the hold position action.
AttackTarget(player: Player
, issuer_npc: NPC
, target: NPC
, queue [?]
: boolean
, push [?]
: boolean
, execute_fast [?]
: boolean
): void
Player
, issuer_npc: NPC
, target: NPC
, queue [?]
: boolean
, push [?]
: boolean
, execute_fast [?]
: boolean
): void
player
Player
The player issuing the order.
issuer_npc
NPC
The specific NPC that will issue the order.
target
NPC
The target NPC.
queue [?]
boolean
If true, the order will be added to the Dota cast queue. (default: false)
push [?]
boolean
If true, the order will be pushed to the OnPrepareUnitOrders callback. (default: false)
execute_fast [?]
boolean
If true, the order will bypass internal safety delays for immediate execution. (default: false)
Sends the attack target position.
GetPlayerID(player: Player
): integer
Player
): integer
player
Player
The target player.
Returns the player ID within the current game session. If the player ID is not valid, it will return -1.
GetPlayerSlot(player: Player
): integer
Player
): integer
player
Player
The target player.
Returns the player slot number within the current game session.
GetPlayerTeamSlot(player: Player
): integer
Player
): integer
player
Player
The target player.
Returns the team slot number assigned to the player within their respective team.
GetName(player: Player
): string
Player
): string
player
Player
The target player.
Returns the player nickname.
GetPlayerData(player: Player
): table
Player
): table
player
Player
The target player.
Returns the player data table.
GetTeamData(player: Player
): table
Player
): table
player
Player
The target player.
Returns the player team data table. Team data is only available for players on the local team.
GetNeutralStashItems(player: Player
): table
Player
): table
player
Player
The target player.
Returns table with Item
s available in the neutral stash.
GetTeamPlayer(player: Player
): table
Player
): table
player
Player
The target player.
Returns Team Player Data table:
reliable_gold
unreliable_gold
starting_position
totalearned_gold
totalearned_xp
shared_gold
hero_kill_gold
creep_kill_gold
neutral_kill_gold
courier_gold
bounty_gold
roshan_gold
building_gold
other_gold
comeback_gold
experimental_gold
experimental2_gold
creepdeny_gold
tp_scrolls_purchased
custom_stats
income_gold
ward_kill_gold
ability_gold
networth
deny_count
lasthit_count
lasthit_streak
lasthit_multikill
nearby_creep_death_count
claimed_deny_count
claimed_miss_count
miss_count
possible_hero_selection
meta_level
meta_experience
meta_experience_awarded
buyback_cooldown_time
buyback_gold_limit_time
buyback_cost_time
custom_buyback_cooldown
stuns
healing
tower_Kills
roshan_kills
camera_target
override_selection_entity
observer_wards_placed
sentry_wards_placed
creeps_stacked
camps_stacked
rune_pickups
gold_spent_on_support
hero_damage
wards_purchased
wards_destroyed
commands_issued
gold_spent_on_consumables
gold_spent_on_items
gold_spent_on_buybacks
gold_lost_to_death
is_new_player
is_guide_player
IsMuted(player: Player
): boolean
Player
): boolean
player
Player
The target player.
Returns the player mute status.
GetSelectedUnits(player: Player
): table
Player
): table
player
Player
The target player.
Returns table of selected units by player.
AddSelectedUnit(player: Player
, NPC: NPC
): void
Player
, NPC: NPC
): void
player
Player
The target player.
NPC
NPC
To select.
Adds unit to player selection.
ClearSelectedUnits(player: Player
): void
Player
): void
player
Player
The target player.
Clears player selection.
GetQuickBuyInfo(player: Player
): table
Player
): table
player
Player
The target player.
Returns table with m_quickBuyItems(table of integers) and m_quickBuyIsPurchasable(table of booleans).
GetTotalGold(player: Player
): integer
Player
): integer
player
Player
The target player.
Returns total gold of player.
Last updated