alaingilbert / Turntable-API

Allows you to create bots for turntable.fm
http://alaingilbert.github.com/Turntable-API/
MIT License
318 stars 97 forks source link

Bot Talking in Chat Room #187

Closed ghost closed 11 years ago

ghost commented 11 years ago

How do you make the bot talk in the chat room when someone mentions his name?

MikeWills commented 11 years ago

You need to probably do a regex to look for the name and then you can respond with any text you like.

ghost commented 11 years ago

How do I code the regex.

kernelsmith commented 11 years ago

Regex: http://bit.ly/11H50sg

ghost commented 11 years ago

ok, but that doesn't help. I was thinking of a coding example.

samuri51 commented 11 years ago

here's simple example

bot.on('speak', function(data))
{
    if(data.text.match(/your bots name here/i))
    {
        bot.speak('say something');
    }
});
ghost commented 11 years ago

OK, Thanks for the help. You solved my problem.