Difference between revisions of "EVENT TYPE CRAFT ITEM"

From Dragon Age Toolset Wiki
Jump to: navigation, search
m (categoryt)
 
(One intermediate revision by the same user not shown)
Line 6: Line 6:
 
|to=[[module]]
 
|to=[[module]]
 
|object0name=oCrafter
 
|object0name=oCrafter
 +
|tocategory1=module
 +
|sortkey=CRAFT_ITEM
 
}}
 
}}
 
[[Category:Event types|CRAFT_ITEM]]
 
[[Category:Module events|CRAFT_ITEM]]
 

Latest revision as of 01:05, 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:
Whenever the player successfully crafts and item.
Sent from:
engine
Sent to:
module
Parameters:

Usage

case EVENT_TYPE_CRAFT_ITEM:
{
object oCrafter = GetEventObject(ev, 0); //

// insert event-handling code here

break;
}