Difference between revisions of "EVENT TYPE ITEM ONTEST USABLE"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(properties from ccreature.cpp)
m (remove redundant category)
 
(3 intermediate revisions by 2 users not shown)
Line 9: Line 9:
 
|object0name=oItem
 
|object0name=oItem
 
|object1name=oCreator
 
|object1name=oCreator
|int0name=nPropertyID
+
|int0name=nRestriction
 
|int0desc=The item property that defines a restriction
 
|int0desc=The item property that defines a restriction
 
}}
 
}}
 +
 +
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