Denim-Bot/modules/vojs.js

132 lines
3.1 KiB
JavaScript

function vypocitatCas(vojsl) {
let c = new Date();
let d = new Date();
let hod = d.getHours();
let min = d.getMinutes();
if (min >= 30) {
min = 0;
if (hod == 23) {
hod = 0;
d.setDate(c.getDate() + 1);
} else {
hod++;
}
} else {
min = 30;
}
d.setHours(hod);
d.setMinutes(min);
d.setSeconds(0);
timeouty[vojsl.channel.guild.id] = setTimeout(function() {
rekniCas(vojsl, `${nula(hod)}${nula(min)}`);
}, d - c + 3000);
}
function rekniCas(vojsl, cas) {
if (!vojsl) return;
const d1 = vojsl.play(`./zvuky/intro.mp3`);
d1.on('finish', function () {
const d2 = vojsl.play(`./zvuky/${cas}.mp3`);
d2.on('finish', function () {
vojsl.play(`./zvuky/grg.mp3`);
});
});
vypocitatCas(vojsl);
}
function nula(a) {
return a < 10 ? "0" + a : a;
}
const vytahnout = (clen, patro) => {
const vojs = clen.voice
if (!vojs) return;
const aktPatro = Number(vojs.channel.name) || 0;
let dalsiPatro = aktPatro;
if (patro < aktPatro) dalsiPatro--; else if (patro > aktPatro) dalsiPatro++; else return;
if (dalsiPatro === 0) dalsiPatro = 'P';
const dalsiVojsy = [...clen.guild.channels.cache.values()].filter(channel => channel.type === 'voice' && channel.name === String(dalsiPatro));
if (!dalsiVojsy) return;
clen.voice.setChannel(dalsiVojsy[0]);
setTimeout(() => vytahnout(clen, patro), 1000);
};
const timeouty = {};
module.exports = (mes, komand, celArgs) => {
switch (komand) {
case 'wojs':
mes.channel.send(`vojs se pise s normalnim v ti kriple ${mes.author}`);
break;
case 'vojs':
const channel = mes.member.voice.channel;
if (!channel) {
mes.channel.send(`di si tam sam ne ty gadzo ${mes.author}`);
break;
}
if (celArgs !== 'potichu') mes.channel.send('<@&591306633196339261> vojs');
if (mes.guild.voice) {
if (mes.guild.voice.channel === channel && mes.guild.voice.connection) break;
}
channel.join()
.then(con => {
if (!timeouty[mes.guild.id]) {
vypocitatCas(con);
con.on('disconnect', () => {
if (timeouty[mes.guild.id]) {
clearTimeout(timeouty[mes.guild.id]);
delete timeouty[mes.guild.id];
}
});
}
con.play('./zvuky/nazdar.ogg');
});
break;
case "odejdi":
case "disconnect":
case "leave":
case "odpoj":
case "votpoj":
case "vodpoj":
case "vodprejskni":
case "tahni":
case "táhni":
case "vypadni":
let vojs = mes.guild.voice;
if (!vojs) vojs = {};
if (!vojs.channel) {
mes.channel.send('nejsem ve vojsu');
break;
}
vojs.channel.leave();
mes.react('purfieRIP:644609482843881483');
break;
case 'vitah':
case 'vytah':
console.log(celArgs, Boolean(celArgs));
if (!celArgs) {
mes.channel.send(`napis do jakiho patra ${mes.author}`);
break;
}
vytahnout(mes.member, Number(celArgs) || 0);
break;
default:
return false;
}
return true;
};