View difference between Paste ID: E5VVwNmM and SCh2sB8P
SHOW: | | - or go back to the newest paste.
1
term.clear()
2
term.setCursorPos(1,1)
3
4
repeat
5
print("Enter tunnel Length (even number): ")
6
length = read()
7
until length % 2 == 0
8
9-
print("Place fuel in slot 1.\n")
9+
10-
print("Place torches in slot 2.\n")
10+
print("Place fuel in slot 1.")
11
until turtle.select(1) != 0
12
repeat
13
print("Place torches in slot 2.")
14
until turtle.select(2) != 0