sofi311d

wall

Sep 1st, 2015
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.54 KB | None | 0 0
  1. local function fuel()
  2.     turtle.select(1)
  3.     turtle.refuel()
  4. end
  5.  
  6. local function build()
  7.     turtle.select(2)
  8.     turtle.back()
  9.     turtle.place()
  10.     turtle.back()
  11.     turtle.place()
  12.     turtle.back()
  13.     turtle.place()
  14.     turtle.back()
  15.     turtle.place()
  16. end
  17.  
  18. local function upTurn()
  19.     turtle.up()
  20.     turtle.turnLeft()
  21.     turtle.turnLeft()
  22. end
  23.  
  24. local function buildWall()
  25.     fuel()
  26.     build()
  27.     upTurn()
  28.     build()
  29. end
  30.  
  31. local function help()
  32.     print("Brændstof i felt 1")
  33.     print("byggemateriale i felt 2")
  34.     print("tjek kode ved ændringer")
  35. end
  36.  
  37. buildWall()
Advertisement
Add Comment
Please, Sign In to add comment