SpotifyCoopDX & Custom Voicelines

SpotifyCoopDX & Custom Voicelines v2.1

kikwee

Member
Modder
Nov 17, 2024
56
14
590
gamebanana.com
kikwee submitted a new mod:

custom playlist music player - spotify-playlist-64coopdx

Bring your spotify playlist to sm64coopdx! add your .mp3 files to the sound folder and add the
file path, song name, artist name, and length of the song in the "add-songs.lua" file. (the limit of of megabytes (MB) of songs is maxed at 35 MB combined (no i cannot change this if u have a problem with it ask the sm64coopdx developers))
Commands:
/pause pause a song
/unpause unpause a song
/restart restart the playing song
/skipto (number) skip a multiple number of songs
/skip skip song...

Read more about this mod...
 
Great mod! But, why does it only play one song? (At least for me, I'm not a modder. I'm a newbie.)
 
Last edited:
  • Like
Reactions: kikwee
Great mod! But, how do you play all songs one at a time instead of just one song?
???
Don't double post! Use that edit button! Post automatically merged:

Great mod! But, why does it only play one song? (At least for me, I'm not a modder. I'm a newbie.)
did u add the mp3 files into the sound folder? and the code in add-songs.lua should be formated like:
-- Add your songs here and add them in the sounds folder Format: {file = "sound/filename.mp3", name = "Song Name", artist = "Artist Name", length = duration_in_seconds},
_G.playlist = {
{file = "sound/sports car.mp3", name = "Sports Car", artist = "tate mcrae", length = 188},
{file = "sound/miss possessive.mp3", name = "Miss Possessive", artist = "tate mcrae", length = 140},
}
 
Last edited:
it says that the mod has script errors, I've already made the steps (putting file name, name, artista and duration in the lua file, and paste the mp3 songs into sound folder), but it doesn't work, i tried deactivating all mods except this one but it doesn't work neither
 
it says that the mod has script errors, I've already made the steps (putting file name, name, artista and duration in the lua file, and paste the mp3 songs into sound folder), but it doesn't work, i tried deactivating all mods except this one but it doesn't work neither
Same problem just put a "," after a command
Example:
{file = "sound/Why Must We Do.mp3", name = "Why Must We Do", artist = "Team Neutron", length = 257},
{{file = "sound/Purge march.mp3", name = "Purge march", artist = "Malgrim", length = 156},
{file = "sound/Ebb and Flow.mp3", name = "Spectrum Obligato", artist = "Nintendo/Off the Hook", length = 300},
 
Same problem just put a "," after a command
Example:
{file = "sound/Why Must We Do.mp3", name = "Why Must We Do", artist = "Team Neutron", length = 257},
{{file = "sound/Purge march.mp3", name = "Purge march", artist = "Malgrim", length = 156},
{file = "sound/Ebb and Flow.mp3", name = "Spectrum Obligato", artist = "Nintendo/Off the Hook", length = 300},
On the second music line I see it says {{file
It should be {file
Don't double post! Use that edit button! Post automatically merged:

it says that the mod has script errors, I've already made the steps (putting file name, name, artista and duration in the lua file, and paste the mp3 songs into sound folder), but it doesn't work, i tried deactivating all mods except this one but it doesn't work neither
Can u send me the script for your add-songs.lua file
Don't double post! Use that edit button! Post automatically merged:

Same problem just put a "," after a command
Example:
{file = "sound/Why Must We Do.mp3", name = "Why Must We Do", artist = "Team Neutron", length = 257},
{{file = "sound/Purge march.mp3", name = "Purge march", artist = "Malgrim", length = 156},
{file = "sound/Ebb and Flow.mp3", name = "Spectrum Obligato", artist = "Nintendo/Off the Hook", length = 300},
Send the exact code from the add-songs.lua
 
When I put the songs and play it the background music of the game is still playing is there an option to discard the background music or down that music?
 
When I put the songs and play it the background music of the game is still playing is there an option to discard the background music or down that music?
yes in your server go to your settings and press the sound button and the controls are there
Don't double post! Use that edit button! Post automatically merged:

yes in your server go to your settings and press the sound button and the controls are there
that will help a little
 
Last edited:
kikwee updated Custom playlist music player with a new update entry:

SILENCE



Read the rest of this update entry...
Don't double post! Use that edit button! Post automatically merged:


just updated to ur request
Thanks now I can play flood with my friends and listen doom music jsjsj
Don't double post! Use that edit button! Post automatically merged:

I
kikwee updated Custom playlist music player with a new update entry:

SILENCE



Read the rest of this update entry...
Don't double post! Use that edit button! Post automatically merged:


just updated to ur request
have and error when I tried to use the simply just deactivated and I can turn on idk what :(
 
Last edited:
  • Like
Reactions: kikwee
Hey. I was going to use a song from Charty which is titled "Megalomayhem" It keeps failing to load even if it's an mp3 file. It's 2:40 long which is 160 seconds long. This is the code I used:

-- Add your songs here and add them in the sounds folder Format: {file = "sound/filename.mp3", name = "Song Name", artist = "Artist Name", length = duration_in_seconds},
_G.playlist = {
{file = "Megalomayhem.mp3", name = "Megalomayhem", artist = "Charty", length = 160},
}
 
Hey. I was going to use a song from Charty which is titled "Megalomayhem" It keeps failing to load even if it's an mp3 file. It's 2:40 long which is 160 seconds long. This is the code I used:

-- Add your songs here and add them in the sounds folder Format: {file = "sound/filename.mp3", name = "Song Name", artist = "Artist Name", length = duration_in_seconds},
_G.playlist = {
{file = "Megalomayhem.mp3", name = "Megalomayhem", artist = "Charty", length = 160},
}
this is because you didnt add the path correctly try this:
-- Add your songs here and add them in the sounds folder Format: {file = "sound/filename.mp3", name = "Song Name", artist = "Artist Name", length = duration_in_seconds},
_G.playlist = {
{file = "sound/Megalomayhem.mp3", name = "Megalomayhem", artist = "Charty", length = 160},
}
Don't double post! Use that edit button! Post automatically merged:

this is because you didnt add the path correctly try this:
-- Add your songs here and add them in the sounds folder Format: {file = "sound/filename.mp3", name = "Song Name", artist = "Artist Name", length = duration_in_seconds},
_G.playlist = {
{file = "sound/Megalomayhem.mp3", name = "Megalomayhem", artist = "Charty", length = 160},
}
all i did was add "sound/" before the file name
Don't double post! Use that edit button! Post automatically merged:

Thanks now I can play flood with my friends and listen doom music jsjsj
Don't double post! Use that edit button! Post automatically merged:

I

have and error when I tried to use the simply just deactivated and I can turn on idk what :(
this is because the max amount of data for the mod is 35 mb but the mod it self takes up 1 mb meaning you have over 34 mb of songs
 
this is because you didnt add the path correctly try this:
-- Add your songs here and add them in the sounds folder Format: {file = "sound/filename.mp3", name = "Song Name", artist = "Artist Name", length = duration_in_seconds},
_G.playlist = {
{file = "sound/Megalomayhem.mp3", name = "Megalomayhem", artist = "Charty", length = 160},
}
Don't double post! Use that edit button! Post automatically merged:


all i did was add "sound/" before the file name
Don't double post! Use that edit button! Post automatically merged:


this is because the max amount of data for the mod is 35 mb but the mod it self takes up 1 mb meaning you have over 34 mb of songs
There will be an update to expand more than 35 mb?
 
Ohhh I got this try restarting the game. if that don't work remove the first line of songs then restart then add it back and restart
Don't double post! Use that edit button! Post automatically merged:

If that don't work your file name may be wrong
I restarted the game. I checked the file name. IT STILL DOESN'T WORK. This is rage-baiting at this point.
 

Users who are viewing this thread