README.md to understand.
github.com/hippogriff101/Neo_City
github.com/hippogriff101/freddie-arcade/commit/83e101dcf93d13f446f30a449b4d93f161f409c5README.md for more info.Focusing on the weekend after a long week for a whole hour is tough!github.com/yersf0001/freddie-arcade/commit/f5cece15394b6b8d173c2b8f7fcb287a4163a697
Wow, I'm off school today because of polling in the UK so I'm back at it again. Coding this is draining yet rewarding. Hopefully I'm finished with the drone section. Help me if I want to finish the 'gard' and 'npc' functions quickly or this will go on longer than Arcade does[My github Commit] (github.com/yersf0001/freddie-arcade/commit...)
Phew! When you sit down and focus for a whole hour you deserve a break. I have made a lot of new code for the drone fight. It is going to take a LOT to finish this whole project.github.com/yersf0001/freddie-arcade/commit/bce83262b17dfee10335061c9e1a9fae9bca058e
#import
import random
import time
#Starting Code
text = ("shaking.... \n")
answers = ["Yes.", "No.", "Absolutely!", "No waaaayyy!"]
#the games code
def game():
print("")
print("Welcome to the Magic 8 Ball game—use it to answer your questions...")
time.sleep(1)
print("Ask me for any advice and I'll help you out.")
time.sleep(1)
question = input("Type in your question and then press 'Enter' for an answer: ")
print("")
for i in range(4):
for char in text:
print(char, end='', flush=True)
time.sleep(0.1)
print(" ")
choice=random.randint(1,4)
time.sleep(2)
choice = random.choice(answers)
for i in range(1):
for char in choice:
print(char, end='', flush=True)
time.sleep(0.1)
print("")
#Game Ending
while True:
game()
print("")
play_again = input("Do you want to play again? (yes/no): ")
if play_again.lower() != "yes":
print("Bye then...")
print("")
break





















