Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- os.loadAPI("ocs/apis/sensor")
- local prox = sensor.wrap("top")
- while true do
- local targets = prox.getTargets()
- for name, basicInfo in pairs(targets) do
- if basicInfo.name == "player" then
- if not (name=="sparkey90") then
- local file = fs.open("log","a")
- local time = os.time()
- time = textutils.formatTime(time, false)
- local day = os.day()
- file.writeLine(name.." "..day.." "..time)
- print(name.." "..day.." "..time)
- file.close()
- end
- end
- sleep(30)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement