saintgrimm92 Posted January 13, 2021 Share Posted January 13, 2021 I need a quest to update when a specific item is created at a forge. What type of event do I need to call on for this? I googled but couldn't find anything similar to "On Creation" or anything like that. Link to comment Share on other sites More sharing options...
IsharaMeradin Posted January 13, 2021 Share Posted January 13, 2021 A few approaches: Option 1:Assign the item to a quest reference aliasAdd a script to the reference alias using the OnContainerChanged event.Listen for the new container to be the player inventory and the old container to be none. Option 2:Assign the player to a quest reference aliasAdd a script to the reference alias using the OnItemAdded event.Use an inventory event filter for just your itemListen for the form being added to be your item and the source container to be empty. Option 3 & 4:Same as 1 & 2 but includes using SKSE and the function IsMenuOpen to make sure that a crafting menu is up before recognizing that the item added is the correct one. Option 5:Probably the best one -- Use the Story Manager with the Craft Item event Link to comment Share on other sites More sharing options...
saintgrimm92 Posted January 15, 2021 Author Share Posted January 15, 2021 Thank you!!! <3 Link to comment Share on other sites More sharing options...
Recommended Posts