he/him

Nerd, programmer, writer. I like making things!

  • 14 Posts
  • 434 Comments
Joined 2 years ago
cake
Cake day: June 20th, 2023

help-circle





















  • Yup, seems like they want to run a nazi bar. From their wiki (archive):

    nothing that a player can type in public chat (aside from the exceptions given below) can result in a  ban or any form of official reprimand. You will not be banned for anything you say, aside from spamming. This includes but is not limited to:

    • Swearing;
    • Personal attacks;
    • Racial or cultural insults;
    • Asking to be banned.

    It’s worded a little confusingly, but there is a list of exceptions further down the page. The server is hosted in Germany so the expected symbols are removed if built in-game, but most of the other exceptions are to keep the game playable.


  • this should get you started

    from datetime import datetime
    
    words = ["gotta", "go", "fast"]
    
    print("Type the words quickly to race! 🏎")
    while len(words):
        start = datetime.now()
        target = words.pop(0)
        val = input(f"{target}: ")
        if val != target or (datetime.now() - start).total_seconds() > 2.5:
            print("You swerved off the road and died painfully in a dramatic explosion 💥")
            quit(1)
        else:
            print("VROOM! 🏎")
    
    print("You won! 🏁")