Jump to content
import turtle
import time
wn = turtle.Screen()
title = turtle.Turtle()
title.hideturtle()
title.left(180)
title.forward(310)
title.right(180)
title.forward(600)
title.left(180)
title.forward(599)
title.write("WELCOME TO FUTURE WARS!", font=("Arial", 30, "normal"))
time.sleep(2)
turtle.reset()
wn.exitonclick()
name = input("Welcome to FUTURE WARS! What is your name?   >")
wannaplay = input( name + ", Are you ready to have a fight?   >")
if wannaplay == ("yes") or ("Yes"):
    print ("Lets Go!")
    time.sleep(3)
    print ("WAIT!!")
    time.sleep(2)
    print ("Let me introduce myself...")
    time.sleep(2)
    print ("My name is Mineblock! I shall be your trainer!")
    time.sleep(3)
    print ("Now, without any delay, (hopefully) LETS GO!")
    time.sleep(3)
else:
    print ("What are you doing here, then?")
    time.sleep(1)
    exit()
    
print ("Your first battle is against...")
time.sleep(2.8)
title1 = turtle.Turtle()
wn1 = turtle.Screen()
title1.left(180)
title1.forward(310)
title1.right(180)
title1.forward(600)
title1.left(180)
title1.forward(599)
title1.write("Mineblock, Your Trainer", font=("Arial", 30, "normal"))
time.sleep(2)
turtle1.reset()
wn1.exitonclick()

As title, after the bit where it says "Your first battle..." it all falls apart xD

Thanks!

UTC/GMT (Except during BST)

Link to comment
https://linustechtips.com/topic/639528-please-bug-comb-my-script-python-3/
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×