Difference between revisions of "OnStoryCraftItem - Quest"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Sagitarius22
imported>Sagitarius22
Line 26: Line 26:
== See Also ==
== See Also ==
*[[Quest Script]]
*[[Quest Script]]
== Notes ==
This event does not seem to work at the moment.

Revision as of 17:05, 30 April 2012

Member of: Quest Script

Event called when this quest is started via a craft item story manager event.

Syntax

Event OnStoryCraftItem(ObjectReference akBench, Location akLocation, Form akCreatedItem)

Parameters

  • akBench: The ObjectReference bench that the item was made at.
  • akLocation: The Location the object was made at.
  • akCreatedItem: The base object of the item that was made.

Examples

Event OnStoryCraftItem(ObjectReference akBench, Location akLocation, Form akCreatedItem)
  Debug.Trace(akItemBase + " was made at " + akBench + " in location " + akLocation)
endEvent

See Also