Need a more elegant way of managing music

unpro

New Member
Reaction score
1
Hi, my map is a murder variant map that plays music whenever the killer is near a victim. There's multiple musics to choose from, all with slightly different lengths. I am trying to make it such that the song stops whenever the killer moves out of range. Unfortunately, Sound- Clear the music list doesn't work as described. It apparently does not clear the music in queue, which affects my current implementation. So I was about to put waits and additional variables but it would be pretty messy. Maybe you guys can think of something better than this.

Note: deathtone is referring to a music played when a victim dies, the trigger stops music and plays a creepy music for 15 seconds before setting deathtone back to false.
Trigger:
  • tensioner
    • Events
      • Time - Every 0.25 seconds of game time
    • Conditions
      • deathtone Equal to False
    • Actions
      • Unit Group - Pick every unit in (Units within 500.00 of (Position of killerunit) matching (((Owner of (Matching unit)) Not equal to Killer) and ((Owner of (Matching unit)) Not equal to Neutral Passive))) and do (Actions)
        • Loop - Actions
          • If ((Owner of (Picked unit)) Not equal to Killer) then do (Set songonoff = True) else do (Do nothing)
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • songonoff Equal to True
          • testmusic Equal to False
        • Then - Actions
          • Set songonoff = False
          • Trigger - Run playmusic <gen> (ignoring conditions)
          • Set testmusic = True
        • Else - Actions
          • Sound - Stop music After fading
          • Set testmusic = False

Trigger:
  • playmusic
    • Events
    • Conditions
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • chosensong Equal to 1
        • Then - Actions
          • Sound - Play htf <gen>
        • Else - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • chosensong Equal to 2
            • Then - Actions
              • Sound - Play unmonde <gen>
            • Else - Actions
              • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                • If - Conditions
                  • chosensong Equal to 3
                • Then - Actions
                  • Sound - Play jiemao <gen>
                • Else - Actions
                  • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    • If - Conditions
                      • chosensong Equal to 4
                    • Then - Actions
                      • Sound - Play Killer_is_near_you <gen>
                    • Else - Actions
      • Sound - Clear the music list
      • Wait 14.83 seconds
      • Set testmusic = False


The "Wait 14.83 seconds" is the length of one of the song. If there are no better methods, I'll have to make an array of song lengths.
 
Use sounds instead of music and play them locally. Music lags upon starting anyways.
 
I do not understand what you mean by play them locally. On the bright side, playing the same sound when it's already playing doesn't override nor go into a queue! Thanks for that tip!


EDIT: Ok, implemented it. It now looks like this:

Trigger:
  • tensioner
    • Events
      • Time - Every 0.25 seconds of game time
    • Conditions
      • deathtone Equal to False
    • Actions
      • Unit Group - Pick every unit in (Units within 500.00 of (Position of killerunit) matching (((Owner of (Matching unit)) Not equal to Killer) and ((Owner of (Matching unit)) Not equal to Neutral Passive))) and do (Actions)
        • Loop - Actions
          • If ((Owner of (Picked unit)) Not equal to Killer) then do (Set songonoff = True) else do (Do nothing)
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • songonoff Equal to True
        • Then - Actions
          • Set songonoff = False
          • Sound - Play chosensong2
        • Else - Actions
          • Sound - Stop chosensong2 After fading


After some testing, there appears to be a strange bug. When entering the aoe, the sound plays normally. However, if the unit leaves the aoe and re-enters BEFORE the sounds fades completely, the sound will stop fading and continue playing at whatever low volume it had faded to. The next repetition of the sound is at normal volume though. Is there a way to resolve that bug?
 
In the sound editor, go to the sound and uncheck "3D Sound" in the preferences.
 
None of the sounds are 3D sounds. You might have misunderstood the problem. The problem is when the sound is replayed before it fades completely, the volume level will be at what the previous sound had fade until, which is a pretty low volume.
 
So the just use another action to set the volume where you want after the music fades out. I usually create custom fadeouts by doing:

Action - Wait .25 Seconds
Set Volume of "Music" to 75%
Wait .25 Seconds
Set Volume of "Music" to 50%
Wait .25 Seconds
Set Volume of "Music" to 25%
Wait .25 Seconds
Set Volume of "Music" to 0%
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • V-SNES V-SNES:
    Happy Friday!
    +1
  • The Helper The Helper:
    News portal has been retired. Main page of site goes to Headline News forum now
  • The Helper The Helper:
    I am working on getting access to the old news portal under a different URL for those that would rather use that for news before we get a different news view.
  • Ghan Ghan:
    Easily done
    +1
  • The Helper The Helper:
    https://www.thehelper.net/pages/news/ is a link to the old news portal - i will integrate it into the interface somewhere when i figure it out
  • Ghan Ghan:
    Need to try something
  • Ghan Ghan:
    Hopefully this won't cause problems.
  • Ghan Ghan:
    Hmm
  • Ghan Ghan:
    I have converted the Headline News forum to an Article type forum. It will now show the top 20 threads with more detail of each thread.
  • Ghan Ghan:
    See how we like that.
  • The Helper The Helper:
    I do not see a way to go past the 1st page of posts on the forum though
  • The Helper The Helper:
    It is OK though for the main page to open up on the forum in the view it was before. As long as the portal has its own URL so it can be viewed that way I do want to try it as a regular forum view for a while
  • Ghan Ghan:
    Yeah I'm not sure what the deal is with the pagination.
  • Ghan Ghan:
    It SHOULD be there so I think it might just be an artifact of having an older style.
  • Ghan Ghan:
    I switched it to a "Standard" article forum. This will show the thread list like normal, but the threads themselves will have the first post set up above the rest of the "comments"
  • The Helper The Helper:
    I don't really get that article forum but I think it is because I have never really seen it used on a multi post thread
  • Ghan Ghan:
    RpNation makes more use of it right now as an example: https://www.rpnation.com/news/
  • The Helper The Helper:
  • The Helper The Helper:
    What do you think Tom?
  • tom_mai78101 tom_mai78101:
    I will have to get used to this.
  • tom_mai78101 tom_mai78101:
    The latest news feed looks good

      The Helper Discord

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top