Dota 2 Workshop Tools/Scripting/API/Global.ExecuteOrderFromTable: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(Dota_Lebot push: Updated Page)
(Dota_Lebot push: Updated Page)
Line 6: Line 6:




''' void ExecuteOrderFromTable(handle ''a'') '''
''' void ExecuteOrderFromTable(handle ''handle_1'') '''


''Issue an order from a script table''
''Issue an order from a script table''
Line 32: Line 32:
|-
|-
| handle
| handle
| a
| handle_1
| No Description Set
| No Description Set
|}
|}

Revision as of 04:29, 19 June 2015

Note.pngNote: This page is automatically generated. Any changes may be overwritten

Function Description

void ExecuteOrderFromTable(handle handle_1)

Issue an order from a script table


Example
local newOrder = {
 		UnitIndex = yourNPC:entindex(), 
 		OrderType = DOTA_UNIT_ORDER_ATTACK_MOVE,
 		 TargetIndex = entToAttack:entindex(), --Optional.  Only used when targeting units
 		AbilityIndex = 0, --Optional.  Only used when casting abilities
 		Position = nil, --Optional.  Only used when targeting the ground
 		Queue = 0 --Optional.  Used for queueing up abilities
 	}

ExecuteOrderFromTable(newOrder)

Parameters

Type Name Description
handle handle_1 No Description Set