2.0.0 • Published 7 years ago

botpress-simplecommands v2.0.0

Weekly downloads
3
License
AGPL-3.0
Repository
github
Last release
7 years ago

Installation

botpress install simplecommands

Usage

bp.addCommand("help", "discord", (event, next, args) => {
  var msg = ""
  if(args.length === 0) {
    msg = "There's no help available right now."
  }else{
    msg = "You don't need help with " + args[0] + "."
  }
  bp.discord.sendText(event.channel.id, msg)
})

bp.addCommand("help", "irc", (event, next, args) => {
  bp.irc.sendMessage(event.channel, "There's no help available right now.")
})