Page 1 of 1

How to edit music?

Posted: Fri Dec 18, 2020 7:06 pm
by SealOverlord
I am making dumb add-on about Chicken Mans,and plan on change the music of the bandit's den to Chicken Attack,any guide on how to do it?

Re: How to edit music?

Posted: Mon Feb 08, 2021 5:58 pm
by Slough
Any progress here? I would really like to make changes to music too.

Re: How to edit music?

Posted: Mon Feb 08, 2021 9:15 pm
by HousePet
I use this hook in my Midnight addon to change the music in the Gates of Morning.

Code: Select all

class:bindHook("Zone:create", function(self, data)
	if self.name == "Gates of Morning" then
		self.ambient_music = {"Alchemist.ogg", "weather/town_large_base.ogg"}
	end
end)