Sync!
This commit is contained in:
parent
79125b0fb3
commit
f76bbcc399
|
@ -402,4 +402,22 @@ export default bot => {
|
|||
e.reply(mock);
|
||||
}
|
||||
}));
|
||||
|
||||
bot._trigger.set("sync", new bot.trigger({
|
||||
call: /^\.sync.*/i,
|
||||
set: "uwe",
|
||||
f: e => {
|
||||
const sync = e.args[0] || "80s90s";
|
||||
rp(`https://f0ck.space/sync.php?${sync}`, { json: true })
|
||||
.then(data => {
|
||||
if(data.err)
|
||||
e.reply("Channel nicht gefunden D:");
|
||||
else
|
||||
e.reply(`${data.name} @ https://sync.f0ck.space/r/${data.name}: ${data.user} Users, now playing: ${decodeURIComponent(data.title)}`);
|
||||
})
|
||||
.catch(err => {
|
||||
e.reply("Channel nicht gefunden D:");
|
||||
});
|
||||
}
|
||||
}));
|
||||
};
|
Loading…
Reference in New Issue
Block a user