16 lines
No EOL
367 B
Lua
16 lines
No EOL
367 B
Lua
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 |