Advertisement
jBlume

Create Wither

Jul 18th, 2023 (edited)
1,248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.88 KB | None | 0 0
  1. --place turtle of bottom right side of 3x1x3 area to make Wither
  2. --Soul Sand Slot 1
  3. --Wither Skelly Head Slot 2
  4. --creates a flat Wither and waits for thee word "go" to make another.
  5.  
  6. while true do
  7. -- term.write("Give the word: ") --asks question and awaits a response
  8. -- x==read() --will set x to the response
  9. -- if x=="go" then
  10.   turtle.forward()
  11.   turtle.forward()
  12.   turtle.turnLeft()
  13.   turtle.forward()
  14.   turtle.turnRight()
  15.   turtle.select(1)
  16.   turtle.place(1)
  17.   turtle.turnLeft()
  18.   turtle.place(1)
  19.   turtle.turnRight()
  20.   turtle.turnRight()
  21.   turtle.place(1)
  22.   turtle.turnLeft()
  23.   turtle.back()
  24.   turtle.place(1)
  25.   turtle.select(2)
  26.   turtle.back()
  27.   turtle.place(1)
  28.   turtle.turnLeft()
  29.   turtle.forward()
  30.   turtle.turnRight()
  31.   turtle.place(1)
  32.   turtle.turnRight()
  33.   turtle.forward()
  34.   turtle.forward()
  35.   turtle.turnLeft()
  36.   turtle.place(1)
  37.   sleep(20)
  38.  end
  39. --end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement