OnStoryCraftItem - Quest

Member of: Quest Script

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

SyntaxEdit

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

ParametersEdit

  • 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.

NotesEdit

  • This event appears to be broken. It never appears in any of Bethesda's scripts, and using it seems to crash the game.

ExamplesEdit

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

See AlsoEdit