rukoo Posted August 14, 2024 Share Posted August 14, 2024 (edited) I'm following this guide to create music modes. I've even mastered how to insert music, replace it, and extract files. But I'm not sure where some music is used. I know 'work' is the background sound of each season's day, and 'dusk' is the evening. But I don't know where 'epicfight' 'stinger' 'hoedown' and 'drama' are used. I'm not native to English, and I'm getting help from a translator to write this. Sorry for my lack of English. Edited August 14, 2024 by rukoo Link to comment https://forums.kleientertainment.com/forums/topic/159033-questions-about-music-mode/ Share on other sites More sharing options...
Warioman Posted August 21, 2024 Share Posted August 21, 2024 music_epicfight (plays against harder enemies like tree guards, spider queen, etc..) music_dawn_stinger (transition sound from night to dawn) music_dusk_stinger (transition sound from day to dusk) music_hoedown (woodys beaver form) music_hoedown_moose (woodys moose form) music_hoedown_goose (woodys goose form) music_drama (I believe this is used for the stage plays) Link to comment https://forums.kleientertainment.com/forums/topic/159033-questions-about-music-mode/#findComment-1741578 Share on other sites More sharing options...
Warioman Posted September 6, 2024 Share Posted September 6, 2024 (edited) Actually if you check the modmain.lua in notepad it has a list with most of the info. RemapSoundEvent( "dontstarve/music/music_FE", "music_mod/music/music_FE" ) -- Event Music RemapSoundEvent( "dontstarve/music/music_FE_WF", "music_mod/music/music_FE" ) RemapSoundEvent( "dontstarve/music/music_FE_yotg", "music_mod/music/music_FE" ) -- Sounds that are played in the menus. RemapSoundEvent("dontstarve/together_FE/DST_theme_portaled", "music_mod/music/DST_theme_portaled") RemapSoundEvent("dontstarve/HUD/Together_HUD/collectionscreen/music/jukebox", "music_mod/music/jukebox") RemapSoundEvent("dontstarve/music/gramaphone_ragtime", "music_mod/music/gramaphone_ragtime") -- Stingers RemapSoundEvent("dontstarve/music/music_dawn_stinger", "music_mod/music/music_dawn_stinger") RemapSoundEvent("dontstarve/music/music_dusk_stinger", "music_mod/music/music_dusk_stinger") -- Danger Music RemapSoundEvent("dontstarve/music/music_danger", "music_mod/music/music_danger") RemapSoundEvent("dontstarve/music/music_danger_winter", "music_mod/music/music_danger_winter") RemapSoundEvent("dontstarve/music/music_danger_spring", "music_mod/music/music_spring") RemapSoundEvent("dontstarve/music/music_danger_summer", "music_mod/music/music_danger_summer") RemapSoundEvent("dontstarve/music/music_danger_cave", "music_mod/music/music_danger_cave") RemapSoundEvent("dontstarve/music/music_danger_ruins", "music_mod/music/music_danger_ruins") -- Boss Music RemapSoundEvent("dontstarve/music/music_epicfight", "music_mod/music/music_epicfight") RemapSoundEvent("dontstarve/music/music_epicfight_winter", "music_mod/music/music_epicfight_winter") RemapSoundEvent("dontstarve/music/music_epicfight_spring", "music_mod/music/music_epicfight_spring") RemapSoundEvent("dontstarve/music/music_epicfight_summer", "music_mod/music/music_epicfight_summer") RemapSoundEvent("dontstarve/music/music_epicfight_cave", "music_mod/music/music_epicfight_cave") RemapSoundEvent("dontstarve/music/music_epicfight_ruins", "music_mod/music/music_epicfight_ruins") ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ----[[For each boss, you can add your own music for them individually, but you need to make sure you make the name right for the "music_mod/music/music_...enter name here" for each.]]---- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- RemapSoundEvent("dontstarve/music/music_epicfight_crabking", "music_mod/music/music_epicfight_summer") -- Crab King RemapSoundEvent("saltydog/music/malbatross", "music_mod/music/music_epicfight_summer") -- Malbatross RemapSoundEvent("dontstarve/music/music_epicfight_moonbase", "music_mod/music/music_epicfight_winter") -- Moon Altar Battle RemapSoundEvent("dontstarve/music/music_epicfight_moonbase_b", "music_mod/music/music_epicfight_winter") RemapSoundEvent("dontstarve/music/music_epicfight_toadboss", "music_mod/music/music_epicfight_cave") -- Toad Stool RemapSoundEvent("dontstarve/music/music_epicfight_4", "music_mod/music/music_epicfight_spring") -- Bee Queen RemapSoundEvent("dontstarve/music/music_epicfight_3", "music_mod/music/music_epicfight_summer") -- Dragonfly RemapSoundEvent("dontstarve/music/music_epicfight_shadow", "music_mod/music/music_epicfight_ruins") -- Shadow Chess Pieces RemapSoundEvent("dontstarve/music/music_epicfight_5a", "music_mod/music/music_epicfight_winter") -- Klaus Battles 1,2 RemapSoundEvent("dontstarve/music/music_epicfight_5b", "music_mod/music/music_epicfight_winter") RemapSoundEvent("dontstarve/music/music_epicfight_antlion", "music_mod/music/music_epicfight_summer") -- Antlion RemapSoundEvent("dontstarve/music/music_pigking_minigame", "music_mod/music/music_monkey_warning") -- Pig King Minigame RemapSoundEvent("dontstarve/music/music_epicfight_stalker", "music_mod/music/music_epicfight_stalker") -- Stalker Fight 1,2 RemapSoundEvent("dontstarve/music/music_epicfight_stalker_b", "music_mod/music/music_epicfight_stalker_b") RemapSoundEvent("moonstorm/creatures/boss/alterguardian1/music_epicfight", "music_mod/music/alterguardian") -- Champion Battles 1,2,3 RemapSoundEvent("moonstorm/creatures/boss/alterguardian2/music_epicfight", "music_mod/music/alterguardian2") RemapSoundEvent("moonstorm/creatures/boss/alterguardian3/music_epicfight", "music_mod/music/alterguardian3") RemapSoundEvent("terraria1/common/music_epicfight_eot", "music_mod/music/music_epicfight_winter") -- Eye of Terror (Twins maybe?) RemapSoundEvent("monkeyisland/warning_music/warning_combo", "music_mod/music/music_monkey_warning") -- Pirate Raid RemapSoundEvent("dontstarve/music/music_epicfight_daywalker", "music_mod/music/music_epicfight_daywalker") -- Nightmare Werepig -- Working Music RemapSoundEvent("turnoftides/music/working", "music_mod/music/music_work_lunar") RemapSoundEvent("turnoftides/music/sailing", "music_mod/music/music_work_sailing") RemapSoundEvent("hookline_2/characters/hermit/music_work", "music_mod/music/music_work_hermit") -- Unsure if this one works at all. I've tried it, but it isn't very responsive :/ -- Woodie's Transformations RemapSoundEvent("dontstarve/music/music_hoedown", "music_mod/music/music_hoedown") RemapSoundEvent("dontstarve/music/music_hoedown_moose", "music_mod/music/music_hoedown_moose") RemapSoundEvent("dontstarve/music/music_hoedown_goose", "music_mod/music/music_hoedown_goose") -- Farming Music RemapSoundEvent("farming/music/farming", "music_mod/music/music_farming") -- Stage Music RemapSoundEvent("stageplay_set/bgm_moods/music_happy", "music_mod/music/music_happy") RemapSoundEvent("stageplay_set/bgm_moods/music_mysterious", "music_mod/music/music_mysterious") RemapSoundEvent("stageplay_set/bgm_moods/music_drama", "music_mod/music/music_drama") Edited September 6, 2024 by Warioman 1 Link to comment https://forums.kleientertainment.com/forums/topic/159033-questions-about-music-mode/#findComment-1746149 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now