jille_Jr

Stege byggare

Jun 19th, 2018
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.26 KB | None | 0 0
  1. -- Lägg block i slot 1
  2. -- Lägg stege i slot 2
  3. -- Se hur den bygger stege uppåt
  4.  
  5. function byggMed(ruta)
  6.    turtle.select(ruta)
  7.    turtle.place()
  8. end
  9.  
  10. for i=1, 20 do
  11.    byggMed(1)
  12.    turtle.back()
  13.    byggMed(2)
  14.    turtle.up()
  15.    turtle.forward()
  16. end
Advertisement
Add Comment
Please, Sign In to add comment