Dota 2 Workshop Tools/Scripting/API/CDOTA BaseNPC.Script TakeItem
< Dota 2 Workshop Tools | Scripting | API
Jump to navigation
Jump to search
This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these template messages)
This article has no links to other VDC articles. Please help improve this article by adding links that are relevant to the context within the existing text.
January 2024
January 2024
This article is an orphan, meaning that few or no articles link to it (since January 2024). You can help by adding links to this article from other relevant articles.
Function Description
void Script_TakeItem(handle hItem)
Hidden item.
- Example
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 |