EVENT TYPE UNEQUIP

From Dragon Age Toolset Wiki
Revision as of 21:59, 24 July 2009 by BryanDerksen (Talk | contribs) (format)

Jump to: navigation, search
Source:
[Undocumented]
Sent when:
The current creature has unequipped an item
Sent from:
engine
Sent to:
creatures
Parameters:
  • Creator: item being unequipped

Usage

case EVENT_TYPE_UNEQUIP:
{
object oItem = GetEventCreator(ev); // item being unequipped

// insert event-handling code here

break;
}