Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Quarry Filler v1.0
- --Variables
- local Loop = 1
- local x = 2
- local w = 8
- local full = 64
- local Lower = 16
- local Upper = 48
- local s1 = turtle.getItemCount(1)
- local s2 = turtle.getItemCount(2)
- local s11 = turtle.getItemCount(11)
- local s12 = turtle.getItemCount(12)
- local s13 = turtle.getItemCount(13)
- local s14 = turtle.getItemCount(14)
- local s15 = turtle.getItemCount(15)
- local s16 = turtle.getItemCount(16)
- --startup
- term.clear()
- term.setCursorPos(1,1)
- print "Welcome to Quarry Filler 101"
- print " "
- write "Slot 1 | Needs <YourBlock> = " print (full - s1)
- write "Slot 2 | Needs <YourBlock> = " print (Upper - s2)
- write "Slot 11 | Needs <Wood> = " print (full - s11)
- write "Slot 12 | Needs <Wood> = " print (full - s12)
- write "Slot 13 | Needs <Wood> = " print (full - s13)
- write "Slot 14 | Needs <Wood> = " print (full - s14)
- write "Slot 15 | Needs <Wood> = " print (full - s15)
- write "Slot 16 | Needs <Wood> = " print (Lower - s16)
- os.sleep( 10 )
- repeat
- Loop = Loop + 1
- until Loop == 50
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement