.witz
This commit is contained in:
parent
3c6d3b951e
commit
43386da0c7
|
@ -227,10 +227,10 @@ module.exports = bot => {
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
|
|
||||||
bot._trigger.set("joke", new bot.trigger({
|
bot._trigger.set("witz", new bot.trigger({
|
||||||
call: /^(\.|\/)joke$/i,
|
call: /^(\.|\/)witz$/i,
|
||||||
f: e => {
|
f: e => {
|
||||||
rp("http://www.funny4you.at/webmasterprogramm/zufallswitz.php")
|
rp("http://www.funny4you.at/webmasterprogramm/zufallswitz.php?id=312")
|
||||||
.then(res => {
|
.then(res => {
|
||||||
res = res
|
res = res
|
||||||
.split("<br />").join("")
|
.split("<br />").join("")
|
||||||
|
@ -241,7 +241,7 @@ module.exports = bot => {
|
||||||
.split("ü").join("ü")
|
.split("ü").join("ü")
|
||||||
.split("Ä").join("Ä")
|
.split("Ä").join("Ä")
|
||||||
.split("Ö").join("Ö")
|
.split("Ö").join("Ö")
|
||||||
.split("&Üuml;").join("Ü")
|
.split("Ü").join("Ü")
|
||||||
.split("ß").join("ß")
|
.split("ß").join("ß")
|
||||||
.split(""").join("\"")
|
.split(""").join("\"")
|
||||||
.replace(/\<span.*/i, "");
|
.replace(/\<span.*/i, "");
|
||||||
|
@ -259,4 +259,25 @@ module.exports = bot => {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
bot._trigger.set("joke", new bot.trigger({
|
||||||
|
call: /^(\.|\/)joke$/i,
|
||||||
|
f: e => {
|
||||||
|
rp("https://icanhazdadjoke.com/slack", { json: true })
|
||||||
|
.then(res => {
|
||||||
|
res = res.attachments[0].text;
|
||||||
|
|
||||||
|
if(e.network !== "Telegram") {
|
||||||
|
res
|
||||||
|
.match(/.{1,450}/g)
|
||||||
|
.map(e.reply);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
e.reply(res);
|
||||||
|
})
|
||||||
|
.catch(err => {
|
||||||
|
console.log(err);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}));
|
||||||
};
|
};
|
Loading…
Reference in New Issue
Block a user