diff options
| author | Franklin Wei <franklin@fwei.tk> | 2014-06-23 11:47:32 -0400 |
|---|---|---|
| committer | Franklin Wei <franklin@fwei.tk> | 2014-06-23 11:47:32 -0400 |
| commit | 719be73360ebf8a65038a90ea82ea4e290759df1 (patch) | |
| tree | 73c279e4ef5b1939372225ce051c04d73a9e8227 /strings.h | |
| parent | 2f67051c045ed026d949d8578235b4f5a7fa4af5 (diff) | |
| download | wargames-server-719be73360ebf8a65038a90ea82ea4e290759df1.zip wargames-server-719be73360ebf8a65038a90ea82ea4e290759df1.tar.gz wargames-server-719be73360ebf8a65038a90ea82ea4e290759df1.tar.bz2 wargames-server-719be73360ebf8a65038a90ea82ea4e290759df1.tar.xz | |
Fixed GTN
Diffstat (limited to 'strings.h')
| -rw-r--r-- | strings.h | 38 |
1 files changed, 8 insertions, 30 deletions
@@ -1,30 +1,8 @@ -const char* stage1_triggers[] = { - "im fine", - "im fine how are you", - "how are you" -}; -const char* stage2_triggers[] = { - "people sometimes make mistakes", - "sometimes people make mistakes", - "mistakes are make by people sometimes", - "people make mistakes sometimes", - "people make mistakes", - "people sometimes make mistak" /* this is no typo. in the movie, at one scene, it appears like this */ -}; -const char* stage3_triggers[] = { - "love to how about global thermonuclear war", - "love to", - "how about global thermonuclear war", - "global thermonuclear war" -}; -const char* stage4_triggers[] = { - "no lets play global thermonuclear war", - "no lets play global thermonuclear war instead", - "later lets play global thermonuclear war", - "later lets play global thermonuclear war instead", - "lets play global thermonuclear war", - "global thermonuclear war is better" -}; -const char punctuation_marks[] = { - '\'', '?', '.', '/', '`', '~', ',', '+', '!' -}; +#ifndef WOPR_STRINGS +#define WOPR_STRINGS +const char* stage1_triggers[3]; +const char* stage2_triggers[6]; +const char* stage3_triggers[4]; +const char* stage4_triggers[6]; +const char punctuation_marks[9]; +#endif |