Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --place turtle of bottom right side of 3x1x3 area to make Wither
- --Soul Sand Slot 1
- --Wither Skelly Head Slot 2
- --creates a flat Wither and waits for thee word "go" to make another.
- while true do
- -- term.write("Give the word: ") --asks question and awaits a response
- -- x==read() --will set x to the response
- -- if x=="go" then
- turtle.forward()
- turtle.forward()
- turtle.turnLeft()
- turtle.forward()
- turtle.turnRight()
- turtle.select(1)
- turtle.place(1)
- turtle.turnLeft()
- turtle.place(1)
- turtle.turnRight()
- turtle.turnRight()
- turtle.place(1)
- turtle.turnLeft()
- turtle.back()
- turtle.place(1)
- turtle.select(2)
- turtle.back()
- turtle.place(1)
- turtle.turnLeft()
- turtle.forward()
- turtle.turnRight()
- turtle.place(1)
- turtle.turnRight()
- turtle.forward()
- turtle.forward()
- turtle.turnLeft()
- turtle.place(1)
- sleep(20)
- end
- --end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement