Difference between revisions of "EVENT TYPE ITEM ONTEST USABLE"

From Dragon Age Toolset Wiki
Jump to: navigation, search
Line 12: Line 12:
 
|int0desc=The item property that defines a restriction
 
|int0desc=The item property that defines a restriction
 
}}
 
}}
 +
 +
See also:
 +
 +
[[SetCanUseItem]], [[CanUseItem]]
 +
 
[[Category:Event types|ITEM_ONTEST_USABLE]]
 
[[Category:Event types|ITEM_ONTEST_USABLE]]
 
[[Category:Creature events|ITEM_ONTEST_USABEL]]
 
[[Category:Creature events|ITEM_ONTEST_USABEL]]

Revision as of 00:00, 11 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