Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- textutils.slowPrint("#######################################")
- textutils.slowPrint("########Brueckenbauer aktiviert########")
- textutils.slowPrint("#######################################")
- write("Wie lang soll die Bruecke sein?")
- laenge = tonumber(read())
- write("Wie breit soll die Bruecke sein?")
- breite = tonumber(read())
- write("Soll links und rechts ein Zaun gebaut werden?(Ja oder Nein")
- zaun = tonumber(read())
- write("In welche Richtung soll die Turtle bauen?(Links oder Rechts)")
- richtung = tonumber(read())
- if richtung == "rechts" or richtung == "Rechts" then
- richtung = turtle.right()
- end
- if richtung == "links" or richtung == "Links" then
- richtung == turtle.left()
- end
- if zaun == "ja" or zaun == "Ja" then
- for 0,laenge do
- richtung
- turtle.select(2)
- for 1,breite do
- turtle.placeDown()
- turtle.forward()
- end
- turtle.placeDown()
- turtle.up()
- turtle.select(3)
- turtle.placeDown()
- for 0,2 do
- richtung
- end
- for 0,breite do
- turtle.forward()
- end
- turtle.placeDown()
- richtung
- turtle.forward()
- turtle.down
- end
- end
- if zaun == "nein" or zaun == "Nein" then
- for 0,laenge do
- richtung
- turtle.select(2)
- for 1,breite do
- turtle.placeDown()
- turtle.forward()
- end
- for 0,2 do
- richung
- end
- for 0,breite do
- turtle.forward()
- end
- richtung
- end
- end
- end
- if turtle.forward == false then
- turtle.dig()
- turtle.digUp()
- turtle.attack()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement