Add basic-item-counter.lua

This commit is contained in:
Conor425 2025-08-03 14:08:09 +01:00
commit 88bbe39672

16
basic-item-counter.lua Normal file
View file

@ -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