Merge branch 'fruitual' of https://git.xpub.nl/XPUB/text-adventures into fruitual

fruitual
Manetta 1 year ago
commit 749676030b

@ -0,0 +1,148 @@
import os , time , random
# Setting up the current (saved) state
currentRoom = "base-ment"
start = True
graduation = False
study = 0
items = {
"base-ment": ["unpaidlabor", "consiousness", "lackoftime", "dipression", "commodities", "collectivememory", "laborforce", "survivalmode"],
"apparatus": ["game", "work", "symbols", "family", "church", "institutionalmemory", "army", "ideology"],
"megaroom": ["hegemony", "control", "power", "violence", "accumulationofwealth", "property", "mostlywhiterichmen"]
}
inventory = []
# Seperating the text and printing in delay so the content on the screen is readable and easy to comprehend
def printer (text):
for t in text:
print(t, end = "", flush= True)
time.sleep(random.choice([0.001, 0.002, 0.003]))
print()
# Defining the "taker" function and setting it up in each of the three rooms below
def taker(room):
if any(x in spliti for x in ["get", "grab", "take", "carry", "steal", "expropriate"]):
for item in items[room]:
if item in spliti:
printer("You took " + item)
inventory.append(item)
items[room].remove(item)
# Creating the while-loop
while True:
if (start == True):
printer("""
Super(de)construction: The game
__ __ __
/\ \ /\ \__ /\ \__ __
____ __ __ _____ __ _ __ \_\ \ __ ___ ___ ___ ____\ \ ,_\ _ __ __ __ ___\ \ ,_\/\_\ ___ ___
/',__\/\ \/\ \/\ '__`\ /'__`\/\`'__\/'_` \ /'__`\ /'___\ / __`\ /' _ `\ /',__\\ \ \/ /\`'__\/\ \/\ \ /'___\ \ \/\/\ \ / __`\ /' _ `\
/\__, `\ \ \_\ \ \ \L\ \/\ __/\ \ \//\ \L\ \/\ __//\ \__//\ \L\ \/\ \/\ \/\__, `\\ \ \_\ \ \/ \ \ \_\ \/\ \__/\ \ \_\ \ \/\ \L\ \/\ \/\ \
\/\____/\ \____/\ \ ,__/\ \____\\ \_\\ \___,_\ \____\ \____\ \____/\ \_\ \_\/\____/ \ \__\\ \_\ \ \____/\ \____\\ \__\\ \_\ \____/\ \_\ \_\
\/___/ \/___/ \ \ \/ \/____/ \/_/ \/__,_ /\/____/\/____/\/___/ \/_/\/_/\/___/ \/__/ \/_/ \/___/ \/____/ \/__/ \/_/\/___/ \/_/\/_/
\ \_\
\/_/
""")
printer("""
Welcome to the super(de)costruction game or How to destroy the ideological apparatus and capitalism in small steps.
You are a witch in the body of a cultural worker leaving in the poor south. However, you cannot make a living only by selling your labor power so you have to use your magic powers to maintain yourself. You can become invisible in order to expropriate goods from chain supermarkets and share them with your comrades and girlfriends. Thats okay! Inflation ...
You will have an extraordinary chance to walk a lead bit through an enormous architectural miracle and why not dismantle the master's house!
Are you readyyy???
-We stole a beautiful small piece of code from our friend Stephano so as to create this mysterious delay and make the game prettier. We struggle cause aesthetics do matter-
""")
start = False
if (graduation == True):
printer("You Win!")
exit()
# Clearing the screen: "cls" for Windows; "clear" for macOS
i = input()
os.system("cls")
spliti = i.split(" ")
# Creating an inventory
if "inventory" in i:
printer("The truth is that you don't own anything. You are proletarian. You don't really have private property. However, in you current inventory you can find " + ", ".join(inventory))
# Choices in the base-ment
if currentRoom == "base-ment":
if i in ["look","see","view","explore"]:
printer("Oh I'm in an base-ment, cool. There is little light here. Soooo many people. TheY do work hard. The seem unhappy and dipressed")
printer("You can find here: " + ", ".join(items["base-ment"]))
elif i in ["exit","walk","run","door","leave"]:
printer("You can use this tiny door to exit the base-ment. To be completely honest, you cannot escape that easily the base-ment. You wish you could. It can be really suffocating. However you are a witch, you have class consiousness and you have your caring comrades. So now let's move. ")
currentRoom = "apparatus"
# The ECTS condition, or the point-gaining system. Every "study" adds 30 points to the player's score. The goal is to reach 120 points or credits.
elif i in ["disconstruct", "dismantle", "poetry", "street", "public", "library", "counter-culture","read", "struggle", "collective", "solidarity", "fight", "feminism", "queer", "act", "expropriate", "parasite", "organise", "care", "reclaim", "speak", "counterhegemony", "escape", "burn", "collective", "demonstrate", "zine", "create", "enjoy", "disobedience", "occupy", "protest", "manifest", "shout", "sing", "anarchy", "radical", "barricade", "putaspell", "witchcraft", "unlearn"]:
printer("You have struggled soo much!")
study = study + 30
printer("The revolution seems to be closer. Cracks still happen and are completely important and vital and powerful. You have gained " + str(study) + " points")
else:
taker("base-ment")
# Choices in the neutral zone
elif currentRoom == "apparatus":
if i in ["look","see","view","explore", "open"]:
printer("Vrooom, vroom, vroom. You are now in the apparatus room! What a contradictory place to be. A wise-structured organised chaos ... Monumental huge buildings, computers, archives, cameras, people in uniforms, banks campus and other big buildings, and borders. Where is the public, though? If you see a little bit closer, it is not that solid.")
printer("Oh look in the apparatus you can find: " + ", ".join(items["apparatus"]))
elif i in ["exit","walk","run","door","leave"]:
printer("You may use this door to exit the apparatus.")
i = input("which door? (1 or 2)")
if i == "1":
printer("You use the door to the base-ment")
currentRoom = "base-ment"
elif i == "2":
printer("You use the door to the megaroom")
currentRoom = "megaroom"
else:
taker("apparatus")
# Choices in the megaroom
elif currentRoom == "megaroom":
if i in ["look","see","view","explore", "open"]:
printer("Oh You are in the megaroom! You can tell that it is luxurious, monumental structure classical and contemporary in the same time. You havent seen something similar before! Wowww. But why are so little people? Why the are mostly white men? Dont be stressed - they will not notice you! You enter the mansion as a cleaning lady. You are invisible to them. However, YOU know how radical our marginal identities are! ")
printer("Oh look in the megaroom! There is : " + ", ".join(items["megaroom"]))
elif i in ["exit","walk","run","door","leave"]:
printer("You use the door to exit the megaroom.")
currentRoom = "apparatus"
# The graduation condition, if ECTS points >= 119 --> Epic Win! If <119 --> Go study.
elif i in ["talk","discuss","debate","ask","say"]:
printer("Hiiiiii stupid designer of the game!")
printer("Hiiiiiii witch, how can I help you, now that nobody is watching us?")
i = input()
if i in ["revolution","finish","free", "freedom"]:
if study >= 119:
printer("You did so many things! You struggle a lot, you care, you respect! You are a true witch fighter! Revolution is in the corner.")
graduation = True
else:
printer("We should keep the hard work. Do not give up though. Things do change and your contribution is valuable! You have gained " + str(study) + " points. Shall we go again to the base-ment? We have to organise stuff! Please don't give up. Here is something small for you!")
printer("""
For it is not the anger of Black Women which is dripping down over this globe like a diseased liquid. It is not my anger that launches rockets, spent more than 60,000 dolars second on missiles and other agents of war and death, slaughters children in cities, stockpiles nerve gas and chemical bombs, sodomizes our daughters and the earth. This is not the anger of Black Women which corrodes into blind, dehumanising power, bent upon the annihilation of us all unless we meet it with what we have, our power to examine and to redefine the terms upon which we will live and work; our power to envision and to reconstruct, anger by painful anger, stone upon heavy stone, a future of pollinating difference and the earth to support our choices.
We welcome all women who can meet us, face to face, beyond objectification and beyond guilt.
by Audre Lorde
""")
else:
taker("megaroom")

@ -5,7 +5,7 @@
import os , time , random
# current (saved) state
currentRoom = "milky way"
currentRoom = "venus"
start = True
colony = False
kill = 0
@ -30,10 +30,13 @@ class bcolors:
# separating the text and printing in delay
def printer (text):
def printer (text = "hello i am the default text", slow=True):
for t in text:
print(t, end = "", flush= True)
time.sleep(random.choice([0.01, 0.05, 0.1, 0.03, 0.02]))
if slow == True:
time.sleep(random.choice([0.01, 0.05, 0.1, 0.03, 0.02]))
else:
time.sleep(random.choice([0.001, 0.005, 0.01, 0.003, 0.002]))
print()
# Defining the "taker" function and setting it up in each of the three spaces below
@ -58,7 +61,7 @@ while True:
. *°    . . . * . .
""")
""", slow=False)
printer(bcolors.RED +"""
are you ready
to steal and kill your way into
@ -72,7 +75,7 @@ while True:
# clearing the screen: "clear" for macOS
i = input()
os.system("clear")
#os.system("clear")
spliti = i.split(" ")
@ -90,15 +93,15 @@ while True:
elif i in ["exit","fly","run","spaceship","leave"]:
printer("you fly away from venus in your spaceship.")
currentRoom = "earth"
# the point system. killing adds 30 kills to the player's score. The goal is to reach 120 kills.
elif i in ["kill","murder","pillage", "colonise", "colonize"]:
printer("you are killing many natives. your colony expands.")
kill = kill + 30
printer("your kill count is " + str(kill))
else:
taker("mars")
taker("venus")
# the point system. killing adds 30 kills to the player's score. The goal is to reach 120 kills.
if i in ["kill","murder","pillage", "colonise", "colonize"]:
printer("you are killing many natives. your colony expands.")
kill = kill + 30
printer("your kill count is " + str(kill))
# Choices in the neutral zone
elif currentRoom == "earth":
@ -146,4 +149,4 @@ while True:
else:
printer("no way! you only killed " + str(kill) + " aliens. go kill and colonise more and then maybe you can lead your own colony one day!""")
else:
taker("uranus")
taker("uranus")

@ -0,0 +1,162 @@
import os , time , random
trollface = "⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⣤⣤⣤⣴⣶⣶⣶⣶⣶⣶⣶⣶⣶⣶⣶⣶⣶⣦⣤⣤⣤⣀⣄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\n⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣴⣿⣿⣿⣿⣿⢿⣟⣛⣭⡽⠶⠶⠶⠮⠭⠭⣭⣭⣭⣭⣭⣭⣭⣿⣿⣯⣭⣥⣄⣀⣀⠀⠀⠀⠀⠀⠀⠀⠀\n⠀⠀⠀⠀⠀⠀⠀⠀⣰⣿⣿⣿⣿⢟⣫⣶⠿⣫⣭⣶⠿⠿⣿⣿⣿⠿⢿⣷⣶⣮⣭⣭⣭⣭⣭⣷⣶⣶⣶⣾⣽⣿⣷⣦⡀⠀⠀⠀⠀⠀\n⠀⠀⠀⠀⠀⠀⠀⣸⣿⣿⣿⣫⣾⣟⣩⣞⣫⣵⣿⣿⣿⣿⣿⣿⣿⣯⢻⣿⣿⣿⣿⣿⣿⢻⣿⣿⣿⣿⣶⣍⡻⣿⣿⣿⣷⠀⠀⠀⠀⠀\n⠀⠀⠀⠀⠀⠀⣴⣿⣿⣿⣿⣿⣿⣿⣵⣿⡿⠿⠛⠛⠛⠛⠿⣿⣿⣿⡇⣿⣿⣿⣿⣿⣣⣿⣿⣿⣿⠿⢿⣿⣷⣼⣿⣿⣿⣇⠀⠀⠀⠀\n⠀⠀⠀⠀⢀⣚⣯⣽⣿⣿⣿⣿⢻⣿⣏⡅⠀⠀⠀⠀⠀⠠⣿⣷⣯⡛⣿⣿⣿⣿⣿⣿⡿⠟⠉⠁⠐⣿⣿⣶⣽⣿⣟⣛⡻⠿⣦⡀⠀⠀\n⠀⢀⣴⣞⣯⣷⠶⣒⣛⣛⡻⢿⣷⣿⣷⣾⣶⣾⢟⣿⣿⣿⣶⣯⣟⣫⣿⣿⣿⣿⣿⣍⠀⣀⣤⣤⣬⣭⣽⣿⣿⣿⣿⣿⣿⣟⢶⡝⣦⠀\n⠀⣿⡿⣾⣿⣵⣿⣿⣿⣿⣿⣷⣾⣭⣽⣿⣭⣵⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⢸⣿⣿⣿⣿⣿⡿⠿⢟⣫⣭⣭⣽⣿⣷⣿⢸⠀\n⠀⣿⡇⣿⣿⣿⡿⠿⢟⣴⣬⣛⠿⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣻⣿⣿⣿⣿⣿⣿⣷⣝⣛⢿⣿⣿⣿⣿⣿⣿⡟⣿⣿⣿⢟⣿⢸⠀\n⠀⢿⣧⣿⣿⣿⣿⣿⣧⢻⣿⣿⣿⣷⣮⢙⡻⠿⣿⣿⣯⣭⣾⡇⣿⣿⣟⣭⣻⣿⣿⣿⣿⣿⡿⣸⣿⠿⢿⣿⣿⡿⡁⢹⣿⣷⢿⣱⠇⠀\n⠀⠀⠻⢷⣝⣿⣿⣿⣿⣧⠉⠻⢿⣿⣿⢸⣿⣿⣷⣶⣭⣝⢛⠿⢿⣿⣿⣿⣿⣿⣯⣙⣛⣭⣾⣿⣿⣿⣿⠿⡋⣾⣿⡈⣿⣿⣿⡏⠀⠀\n⠀⠀⠀⠀⠸⣽⣿⣿⣿⣿⣷⡽⣿⣷⣆⢘⠿⣿⣿⣿⣿⣿⢸⣿⣿⣶⣶⣶⡎⣭⣭⣭⣭⡩⣭⣭⣽⣦⣰⣿⣧⢿⣿⡇⣿⣿⣿⠀⠀⠀\n⠀⠀⠀⠀⠀⠘⣿⣿⣿⣿⣿⣿⣮⣻⣏⣿⣿⣾⣯⣍⠛⠋⠻⢿⣿⣿⣿⣿⡇⣿⣿⣿⣿⡇⣿⣿⣿⣿⡟⣿⠟⠈⠉⠀⣿⣿⡏⠀⠀⠀\n⠀⠀⠀⠀⠀⠀⠘⣿⣿⣿⣿⣿⣿⣿⣾⡿⣿⣿⣿⣿⣿⢦⣴⣦⣬⣍⡛⠛⠈⠛⠛⠛⠛⠁⠙⠛⠛⠉⠀⠀⠀⠀⢠⡆⣿⣿⡇⠀⠀⠀\n⠀⠀⠀⠀⠀⠀⠀⠘⢿⣿⣿⣿⣿⣿⣿⣿⣮⣿⡻⣿⢏⣾⣿⣿⣿⣿⣿⣷⣶⣾⣷⣶⣄⣴⣶⣤⡤⣶⣶⡆⣾⡿⡸⣱⣿⣿⡇⠀⠀⠀\n⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⠿⣷⣝⡻⢶⣽⣻⢿⣿⣷⣭⣝⣻⣿⡿⠿⠿⠏⣿⣿⣿⣿⣿⣿⣿⣿⢿⣿⡿⠱⣿⣃⣵⣿⣿⣿⣧⠀⠀⠀\n⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠻⢿⣶⣝⡻⢷⣮⣝⡻⢿⣿⣿⣿⣿⣿⣿⣶⣶⣶⣶⣶⣶⣶⣶⣶⣶⣾⣿⣿⡿⣿⣿⣿⣿⣿⡄⠀⠀\n⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠙⠿⢷⣮⣝⡻⢿⣷⣮⣭⣛⣻⠿⠿⣿⣶⣶⣶⣶⣿⣿⣿⠿⢿⣛⣽⣾⣿⡿⣹⣿⣿⡇⠀⠀\n⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠙⠻⢿⣾⣶⣭⣽⣛⣛⠿⠿⠶⢶⣶⣶⣶⣶⡿⠿⠿⢟⣛⣭⣷⣿⣿⣿⣿⠇⠀⠀\n⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠛⠻⠿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠏⠀⠀⠀\n⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠉⠉⠉⠛⠛⠛⠛⠿⠿⠛⠛⠛⠉⠁⠀⠀⠀⠀⠀"
welcome = "\nHey, $tranger. You guessed it right, yeah, im a troll. $0 let's skip the FAKE P0LITENE$$ & get directly into the dirty busine$$ of FAKE NEW$. $hall we?"
autors = ['Average Citizen 1','Average Citizen 2','Average Citizen 3','NÄSA','UTOPIA TODAY']
bio = ['Hello world!:','Happy, generally speaking:','What a wonderful life:','Expløre the universe and discover øur høme plänet with @NÄSA.','Bursting the mainstream media bubble!']
tweets = ['This government is a complete and utter failure. #Resign! Losers!',' Happy, generally speaking: The Mainstream Media is one massive conspiracy. #FakeNews','Is everybody else stupid or what? The Earth is not flat, its a CUBE! #Conspiracy','Meteorite alert: large space object set to hit US West Coast. #BeSafe','The Best Words has just joined the fight against the mainstream media! #GoodNews']
# Setting up the current (saved) state
currentRoom = "newsroom"
start = True
following = False
produce = 0
items = {
"newsroom": ["knife", "computer", "resume", "cables", "toiletPaper"],
"trainingZone": ["employees", "snacks", "beer"],
"neutralzone": ['trainingZone','office,'],
"office": ["allSortsOfIsms", "secrets", "underWear", "bullShit"]
}
inventory = []
# Seperating the text and printing in delay so the content on the screen is readable and easy to comprehend
def printer (text):
for t in text:
print(t, end = "", flush= True)
time.sleep(random.choice([0.01, 0.05, 0.1, 0.03, 0.02]))
print()
# Defining the "taker" function and setting it up in each of the three rooms below
def taker(room):
if any(x in spliti for x in ["get", "grab", "take"]):
for item in items[room]:
if item in spliti:
printer("You took the " + item + ". Now what?")
inventory.append(item)
items[room].remove(item)
# Creating the while-loop
while True:
if (start == True):
printer("Troll Story: The Game")
print(trollface)
printer(welcome)
start = False
if (following == True):
printer("You Won! More Ethical Dilemmas coming you waaaaaay.")
exit()
# Clearing the screen: "cls" for Windows; "clear" for macOS
i = input()
os.system("clear")
spliti = i.split(" ")
# Creating an inventory
if "inventory" in i:
printer("In you current inventory is " + ", ".join(inventory))
# Choices in the newsroom
if currentRoom == "newsroom":
if i in ["yes","go","start"]:
printer("You're a journalist working for a small independent news outlet.\nYou're silently sitting on your desk in the newsroom, checking emails. Oh, shit! You just got a new one - a tip about a mysterious company called 'The Hive'.")
i = input("Read the email?")
if i == "read":
printer("Apparently, the company is rumoured to be a front for a massive online propaganda operation. So let's go undercover as an employee of The Hive and gather information to expose the truth behind the company's operations.")
currentRoom = "newsroom"
elif i == ["check","open","read"]:
printer("Apparently, the company is rumoured to be a front for a massive online propaganda operation. So let's go undercover as an employee of The Hive and gather information to expose the truth behind the company's operations.")
currentRoom = "newsroom"
elif i in ["look","see","explore"]:
printer("You look around your desk! There is a " + ", ".join(items["newsroom"]) + ". Which of these objects could get you inside the company?")
elif i in ["apply","get hired","start working","go undercover"]:
printer("You are hired as a $ocial media analy$t! You must navigate the company's workplace culture in order to gather information.\nAvoid arousing suspicion! Play along with The Hive's propaganda campaigns and maintain a low profile.")
currentRoom = "newsroom"
elif i in ["exit","walk","leave"]:
printer("You exit the newsroom. Go to work.")
currentRoom = "trainingZone"
else:
taker("newsroom")
# Choices in the training zone
elif currentRoom == "trainingZone":
if i in ["look","go","explore"]:
printer("You're in the Hive's training zone. Here hundreds of employees are vigorously typing on their keyboards. Let's talk with somebody!")
#printer("Oh look in the room! There is " + ", ".join(items["trainingZone"]))
elif i in ["talk","ask","say"]:
printer("Hey there, I'm new here. What should I do?")
printer("Welcome to The Hive, the best company to work in the entire metaWorse! We are working on a massive project aimed at analyzing public opinion and creating a brave, new world. Blah blah blah...")
i = input("Let's investigate further and get your hands dirty!")
if i == "investigate":
printer("Our company employs hundreds of workers. Each worker spends the day creating multiple social media accounts and posting tweets and memes.")
printer("Show us what you got! Get as many followers as you can. Post some viral (and by that we mean 'frustrating') tweets!")
elif i in ["write","produce","post","tweet"]:
printer('Autor: ' + random.choice(autors))
printer('Bio: ' + random.choice(bio))
printer('Tweet: ' + random.choice(tweets))
# The "gain-following" system. Every "produce" adds 1000 users to the player's following count. The goal is to reach 100 points or credits.
printer("You have worked $0 hard. If you keep it up you can get a promotion very $00N.")
produce = produce + 1000
printer("Follower count: " + str(produce) + " users.")
elif i in ["exit","walk","leave"]:
printer("You exit the training zone.")
i = input("Now what? Find the Master or get back and gain more followers?")
if i == "gain":
printer("You got back to the training zone.")
#currentRoom = "trainingZone"
elif i == "find":
printer("You exit the training zone.")
currentRoom = "neutralzone"
else:
taker("trainingZone")
# Choices in the neutral zone
elif currentRoom == "neutralzone":
if i in ["look","see","explore"]:
printer("You're in the neutral zone in The Hive's HQ.")
elif i in ["exit","walk","leave"]:
printer("There are two doors. The one on your left leads to the Hive's training zone, the other, to the Master's office.")
i = input("Which room? (left or right)")
if i == "left":
printer("You enter the training zone.")
currentRoom = "trainingZone"
elif i == "right":
printer("You enter the Master's office.")
currentRoom = "office"
else:
taker("neutralzone")
# Choices in the office
elif currentRoom == "office":
if i in ["look","see","view","explore"]:
printer("You're in the Master's office and looks like he is there. Let's investigate!")
printer("You look around and notice " + ", ".join(items["office"]) + ". Now, let's see if you can ask for a promotion and see if they trust you enough!")
# The 'gain followers' condition, if followers >= 5000 --> Life Dilemma If <4999 --> Go produce more propaganda.
elif i in ["talk","speak","ask"]:
printer("Master, please excuse me.")
printer("Master: Well, well... It's you, worker 1046385. Hurry up, I'm busy, what do you want?")
i = input()
if i in ["promotion","money","prestige","power"]:
if produce >= 5000:
printer("You've been very loyal to the company since you started here, I noticed. You will get what you asked for under one condition...\nDevide your followers and get them fight against each other just to keep them oblivios.")
printer("This game is inspired by the BAD NEWS game:https://www.getbadnews.com/books/english/ \nThe goal of the game is to expose the tactics and manipulation techniques that are used to mislead people and build up a following.\nChatGPT gave me some hints on the storyline.")
following = True
else:
printer("Your current follower count is " + str(produce) + " users. You're getting pretty good at this. Let's see how far we can take these skills you've learned. Come back when you hit 5000.")
elif i in ["exit","run","leave"]:
printer("You exit the Master's office.")
currentRoom = "trainingZone"
else:
taker("office")
Loading…
Cancel
Save