1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
if (strcmp(stairs1, "walk stairs") == 0){
ClearScreen();
stairs2();
}
if (strcmp(stairs1, "walk the stairs") == 0){
ClearScreen();
stairs2();
}
if (strcmp(stairs1, "walk down stairs") == 0){
ClearScreen();
stairs2();
}
if (strcmp(stairs1, "walk down the stairs") == 0){
ClearScreen();
stairs2();
}
if (strcmp(stairs1, "walk the down stairs") == 0){
ClearScreen();
stairs2();
}
if (strcmp(stairs1, "go stairs") == 0){
ClearScreen();
stairs2();
}
if (strcmp(stairs1, "go down stairs") == 0){
ClearScreen();
stairs2();
}
if (strcmp(stairs1, "go down") == 0){
ClearScreen();
stairs2();
}
if (strcmp(stairs1, "go down the stairs") == 0){
ClearScreen();
stairs2();
}
if (strcmp(stairs1, "climb down stairs") == 0){
ClearScreen();
stairs2();
}
if (strcmp(stairs1, "climb down the stairs") == 0){
ClearScreen();
stairs2();
}
if (strcmp(stairs1, "go up") == 0){
monkey();
}
if (strcmp(stairs1, "climb stairs") == 0){
monkey();
}
if (strcmp(stairs1, "climb up stairs") == 0){
monkey();
}
if (strcmp(stairs1, "climb up the stairs") == 0){
monkey();
}
if (strcmp(stairs1, "walk the up stairs") == 0){
monkey();
}
if (strcmp(stairs1, "walk up stairs") == 0){
monkey();
}
if (strcmp(stairs1, "walk up the stairs") == 0){
monkey();
}
if (strcmp(stairs1, "go up stairs") == 0){
monkey();
}
if (strcmp(stairs1, "go up the stairs") == 0){
monkey();
}
if (strcmp(stairs1, "move up") == 0){
monkey();
}
if (strcmp(stairs1, "move up the stairs") == 0){
monkey();
}
if (strcmp(stairs1, "move up stairs") == 0){
monkey();
}
|