Added start/stop typing listeners

This commit is contained in:
hydrabolt
2015-10-03 15:36:51 +01:00
parent ba69538029
commit b1f2ed64d3
3 changed files with 57 additions and 0 deletions

View File

@@ -52,6 +52,13 @@ mybot.on("channelUpdate", function(oldChan, newChan){
});
mybot.on("startTyping", function(user, channel){
console.log("start", user);
});
mybot.on("stopTyping", function(user, channel){
console.log("stop", user);
});
function dump(msg) {
console.log(msg);
}