How to edit music?

All development conversation and discussion takes place here

Moderator: Moderator

Post Reply
Message
Author
SealOverlord
Low Yeek
Posts: 8
Joined: Fri Dec 18, 2020 7:02 pm
Location: Deepest part of the Acheron

How to edit music?

#1 Post 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?
The creator of the worst mod for Tome ever

Slough
Higher
Posts: 49
Joined: Wed Aug 14, 2019 4:51 pm

Re: How to edit music?

#2 Post by Slough »

Any progress here? I would really like to make changes to music too.

HousePet
Perspiring Physicist
Posts: 6215
Joined: Sun Sep 09, 2012 7:43 am

Re: How to edit music?

#3 Post 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)
My feedback meter decays into coding. Give me feedback and I make mods.

Post Reply