Advertisement
Guest User

rules

a guest
Mar 28th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.35 KB | None | 0 0
  1. local count, start = ...
  2. turtle.select(1)
  3. turtle.refuel(2)
  4. for i=1,count do
  5.     num = i + start
  6.     ruleStr = "Rule #" .. num .. ""
  7.     ndLine = "Thats the"
  8.     rdLine = "Problem"
  9.     turtle.select(2)
  10.     turtle.place("".. ruleStr .. "\n\n" .. ndLine .."\n".. rdLine .. "")
  11.     turtle.turnRight()
  12.     turtle.forward()
  13.     turtle.turnLeft()
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement