Difference between revisions of "EVENT TYPE ITEM ONTEST USABLE"

From Dragon Age Toolset Wiki
Jump to: navigation, search
m (remove redundant category)
 
Line 16: Line 16:
  
 
[[SetCanUseItem]], [[CanUseItem]]
 
[[SetCanUseItem]], [[CanUseItem]]
 
[[Category:Event types|ITEM_ONTEST_USABLE]]
 
[[Category:Creature events|ITEM_ONTEST_USABEL]]
 

Latest revision as of 01:04, 12 February 2010

The documentation on this page is incomplete, obsolete, or otherwise in need of a thorough review. The current content may provide a good starting point for this, but do not rely on its accuracy when using it to design content.

Source:
script.ldf
Sent when:
Sent from:
Sent to:
creatures
Parameters:

Usage

case EVENT_TYPE_ITEM_ONTEST_USABLE:
{
int nRestriction = GetEventInteger(ev, 0); // The item property that defines a restriction
object oItem = GetEventObject(ev, 0); //
object oCreator = GetEventObject(ev, 1); //

// insert event-handling code here

break;
}

See also:

SetCanUseItem, CanUseItem