commit 88bbe396722c8d8e9f5b844ae870fded91f59920 Author: Conor425 Date: Sun Aug 3 14:08:09 2025 +0100 Add basic-item-counter.lua diff --git a/basic-item-counter.lua b/basic-item-counter.lua new file mode 100644 index 0000000..520be50 --- /dev/null +++ b/basic-item-counter.lua @@ -0,0 +1,16 @@ +assembler = component.proxy("64AE131746F2CE198F0CDF89FE9597FA") +count = 417 +print("Program Started") + +while count < 1000 do + if assembler.progress > 0.92 then + count = count + 1 + print("Item Completed, count is at: " .. count) + sleep(4) + end + + if count == 1000 then + print("Complete!") + assembler.standby = true + end +end \ No newline at end of file