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
ObjectReferenceakBench
CK Wiki Description
The ObjectReference bench that the item was made at.
LocationakLocation
CK Wiki Description
The Location the object was made at.
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)
endEventAuto-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