Osiris/API/CharacterDestroyedItem

From Divinity Engine Wiki
Revision as of 18:21, 19 February 2019 by Tinkerer (talk | contribs) (Documented CharacterDestroyedItem)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Full Definition(s)
  • event CharacterDestroyedItem((CHARACTERGUID)_Defender, (ITEMGUID)_Item)
Description
  • Thrown when a character destroys an item.
Parameters
  • _Character: The character that destroyed the item.
  • _Item: The item that was destroyed.
Notes
  • _Character is never NULL. If the character triggering the destruction of the item is not know (or if it was not destroyed by a character), this event does not get thrown. If you wish to catch all item destruction events, catch ItemDestroyed instead.
  • In spite of what the name suggests, this event gets thrown when the destruction of the item starts, right after it entered the destroying state.
See Also