Dota 2 Workshop Tools/Scripting/API/CDOTA BaseNPC.Script TakeItem

From Valve Developer Community
< Dota 2 Workshop Tools‎ | Scripting‎ | API
Revision as of 23:12, 7 May 2016 by Robincode (talk | contribs) (Created page with "{{Note | This page is automatically generated. Any changes may be overwritten}} Category:Dota2Function Category:CDOTA_BaseNPC == Function Description == ''' void S...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Note.pngNote: This page is automatically generated. Any changes may be overwritten

Function Description

void Script_TakeItem(handle hItem)

Hidden item.

Example
-- Find all enemy units
local hero = PlayerResource:GetPlayer(0):GetAssignedHero()

if hero:HasInventory() then
	local item = hero:GetItemInSlot(0)
	if item then
		hero:Script_TakeItem( item )
	end
end

Parameters

Type Name Description
handle hItem No Description Set