Umm. Well. Most of the reason you won't find many is because, honestly, it's pretty easy to make, if you use the
apis and the
Lua Manual.
On the other hand, if you don't have a chunk loader, and you don't stay within 300 horizontal blocks of the computer, it is not gonna run properly. So, simple yes, perfect no.
Spoiler
local mins = 180
local mon = peripheral.wrap(side) -- Put the side of the monitor here, in quotes.
for k = 1, mins do
secs = 60
for i = 1, 60 do
mon.clear()
mX, mY = mon.getSize()
term.redirect(mon)
term.setCursorPos(1, mY/2-1)
print("Roughly ", mins-k, " minutes and ", secs-i, " seconds until server restart")
term.restore()
end
end
Also, most of us frown at just asking for a program. Try it yourself, first, then if you have problems, we can help. Just saying that you don't know Lua is not a reason to beg, because, to sound something like a condescending teacher, not knowing is not knowing
yet. If you need help figuring out how to start learning something, we can help there too, I would think. That's probably the hardest part of programming in most languages now, is figuring out where to start reading.