Process of Elimination Game
- gargamelepisode
- Jan 14, 2022
- 1 min read
Updated: Jan 17, 2022

I originally created this for my Love Interest to suggest an ice cream flavor to my Main Character, but it’s also transformable for everything from movie choices going to a theater to book suggestions to playing a song on a jukebox. Really, anything where you want to use the player’s preferences to narrow down a character’s options.

What’s important is to figure out points that include some choices, but do not include others. For example: The question “Do you like scary movies?” If the player answers “no”, then the scary movie options would be removed from the final list at the end. Whatever the option, all the final choices need to be coded to either include or exclude that point.
This game is based on gaining flags. If you’re unfamiliar with this concept, Dara Amarie has a great guide here.
In this case, we’re talking about ice cream flavors, so each flavor has either...
#US_flavor or NOT US_flavor
#fruit_no or NOT fruit_no
#You can also choose to completely eliminate something. In this case, I have a nut allergy question at the beginning. If the player answers that they do have a nut allergy, I remove all nut choices…
#The nut flavors only show up if NOT nut_allergy
#You’ll see in the examples below that this “game” works best if each choice has multiple flags on it. Use the examples below to see how to combine multiple flags.
#If you’re having trouble figuring out what the flags should be, consider drawing a flowchart like this one:

Comments