Basically the script is : if you pick an item on a dead body called " Warrior's Soul " it will show a message, fade your screen for 3 secs, and then place a burnt corpse at the body place.
Works great, but i need a fire sound or something like that to play during the 3 black screen ( fade ) seconds. Also if someone knows how to add a fire effect to this script, would be the cherry on the cake. Thanks.
Scriptname BloodyRibcageScript extends ObjectReference Container Property TreasBurntCorpse04COPY0000 AutoEvent OnContainerChanged(ObjectReference akNewContainer, ObjectReference akOldContainer) If akNewContainer == Game.GetPlayer() Debug.Notification("The smell of burning flesh...") Game.FadeOutGame(false, true, 3.0, 3.0) akOldContainer.PlaceAtMe(TreasBurntCorpse04COPY0000) akOldContainer.Disable() EndIfEndEvent 
