help system

This commit is contained in:
Flummi
2017-12-04 17:40:24 +01:00
parent 61079e4000
commit d209b2b54e
8 changed files with 58 additions and 1 deletions

View File

@@ -23,6 +23,10 @@ Object.keys(data).forEach(cur => {
export default bot => {
bot._trigger.set("kiss", new bot.trigger({
call: /^(\.|\/)kiss/i,
help: {
text: "Kisses a user",
usage: "[b].kiss[/b] [i](<nick>)[/i]"
},
f: e => {
e.reply(`(づ。◕‿‿◕。)づ" [color=red]。。・゜゜・。。・゜❤[/color] [b]${e.args[0] || e.user.nick}[/b] [color=red]❤[/color]`);
}
@@ -30,6 +34,10 @@ export default bot => {
bot._trigger.set("hug", new bot.trigger({
call: /^(\.|\/)hug/i,
help: {
text: "Hugs a user",
usage: "[b].hug[/b] [i](<nick>)[/i]"
},
f: e => {
e.reply(`[color=red]♡❤♡♥[/color] [b]${e.args[0] || e.user.nick}[/b] [color=red]♥♡❤♡♥[/color]`);
}