Advertisement
Guest User

Bruecke

a guest
Jan 12th, 2013
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.48 KB | None | 0 0
  1. textutils.slowPrint("#######################################")
  2. textutils.slowPrint("########Brueckenbauer aktiviert########")
  3. textutils.slowPrint("#######################################")
  4. write("Wie lang soll die Bruecke sein?")
  5. laenge = tonumber(read())
  6. write("Wie breit soll die Bruecke sein?")
  7. breite = tonumber(read())
  8. write("In welche Richtung soll die Turtle bauen?(Links oder Rechts)")
  9. richtung = read()
  10. if string.lower(richtung) == "rechts" then
  11.  richtung = turnRight
  12. end
  13. if string.lower(richtung) == "links" then
  14.  richtung = turnLeft
  15. end
  16. write("Soll links und rechts ein Zaun gebaut werden?(Ja oder Nein)")
  17. zaun = read()
  18. if string.lower(zaun) == "ja" then
  19.  for a = 0, laenge do
  20.   turtle.richtung()
  21.   turtle.select(2)
  22.   for x = 1, breite do
  23.    turtle.placeDown()
  24.    turtle.forward()
  25.   end
  26.   turtle.placeDown()
  27.   turtle.up()
  28.   turtle.select(3)
  29.   turtle.placeDown()
  30.   for b = 0, 2 do
  31.    turtle.richtung()
  32.   end
  33.   for c = 0, breite do
  34.    turtle.forward()
  35.   end
  36.   turtle.placeDown()
  37.   turtle.richtung()
  38.   turtle.forward()
  39.   turtle.down()
  40.  end
  41. end
  42.  
  43. if lower.strnig(zaun) == "nein" then
  44.  for d = 0, laenge do
  45.   turtle.richtung()
  46.   turtle.select(2)
  47.    for y = 1, breite do
  48.     turtle.placeDown()
  49.     turtle.forward()
  50.    end
  51.    for e = 0, 2 do
  52.     turtle.richung()
  53.    end
  54.    for f = 0, breite do
  55.     turtle.forward()
  56.    end
  57.    turtle.richtung()
  58.   end
  59.  end
  60. if turtle.forward ~= "success" then
  61.  turtle.dig()
  62.  turtle.digUp()
  63.  turtle.attack()
  64. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement