Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Commit

Permalink
versión 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DavichoStar committed Aug 16, 2019
1 parent 605bfbb commit 45a737b
Show file tree
Hide file tree
Showing 26 changed files with 7,900 additions and 1,003 deletions.
40 changes: 13 additions & 27 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Módulo Fácil de imprementar para tu bot de Discord con el cual podrás crear Bots de música con respuestas en español para la librería de discord.js y tener incluso radio.

## Cambios
v1.0.2
* Corrección en el readme.

v1.0.1
* Se inició el proyecto con su respectiva guía básica.

Expand Down Expand Up @@ -48,6 +51,7 @@ const music = require('starmusic');

## Inicializar
En su archivo principal del bot, `index.js` o `server.js` comúnmente, debe de iniciar el módulo antes de ser utilizado.

```js
client.music.start(client, {
youtubeKey: 'Tu YouTube Data API3 key'
Expand All @@ -56,6 +60,8 @@ client.music.start(client, {
`.start()` recibe dos parámetros **client** que corresponde a tu variable del bot, **{opciones}** los cuales puedes revisar en esta tabla [aquí](#opciones)

## Usando las Funciones
Para usar estas funciones, tienes que agregar *.bot* antes de la función, ve los ejemplos al final.
**Ninguna de estas funciones requiere que realices validaciones como if(!args) o si el usuario está o no en un canal de voz, simplemente coloca la función ¡y listo!**

<a name="play" />
# Play
Expand Down Expand Up @@ -230,8 +236,8 @@ client.on('messages', (message) => {

if (message.content.startsWith(prefix + "play"))
{
let args = message.content.slice(prefix.length + 4); //Aquí medimos nuestro prefix y sumamos 4 por el largo de "play"
client.music.play(message, args.join(' '));
let args = message.content.slice(prefix.length + 4); //Aquí medimos nuestro prefix y sumamos 4 por el largo de la palabra "play"
client.music.bot.play(message, args.join(' '));
}
});

Expand All @@ -246,33 +252,13 @@ client.music.start(client, {
client.login('token');

```
Tambien puedes colocarloen una variable normal

Si ocupas command Handling
```js
//Declaramos nuestro módulos base
const Discord = require('discord.js');
const client = new Discord.Client();
const prefix = "!";
//Asignamos nuestro módulo a client
const music = require('starmusic');

client.on('ready', () => console.log('Encendido'));

music.start(client, {
youtubeKey: 'TuApiKey'
});

client.on('messages', (message) => {
if (message.author.bot) return;

if (message.content.startsWith(prefix + "play"))
{
let args = message.content.slice(prefix.length + 4);
music.play(message, args.join(' '));
}
});

client.login('token');
module.exports.run = (cliebt, message, args) =>
{
music.bot.salir(message);
}

```

Expand Down
266 changes: 139 additions & 127 deletions js/index.js

Large diffs are not rendered by default.

266 changes: 266 additions & 0 deletions node_modules/node-fetch/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions node_modules/node-fetch/LICENSE.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 45a737b

Please sign in to comment.