Add 'crop-farm/startup.lua'

master
Jan 2021-06-13 13:42:27 +00:00
parent 7d35272289
commit 2d36ee2636
1 changed files with 12 additions and 0 deletions

12
crop-farm/startup.lua Normal file
View File

@ -0,0 +1,12 @@
print("Starting in 15 seconds")
print("Hold Crtl+T to cancel")
sleep(15)
while true do
shell.run("farm")
for i = 10, 1, -1 do
print("Waiting... " .. i .. " Minute" .. (i == 1 and "" or "s"))
sleep(60)
end
end