diff options
| author | Franklin Wei <franklin@fwei.tk> | 2014-06-24 14:24:05 +0000 |
|---|---|---|
| committer | Franklin Wei <franklin@fwei.tk> | 2014-06-24 14:24:05 +0000 |
| commit | dccfa58cbb77e8305aeccdb8a8d2b3112e2af688 (patch) | |
| tree | 77fed8f5357c190191cd19be6cf1afc5ed4df1e8 /strings.c | |
| parent | 119d1caf3f19235649f68accfefebede01e82e83 (diff) | |
| download | wargames-server-dccfa58cbb77e8305aeccdb8a8d2b3112e2af688.zip wargames-server-dccfa58cbb77e8305aeccdb8a8d2b3112e2af688.tar.gz wargames-server-dccfa58cbb77e8305aeccdb8a8d2b3112e2af688.tar.bz2 wargames-server-dccfa58cbb77e8305aeccdb8a8d2b3112e2af688.tar.xz | |
Added NEW, SHINY featuresgit diff! Still needs some work...
Diffstat (limited to '')
| -rw-r--r-- | strings.c | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -53,6 +53,23 @@ const char* exit_responses[] = { "BYE-BYE.", "GOOD-BYE.", }; +const char* greetings_triggers[] = { + "hi", + "hello", + "hiya", + "sup", + "whats up", + "how are you", + "hey", + "how are you doing" +}; +const char* greetings_responses[] = { + "HELLO.", + "HI.", + "GREETINGS.", + "HELLO.", + "HELLO." +}; const char punctuation_marks[] = { '\'', '?', '.', '/', '`', '~', ',', '+', '!' }; |