Difference between revisions of "EVENT TYPE ITEM ONTEST USABLE"

From Dragon Age Toolset Wiki
Jump to: navigation, search
m (remove redundant category)
 
(One intermediate revision by the same user not shown)
Line 12: Line 12:
 
|int0desc=The item property that defines a restriction
 
|int0desc=The item property that defines a restriction
 
}}
 
}}
[[Category:Event types|ITEM_ONTEST_USABLE]]
+
 
[[Category:Creature events|ITEM_ONTEST_USABEL]]
+
See also:
 +
 
 +
[[SetCanUseItem]], [[CanUseItem]]

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