Add new sound effect

In xdiskjockey/config.lua you can find array called "SoundsEffects" where you can add new one / edit existing one, or remove them. They are all shared between mixers.

-- All sound effects are shared between all mixers
SoundsEffects = {
    -- item 1
    {
        Name = "Countdown from 10 to 0 and hyping on end",
        URL = "https://www.youtube.com/watch?v=iwYDfyCABAc",
    },
    -- another item
    {
        Name = "Count down from 5 to 1 and hyping on end",
        URL = "https://www.youtube.com/watch?v=LZyIgCOeLLU",
    },
}

Last updated

Was this helpful?