Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local slot = 1
- local hossz = 0
- local hosszvissza = 0
- local magas = 0
- local osszmagas = 0
- function slotsel()
- turtle.select(slot)
- if turtle.getItemCount(slot) < 1 then
- if slot ~= 9 then
- slot = slot + 1
- turtle.select(slot)
- else
- while turtle.getItemCount(9) == 0 do
- print("nincs cuccom")
- end
- slot = 1
- turtle.select(slot)
- end
- end
- end
- function lerak()
- for i=1, hossz do
- slotsel()
- if not turtle.detect() then
- turtle.placeDown()
- if hossz ~= 0 then
- if turtle.forward() then
- hossz = hossz - 1
- hosszvissza = hosszvissza + 1
- print("hossz: ", hossz)
- elseif not turtle.detect() then
- print("mob van elottem")
- sleep(3)
- else
- while turtle.detect() do
- print("blokk van elottem")
- end
- end
- end
- else
- while turtle.detect() do
- turtle.digUp()
- turtle.dig()
- end
- end
- end
- if hossz == 0 then
- hossz = hosszvissza
- if not turtle.detectUp() then
- turtle.up()
- magas = magas - 1
- osszmagas = osszmagas + 1
- print("magas:", magas)
- print("osszmagas:",osszmagas)
- else
- while turtle.detectUp do
- turtle.digUp()
- end
- end
- turtle.turnLeft()
- turtle.turnLeft()
- for i=1, hosszvissza do
- if not turtle.detect() then
- if turtle.forward() then
- hosszvissza = hosszvissza - 1
- elseif not turtle.detect() then
- print("mob van elottem")
- sleep(3)
- else
- while turtle.detect() do
- turtle.dig()
- print("blokk van elottem")
- end
- end
- else
- while turtle.detect() do
- turtle.dig()
- end
- end
- end
- turtle.turnLeft()
- turtle.turnLeft()
- end
- if magas == 0 then
- turtle.turnRight()
- turtle.forward()
- for i=1, osszmagas do
- print(osszmagas)
- if not turtle.detectDown() then
- turtle.down()
- osszmagas = osszmagas - 1
- else
- while turtle.detectDown() do
- turtle.digDown()
- end
- end
- end
- turtle.turnLeft()
- end
- if osszmagas == 0 then
- hossz = 0
- magas = 0
- end
- end
- while true do
- if hossz == 0 and magas == 0 and osszmagas == 0 then
- print("hossz?")
- hossz = read()
- print("magas?")
- magas = read()
- end
- lerak()
- sleep(1)
- end
Add Comment
Please, Sign In to add comment