Background for Skyrim SE
Member of the Quest script
eventOnStoryCraftItem(ObjectReferenceakBench, LocationakLocation, FormakCreatedItem)

Description

Wiki Description

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


Caveats

CK Wiki - Notes

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

Parameters

  1. ObjectReferenceakBench

    CK Wiki Description

    The ObjectReference bench that the item was made at.

  2. LocationakLocation

    CK Wiki Description

    The Location the object was made at.

  3. FormakCreatedItem

    CK Wiki Description

    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

Auto-Generated Example

Scriptname MyCoolScript extends Quest

event OnStoryCraftItem(ObjectReference akBench, Location akLocation, Form akCreatedItem)
    Debug.trace("Event received - OnStoryCraftItem: akBench = " + akBench + " akLocation = " + akLocation + " akCreatedItem = " + akCreatedItem)
endEvent

Related Pages


Additional References

View this event’s page on the Skyrim Creation Kit Wiki

Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.