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("In welche Richtung soll die Turtle bauen?(Links oder Rechts)")
- richtung = read()
- if string.lower(richtung) == "rechts" then
- richtung = turnRight
- end
- if string.lower(richtung) == "links" then
- richtung = turnLeft
- end
- write("Soll links und rechts ein Zaun gebaut werden?(Ja oder Nein)")
- zaun = read()
- if string.lower(zaun) == "ja" then
- for a = 0, laenge do
- turtle.richtung()
- turtle.select(2)
- for x = 1, breite do
- turtle.placeDown()
- turtle.forward()
- end
- turtle.placeDown()
- turtle.up()
- turtle.select(3)
- turtle.placeDown()
- for b = 0, 2 do
- turtle.richtung()
- end
- for c = 0, breite do
- turtle.forward()
- end
- turtle.placeDown()
- turtle.richtung()
- turtle.forward()
- turtle.down()
- end
- end
- if lower.strnig(zaun) == "nein" then
- for d = 0, laenge do
- turtle.richtung()
- turtle.select(2)
- for y = 1, breite do
- turtle.placeDown()
- turtle.forward()
- end
- for e = 0, 2 do
- turtle.richung()
- end
- for f = 0, breite do
- turtle.forward()
- end
- turtle.richtung()
- end
- end
- if turtle.forward ~= "success" then
- turtle.dig()
- turtle.digUp()
- turtle.attack()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement