3.0.2 • Published 1 year ago

coomwaymp3 v3.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

coomwaymp3

An NPM module designed to return mp3 files / songs created by MasterCoomway.


Support


Installation

npm i coomwaymp3@latest --save


Class Builder

The global settings for the coomwaymp3 npm module.

EntryTypeDefinition
#1BOOLEANuseDebugMode true or false.

The Official Index

A list of all songs with the position in the array.

PositionSong Name
03tothe1
1Bad
2Charles_Stiles
3cock_and_ball_garden
4coffins
5coma
6coomer
7Copy_of_Cobra
8CORPSE HUSBAND MONEY
9CostiDiss
10CostiDiss2
11coucilunfinished
12cringstom
13cyanide_pill
14Disabled
15Diss God Diss Track
16Distorted_Diss
17dont doubt me
18enjoyyourstay
19ESHY_DISSTRACK
20faxes_diss
21fcuk_you_jarad
22fuck_you_soup
23get_out_of_my_head
24gigasampl
25GOD_FEARING
26gta_5_sevraaaaa
27gypsy
28heard_of_me_sample
29HURACAN DISS
30hyperz apology
31hyperz diss 2
32hyperz diss 3
33hyperz diss 4
34I_dont_really_care_for_you
35I_rape_kisd
36jackspedicey
37LET_ME_IN_THE_SERVER
38Lil_Huddy_Star
39markiplier
40message_to_my_haters
41Mommys phone officall music videp
42Mommys Phone REMASTERED
43Mommys Phone REMIX
44My_family_is_dead
45OLD_TOWN_ROAD_COVER
46Omegle
47raditz_diss
48raditz_diss_2
49Raditz_diss2a
50ramma
51randy_diss
52ransom
53RANYISOVERPARTY
54robots
55save_you
56Schizo
57simp_diss
58Simp_Diss_serious
59skidmeisterdiss
60soccer vent
61stupid_fucking_song
62the_great_depression
63timmycas_diss
64Ultimate_diss_full
65V-Bucks
66Why_is_my_dick_so_large
67YSA Diss Track

Code Example

const coomwaymp3 = require('coomwaymp3')
const coomway = new coomwaymp3(true) // Sets debug mode to true
const Discord = require('discord.js')
const client = new Discord.Client()

client.on('ready', async () => {
    console.log(`I am ready.`)
});

client.on('message', async message => {

    let deChannel = await client.channels.cache.get('some-channel-id') // Get a voice channel to join and play audio
    let pick = await coomway.search(27) // Gets position 1 in the array of songs (second listed in array)

    if(message.content.startsWith(`h!test`)) {
        await deChannel.join().then(async connection => {
            // Start playing the file
            const dispatcher = await connection.play(pick); // Pick returns a link to an audio file via cdn.hyperz.dev

            // Wait for the file to finish
            dispatcher.on("finish", async finish => {
                try {
                    // Leave the channel
                    await connection.disconnect();
                    await deChannel.leave(); // Leave the channel after the audio is done playing
                } catch(e) {
                   return console.log(e); // Log any errors
                }
            });
        }).catch(async e => {
            console.log(e) // Log any errors
        });
    }

});

client.login('YOUR_BOT_TOKEN')

LAST UPDATE: 08/22/2021

3.0.2

1 year ago

3.0.1

1 year ago

3.0.0

1 year ago

2.1.0

3 years ago

2.0.9

3 years ago

2.0.8

3 years ago

2.0.5

3 years ago

2.0.7

3 years ago

2.0.6

3 years ago

2.0.4

3 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago