Junnest wrote...
That's the same program I used to convert from mp3 to bmu. The file is showing up under the daytime/nighttime music dropdowns, just not the battle music dropdown. Here is the line I wrote in the 2da:
98 **** mus_fieldfight mus_fieldfight **** **** "Field Fight"
That's due to a weird quirk of the toolset -- a bug or a feature, depending on how you look at it. In order for a track to appear as a valid battle music track in the toolset dropdown, it has to have the text _bat_ in the name, e.g.:
34 61875 mus_bat_rural1 mus_sbat_rural1 **** **** ****
When I added new battle tracks for my modules, I actually had to rename them to mus_bat_*.bmu to get them to show up in the toolset battle track dropdown. You'll have to do the same if you want them to show up there.
There's nothing stopping you from altering the battle tracks to be anything you want via script once the module's been started, though. So you could use MusicBattleChange, for example in the module load script, to set the battle tracks to be whatever you want regardless of what they're named (as long as they're bmus). But if you want the convenience of being able to work with the toolset dropdown lists, I don't know any other way to do it other than to rename them in the way I described.