Difference between revisions of "Osiris/API/RuneRemoved"

From Divinity Engine Wiki
Jump to: navigation, search
(Documented RuneRemoved)
 
m (Notes)
Line 9: Line 9:
 
* '''_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 =====
* /
+
* This event is new in DOS2 Patch 6.
 +
 
 
===== See Also =====
 
===== See Also =====
 
* [[Osiris/API/ItemGetRuneItemTemplate|ItemGetRuneItemTemplate]]
 
* [[Osiris/API/ItemGetRuneItemTemplate|ItemGetRuneItemTemplate]]

Revision as of 09:37, 23 February 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 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