gob2 Posted November 28, 2018 Share Posted November 28, 2018 Howdy. So, I'm trying to do the skyrim Bendu Olo quest tutorial in Fallout 4, and I'm wondering the proper way to do chapter 5. You have to make a script, but posting the OnDeath part- "Scriptname GSQThiefScript extends ObjectReference Quest Property TutorialQuest Auto Event OnDeath(Actor killer)TutorialQuest.SetObjectiveDisplayed(20) TutorialQuest.SetStage(20)EndEvent "-will of course not compile. What is the proper way to do this? Thanks for any help. Link to comment Share on other sites More sharing options...
SKKmods Posted November 28, 2018 Share Posted November 28, 2018 The tutorial is old school in suggesting to attach scripts to forms unnecessarily. The elegant ideal that will set you up for far more flexible solutions in the future would be: Create a new GSQThief reference alias in your quest Configure [o] Unique Actor GSQThief Attach a [new] ReferenceAlias script to that with the same content. The script header will be like: Scriptname GSQThiefScript extends ReferenceAlias and it will receive all actor events including OnDeath() A recent "use reference alias scripts, not form attached" discussion that delivered the desired outcome here https://old.reddit.com/r/FalloutMods/comments/a0iaz9/fo4_papyrus_help_with_power_armor_and_onequipped/ Link to comment Share on other sites More sharing options...
gob2 Posted November 29, 2018 Author Share Posted November 29, 2018 Thank you for the advice. That worked very well. Link to comment Share on other sites More sharing options...
Recommended Posts