// If Bot // Checks to see if you entered the right password using System; namespace ChatBot { class IfBot : BasicBot { public override string HandleMessage(string message, string user) { string response = "What is the password?"; if (message == "password") { response = "Password accepted. You are now in the if statement."; } return response; } } }