From 7c3ee246fb626ab09b3b05055efdfaf3a00e60e7 Mon Sep 17 00:00:00 2001 From: Franklin Wei Date: Mon, 23 Jun 2014 17:04:30 -0400 Subject: Fixed more bugs, added more features :) --- strings.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'strings.c') diff --git a/strings.c b/strings.c index 69cff57..a2be3d9 100644 --- a/strings.c +++ b/strings.c @@ -2,6 +2,8 @@ const char* stage1_triggers[] = { "im fine", "im fine how are you", + "i am fine", + "i am fine how are you", "how are you" }; const char* stage2_triggers[] = { @@ -23,9 +25,24 @@ const char* stage4_triggers[] = { "no lets play global thermonuclear war instead", "later lets play global thermonuclear war", "later lets play global thermonuclear war instead", + "later", "lets play global thermonuclear war", "global thermonuclear war is better" }; +const char* exit_triggers[] = { + "goodbye", + "good-bye", + "bye", + "bye-bye", + "see you later", + "logout" +}; +const char* exit_responses[] = { + "GOODBYE.", + "BYE!", + "BYE-BYE!", + "GOOD-BYE.", +}; const char punctuation_marks[] = { '\'', '?', '.', '/', '`', '~', ',', '+', '!' }; -- cgit v1.1