Advertisement
Guest User

script

a guest
Nov 25th, 2014
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. function write_time()
  2. local s = "Time is "..hr .. ":"
  3. if min == 0 then s = s .. "00" .. " "
  4. elseif min < 10 then s = s .. "0" .. min .. " "
  5. else s = s .. min .. " " end
  6. s = s .. dot .. ""
  7. return s
  8. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement