Advertisement
RyuuzakiJulio

Player Logger

Oct 6th, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.49 KB | None | 0 0
  1. os.loadAPI("ocs/apis/sensor")
  2.  
  3. local prox = sensor.wrap("top")
  4.  
  5.  
  6. while true do
  7.  local targets = prox.getTargets()
  8.  for name, basicInfo in pairs(targets) do
  9.  if basicInfo.name == "player" then
  10.   if not  (name=="sparkey90") then
  11.    local file = fs.open("log","a")
  12.    local time = os.time()
  13.    time = textutils.formatTime(time, false)
  14.    local day = os.day()
  15.    file.writeLine(name.." "..day.." "..time)
  16.    print(name.." "..day.." "..time)
  17.    file.close()
  18.   end
  19.  end
  20.  sleep(30)
  21. end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement