0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

マイクラチュートリアル2-2 ピラミッド建築

Posted at
i = 3
j = i
s = 1
turtle.up()
turtle.select(s)

for n = 1, i do
  for n = 1, 4 do
    for n = 1, j * 2 do
      if turtle.getItemCount() == 0 then
        s = s + 1
        turtle.select(s)
      end
      turtle.placeDown()
      turtle.forward()
    end
    turtle.turnLeft()
  end
  j = j - 1
  turtle.turnRight()
  turtle.back()
  turtle.turnLeft()
  turtle.forward()
  turtle.up()
end
turtle.placeDown()
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?