witz & joke -> uwe
This commit is contained in:
parent
963b7dfcd7
commit
60106a1da9
|
@ -255,60 +255,4 @@ export default bot => {
|
|||
e.replyAction(`schläfert [b]${e.args[0] || e.user.nick}[/b] mit einer Spritze Ketamin ein.`);
|
||||
}
|
||||
}));
|
||||
|
||||
bot._trigger.set("witz", new bot.trigger({
|
||||
call: /^(\.|\/)witz$/i,
|
||||
set: "nxy",
|
||||
f: e => {
|
||||
rp("http://www.funny4you.at/webmasterprogramm/zufallswitz.php?id=312")
|
||||
.then(res => {
|
||||
res = res
|
||||
.split("<br />").join("")
|
||||
.split("<div class=\"funny4you\">").join("")
|
||||
.split("&").join("&")
|
||||
.split("ä").join("ä")
|
||||
.split("ö").join("ö")
|
||||
.split("ü").join("ü")
|
||||
.split("Ä").join("Ä")
|
||||
.split("Ö").join("Ö")
|
||||
.split("Ü").join("Ü")
|
||||
.split("ß").join("ß")
|
||||
.split(""").join("\"")
|
||||
.replace(/\<span.*/i, "");
|
||||
|
||||
if(e.network !== "Telegram") {
|
||||
res
|
||||
.match(/.{1,450}/g)
|
||||
.map(e.reply);
|
||||
}
|
||||
else
|
||||
e.reply(res);
|
||||
})
|
||||
.catch(err => {
|
||||
console.log(err);
|
||||
});
|
||||
}
|
||||
}));
|
||||
|
||||
bot._trigger.set("joke", new bot.trigger({
|
||||
call: /^(\.|\/)joke$/i,
|
||||
set: "nxy",
|
||||
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);
|
||||
});
|
||||
}
|
||||
}));
|
||||
};
|
|
@ -290,4 +290,61 @@ export default bot => {
|
|||
e.replyAction(`schenkt [b]${e.args[0] || e.user.nick}[/b] eine [color=red]~~{~[@}[/color]`);
|
||||
}
|
||||
}));
|
||||
|
||||
|
||||
bot._trigger.set("witz", new bot.trigger({
|
||||
call: /^(\.|\/)witz$/i,
|
||||
set: "uwe",
|
||||
f: e => {
|
||||
rp("http://www.funny4you.at/webmasterprogramm/zufallswitz.php?id=312")
|
||||
.then(res => {
|
||||
res = res
|
||||
.split("<br />").join("")
|
||||
.split("<div class=\"funny4you\">").join("")
|
||||
.split("&").join("&")
|
||||
.split("ä").join("ä")
|
||||
.split("ö").join("ö")
|
||||
.split("ü").join("ü")
|
||||
.split("Ä").join("Ä")
|
||||
.split("Ö").join("Ö")
|
||||
.split("Ü").join("Ü")
|
||||
.split("ß").join("ß")
|
||||
.split(""").join("\"")
|
||||
.replace(/\<span.*/i, "");
|
||||
|
||||
if(e.network !== "Telegram") {
|
||||
res
|
||||
.match(/.{1,450}/g)
|
||||
.map(e.reply);
|
||||
}
|
||||
else
|
||||
e.reply(res);
|
||||
})
|
||||
.catch(err => {
|
||||
console.log(err);
|
||||
});
|
||||
}
|
||||
}));
|
||||
|
||||
bot._trigger.set("joke", new bot.trigger({
|
||||
call: /^(\.|\/)joke$/i,
|
||||
set: "uwe",
|
||||
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