function test(robot, mess, args) {
mess.channel.send('** Вот список команд:**')
if (message.channel.type === "dm") // если тип канала === ЛС
if (message.content === "привет")
message.channel.send("дароу")
}
function test(robot, mess, args) {
if (mess.content === "помощь" || mess.channel.type === "dm"){
mess.channel.send('** Вот список команд:**')
}
if (mess.channel.type === "dm" && mess.content === "привет"){
mess.channel.send("дароу")
}