// Concert Bot // Type in a music artist and find out when their next concert is using System; namespace ChatBot { class ConcertBot : BasicBot { public override string HandleMessage(string message, string user) { if (state == "1") { state = "0"; return User.RSSgetTitle("http://upcoming.yahoo.com/syndicate/v2/search_all/?q="+message+"&loc=us&rt=0&sort=start-date-asc", "Sorry, no moshing for you!", "1"); } else { state = "1"; return "Type in a music artist to find when their next concert is!"; } } } }