Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Ziel:
- -- Alle 3 Felder einen 30 Felder langen Gang
- -- Alle 10 Felder im Gang eine Fackel
- function schlagVorn ()
- while turtle.detect() == true do
- turtle.dig()
- sleep(1)
- end
- end
- function schlagOben()
- while turtle.detectUp() == true do
- turtle.digUp()
- sleep(1)
- end
- end
- function Gang()
- local n = 0;
- while n<30 do
- schlagVorn()
- turtle.forward()
- schlagOben()
- n=n+1
- end
- turtle.up()
- turtle.select(1)
- turtle.placeDown()
- local a=0
- while a < 10 do
- turtle.back()
- a=a+1
- end
- a=0
- turtle.placeDown()
- while a < 10 do
- turtle.back()
- a=a+1
- end
- a=0
- turtle.placeDown()
- while a < 10 do
- turtle.back()
- a=a+1
- end
- a=0
- turtle.down()
- end
- local l = 0
- local Richtung = 0
- local i =0
- print("Geben Sie die Anzahl der Gaenge an, die Sie abfarmen wollen!")
- l = tonumber(io.read())
- print("Wollen Sie links oder rechts abfarmen?")
- print("Druecken Sie die 0 für <<links>>, die 1 für <<rechts>>")
- Richtung = tonumber(io.read())
- while i<l do
- turtle.forward()
- turtle.forward()
- turtle.forward()
- if Richtung == 0 then
- turtle.turnLeft()
- Gang()
- turtle.turnRight()
- end
- if Richtung == 1 then
- turtle.turnRight()
- Gang()
- turtle.turnLeft()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement