#Need to figure out turtle's location.
#Need to know it's x/z location in a variable and it's y co-ordinate in another variable seperatley to the x/z co-ordinate
I need something like TurtleX = ... TurtleY = ...
so I can use these in my game.
#Need to figure out turtle's location.
#Need to know it's x/z location in a variable and it's y co-ordinate in another variable seperatley to the x/z co-ordinate
I need something like TurtleX = ... TurtleY = ...
so I can use these in my game.
If I correctly understood, try this
>>> turtle.pos() # -> (x, y)
>>> turtle.xcor() # -> x
>>> turtle.ycor() # -> y
If you need more info i`m strongly recommend this site