morrowind1979 Posted November 13, 2012 Share Posted November 13, 2012 I was wondering is there anyway to make a recorded voice file play as soon as you enter a dungeon. Looking for a detailed explanation please lol Link to comment Share on other sites More sharing options...
acidzebra Posted November 13, 2012 Share Posted November 13, 2012 Add a triggerbox, add script that uses ontriggerenterhttp://www.creationkit.com/OnTriggerEnter_-_ObjectReferenceto play a sound filehttp://www.creationkit.com/Sound.Play_%28Papyrus%29 Link to comment Share on other sites More sharing options...
morrowind1979 Posted November 13, 2012 Author Share Posted November 13, 2012 Add a triggerbox, add script that uses ontriggerenterhttp://www.creationkit.com/OnTriggerEnter_-_ObjectReferenceto play a sound filehttp://www.creationkit.com/Sound.Play_%28Papyrus%29 thanks man Link to comment Share on other sites More sharing options...
morrowind1979 Posted November 13, 2012 Author Share Posted November 13, 2012 (edited) Ok got it working with this script Scriptname DagUrWelcome extends ObjectReference Sound Property DagothUrWelcomeSpeech Auto Event OnTriggerEnter(ObjectReference akActionRef) DagothUrWelcomeSpeech.Play(self) EndEvent Now the only problem I have is I only want it to play the sound once and not every time the player enters the trigger box. Do you know how I would go about this? Edited November 13, 2012 by morrowind1979 Link to comment Share on other sites More sharing options...
Recommended Posts