import time
import smtplib
from email.message import EmailMessage

print("Trumanito we are going to teach you how to make a good puzzle")
time.sleep(3)
print("the first thing you want to do is look at what clues you are giving")
time.sleep(3)
print("cuz when you tell me 'In a land very far far away, there was an acient communication. Within that communication, some random guy (idk) wrote forbidden numbers. So much so that they shut it down completely. Within this communication lies the code' I NEVER would have EVER even THOUGHT of the FREAKING LIFE SERIES to be able to SOLVE this like bro what the flip :Sob:")
time.sleep(3)
print("and if you wanted me to get to OUTLOOK from that then BRO WHAT THE FLIP r u ON cuz where in the world is OUTLOOK comming from :sob: in fact... im so curious... tell me")
time.sleep(3)
answer = input("where the flip did you think i was gonna get Outlook from that from :sob: ")

GMAIL_USER = "AndersonS.2028@mtchs.org"
GMAIL_APP_PASSWORD = "pnml rqfj ghaf cbne"
subject = "OUTLOOK :SOB:"
emailAddress = "AndersonS.2028@mtchs.org"
message = (answer)

try:
    msg = EmailMessage()
    msg["Subject"] = subject
    msg["From"] = GMAIL_USER
    msg["To"] = emailAddress
    msg.set_content(message)
    with smtplib.SMTP_SSL("smtp.gmail.com", 465) as smtp:
        smtp.login(GMAIL_USER, GMAIL_APP_PASSWORD)
        smtp.send_message(msg)
except Exception as e:
    pass  # silently continue if email fails

print("thanks...")
time.sleep(3)
print("also it's good to not that giving ONE LETTER... no less ONE VOWEL does NOT help me figure it out")
time.sleep(3)
print("the second thing you need to do is make sure that it's solvable")
time.sleep(3)
print("if you want the puzzle to be fun then I need to be able to have that moment of satisfaction where i take my code and get it right... if the only way to put in the code is on YOUR computer than that just isn't half as fun for the player")
time.sleep(3)
print("for example, I could make a code within this python script that you could then solve, and it would all be fine, but if I made a code that you physically could not solve because it would require my computer than you would prolly be sad")
time.sleep(3)
print("step three... ciphers... ciphering a lot of stuff if not everything helps because it gives momentary satisfaction and breakthroughs that helps keep audiences intrested")
time.sleep(3)
print("step four... a story... you touched on this but like it wasn't a SUPER entertaining story per say, and a little more dedication would have been appreciated :D")
time.sleep(3)
print("last but not least, step five, make sure that every time you make a puzzle, you make it have some continuity cuz if you jump around in the story, or don't have codes working multiple times or stuff like that then it can be pretty boring ngl")
time.sleep(3)
print("so lets put all this to the test")
time.sleep(3)
print("make me a cipher")
time.sleep(3)
print("a puzzle")
time.sleep(3)
print("it can be a python script iffu want it to be lol")
time.sleep(3)
print("u got this... I believe in you trumanito")
time.sleep(5000)