Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Military clock thing
- seconds = 2000000000
- minutes = 0
- hours = 0
- days = 0
- years = 0
- while seconds >= 60 do
- seconds = seconds - 60
- minutes = minutes + 1
- end
- while minutes >= 60 do
- minutes = minutes - 60
- hours = hours + 1
- end
- while hours >= 24 do
- hours = hours - 24
- days = days + 1
- end
- while days >= 365 do
- days = days - 365
- years = years + 1
- end
- --Line of strings
- if seconds < 10 then seconds = "0"..seconds end
- if minutes < 10 then minutes = "0"..minutes end
- if hours < 10 then hours = "0"..hours end
- if days < 10 then days = "0"..days end
- if years < 10 then years = "0"..years end
- print("yy:dd:hh:mm:ss")
- print(years..":"..days..":"..hours..":"..minutes..":"..seconds)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement