Osiris/API/RuneRemoved: Difference between revisions

From Divinity Engine Wiki
Jump to navigation Jump to search
mNo edit summary
 
Line 6: Line 6:
* '''_Character''': the character that removed the rune. Can be NULL in case this event is the consequence of a [[Osiris/API/ItemRemoveRune|ItemRemoveRune]] call without a valid character.
* '''_Character''': the character that removed the rune. Can be NULL in case this event is the consequence of a [[Osiris/API/ItemRemoveRune|ItemRemoveRune]] call without a valid character.
* '''_Item''': the item from which the rune was removed.
* '''_Item''': the item from which the rune was removed.
* '''_Rune''': item that represents the rune that was removed (newly created from the appropriate root template, not equal the inserted item).
* '''_Rune''': item that represents the rune that was removed (newly created from the appropriate root template, not equal to the inserted item).
* '''_Slot''': the item slot from which the rune was removed. See [[Osiris/API/ItemGetRuneItemTemplate|ItemGetRuneItemTemplate]] for the interpretation of this parameter.
* '''_Slot''': the item slot from which the rune was removed. See [[Osiris/API/ItemGetRuneItemTemplate|ItemGetRuneItemTemplate]] for the interpretation of this parameter.
===== Notes =====
===== Notes =====

Latest revision as of 11:04, 1 December 2018

Full Definition(s)
  • event RuneRemoved((CHARACTERGUID)_Character, (ITEMGUID)_Item, (ITEMGUID)_Rune, (INTEGER)_Slot)
Description

Thrown when a rune has been removed from an item.

Parameters
  • _Character: the character that removed the rune. Can be NULL in case this event is the consequence of a ItemRemoveRune call without a valid character.
  • _Item: the item from which the rune was removed.
  • _Rune: item that represents the rune that was removed (newly created from the appropriate root template, not equal to the inserted item).
  • _Slot: the item slot from which the rune was removed. See ItemGetRuneItemTemplate for the interpretation of this parameter.
Notes
  • This event is new in DOS2 Patch 6.
See Also