dantegazza Posted January 26, 2023 Share Posted January 26, 2023 (edited) Hi guys, I want to add music to the ingame headphones I use (armour) in my Skyrim SE game, so when I equip them a song plays. Is this possible or does anyone know how I could try? Thankz Edited January 26, 2023 by dantegazza Link to comment Share on other sites More sharing options...
scorrp10 Posted January 26, 2023 Share Posted January 26, 2023 You would need to define one or more music track forms pointed to wav files of your music.You would need to define a MusicType form that contains those music tracks, and likely has priority 1 (highest) You would need to attach a script to the headphones.In the script:Actor Property PlayerRef Auto <<< fill this with 'Player' for any cell.MusicType Property myHeadphoneMusic Auto <<< fill this with your music type form. Event OnEquipped(Actor akActor) If akActtor == PlayerRef myHeadphoneMusic.Add() EndIfEndEvent Event OnUnequipped(Actor akActor) If akActtor == PlayerRef myHeadphoneMusic.Remove() EndIfEndEvent Link to comment Share on other sites More sharing options...
Recommended Posts