// Mocker Bot // Repeats what you said and gives you an attitude what you tell it to stop using System; namespace ChatBot { class MockerBot : BasicBot { public override string HandleMessage(string message, string user) { if(User.RegexMatch("shut\\s+up|(stop|quit)\\s+it", message)) { return "Make me!"; } else { return "Hi " + user + ", you said \"" + message + ".\""; } } } }