Skip to content

Instantly share code, notes, and snippets.

@SmashedFrenzy16
Created February 11, 2022 20:36
Show Gist options
  • Save SmashedFrenzy16/07ce582d427119e1c6931c468dc34c7f to your computer and use it in GitHub Desktop.
Save SmashedFrenzy16/07ce582d427119e1c6931c468dc34c7f to your computer and use it in GitHub Desktop.
Starting game concept for InvenMania.
import time
import sys
start = input("Hello there citizen of the lands of Pass. Please type in your name: ")
time.sleep(1)
game = input("Do you want to start a game in Slot 1 (y/n)? ")
if game == "y" or game == "Y":
print("Your journey through the lands of Pass begin here.")
print("You enter through the Teleporter")
firstInput = input("Do you want to start level 1 (y/n)? ")
else:
print("Exiting.")
sys.exit()
if firstInput == "Y" or firstInput == "y":
print("Starting level 1")
else:
print("Exiting.")
sys.exit()
# Level 1 starts here.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment