aboutsummaryrefslogtreecommitdiff
path: root/strings.c
diff options
context:
space:
mode:
authorFranklin Wei <frankhwei536@gmail.com>2014-06-23 17:04:30 -0400
committerFranklin Wei <frankhwei536@gmail.com>2014-06-23 17:04:30 -0400
commit7c3ee246fb626ab09b3b05055efdfaf3a00e60e7 (patch)
tree231d914a2677fdf8e466c972b62b4d9632698aa9 /strings.c
parent35e1fd6820cd05c180e180d0ec61457a9f31e196 (diff)
downloadwargames-server-7c3ee246fb626ab09b3b05055efdfaf3a00e60e7.zip
wargames-server-7c3ee246fb626ab09b3b05055efdfaf3a00e60e7.tar.gz
wargames-server-7c3ee246fb626ab09b3b05055efdfaf3a00e60e7.tar.bz2
wargames-server-7c3ee246fb626ab09b3b05055efdfaf3a00e60e7.tar.xz
Fixed more bugs, added more features :)
Diffstat (limited to 'strings.c')
-rw-r--r--strings.c17
1 files changed, 17 insertions, 0 deletions
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[] = {
'\'', '?', '.', '/', '`', '~', ',', '+', '!'
};