> For the complete documentation index, see [llms.txt](https://www.tomsriver.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.tomsriver.xyz/day-7/activity.md).

# Activity

{% embed url="<https://docs.google.com/presentation/d/1PG0ck2_wcd7H-ZP5LXpvYXsc1T93nF3U2SreJcPz7mo/edit?usp=sharing>" %}

## Adventure Game Starter Code

```python
# Story Game
# by me

def main():
    print("Welcome to my game!")
    print("By ...")
    done = False
    while not done:
        print("S - Start")
        print("Q - Quit")
        choice = input(":: ")
        if choice == "S":
            intro()
        elif choice == "Q":
            print("Thanks for playing!")
            done = True
        else:
            print("Invalid Choice")

def intro():
    print("Story Game")
    print("by me")
    print("You want to play a game with your friends")
    print("Which do you choose? Roblox or Minecraft")
    choice = input(":: ")
    if choice == "Roblox":
        roblox()
    elif choice == "Minecraft":
        minecraft()
    else:
        print("Invalid Choice")

def roblox():
    print("You decide to play Roblox!")
    # add story and choices

def minecraft():
    print("You decide to play Minecraft!")
    # add story and choices

main()
```
