Jump to content

As title,

 

I can give you the code if needed,

I have tried two differently named turtles (one and then another after code) and reusing the same turtle,

I reset both with the reset command before reusing with the methods above

 

I need an answer for tomorrow!

 

Thanks :)

 

UTC/GMT (Except during BST)

Link to post
Share on other sites

2 minutes ago, refinedskillz said:

Reset the turtle and enter a new string?

 

1 minute ago, MineblockTechTips said:

Which string are you talking about?

The code I have is at a place I can only get to on Fri (tomorrow) so, I'd like to know now so I can fix it, but if anyone needs code they'll have to wait a bit

UTC/GMT (Except during BST)

Link to post
Share on other sites

3 minutes ago, MineblockTechTips said:

Which string are you talking about?

Like reset the turtle, then write the code that the turtle needs to do, i dont rlly know shit about python.

 

Ryzen 5 1600 - GTX 980 Ti - Broke.

Link to post
Share on other sites

1 minute ago, refinedskillz said:

Like reset the turtle, then write the code that the turtle needs to do, i dont rlly know shit about python.

I do that but but I can't use that turtle again, it spits out an error

i also do the turtle.bye() command

UTC/GMT (Except during BST)

Link to post
Share on other sites

2 minutes ago, MineblockTechTips said:

I do that but but I can't use that turtle again, it spits out an error

i also do the turtle.bye() command

Try on the Python forums.

 

Ryzen 5 1600 - GTX 980 Ti - Broke.

Link to post
Share on other sites

11 minutes ago, refinedskillz said:

Try on the Python forums.

no here is fine.

 

@MineblockTechTips what does the error say and post your code too.

                     ¸„»°'´¸„»°'´ Vorticalbox `'°«„¸`'°«„¸
`'°«„¸¸„»°'´¸„»°'´`'°«„¸Scientia Potentia est  ¸„»°'´`'°«„¸`'°«„¸¸„»°'´

Link to post
Share on other sites

2 minutes ago, vorticalbox said:

no here is fine.

 

@MineblockTechTips what does the error say and post your code too.

Is it alright if I give it you on Friday (UK time) ?

as I said in a earlier post here, I only go where I have my code stored on Fris and am making a online solution soon :P

 

UTC/GMT (Except during BST)

Link to post
Share on other sites

19 minutes ago, MineblockTechTips said:

Is it alright if I give it you on Friday (UK time) ?

as I said in a earlier post here, I only go where I have my code stored on Fris and am making a online solution soon :P

 

sure just post it here to bump it back up ^_^ 

                     ¸„»°'´¸„»°'´ Vorticalbox `'°«„¸`'°«„¸
`'°«„¸¸„»°'´¸„»°'´`'°«„¸Scientia Potentia est  ¸„»°'´`'°«„¸`'°«„¸¸„»°'´

Link to post
Share on other sites

import turtle
import time
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(5)
turtle.bye()
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)
title.showturtle()
title.left(180)
title.forward(310)
title.right(180)
title.forward(600)
title.left(180)
title.forward(599)
title.write("Mineblock, Your Trainer", font=("Arial", 30, "normal"))
time.sleep(5)
turtle.bye()

# THE TURTLE THINGS ABOVE FAIL!

heres the code, @vorticalbox

Thanks again!

 

UTC/GMT (Except during BST)

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

×