Advertisement
Guest User

Untitled

a guest
Dec 14th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. ((w, d) => {
  2. w.setInterval(() => {
  3. let date = new Date(),
  4. audio = new Audio('http://www.adiwilk.pl/gun.mp3'),
  5. hour = date.getHours() < 10 ? `0${date.getHours()}` : date.getHours(),
  6. mins = date.getMinutes() < 10 ? `0${date.getMinutes()}` : date.getMinutes(),
  7. secs = date.getSeconds() < 10 ? `0${date.getSeconds()}` : date.getSeconds(),
  8. parseTime = hour + ":" + mins + ":" + secs;
  9. if (d.includes(parseTime)) audio.play();
  10. }, 1000);
  11. })(window, [
  12. "23:59:00",
  13. "00:59:00",
  14. "01:59:00",
  15. "02:59:00",
  16. "03:59:00",
  17. "04:59:00",
  18. "05:59:00",
  19. "06:59:00",
  20. "07:59:00",
  21. "08:59:00",
  22. "09:59:00",
  23. "10:59:00",
  24. "11:59:00",
  25. "12:59:00",
  26. "13:59:00",
  27. "14:59:00",
  28. "15:59:00",
  29. "16:59:00",
  30. "17:59:00",
  31. "18:59:00",
  32. "19:59:00",
  33. "20:59:00",
  34. "21:59:00",
  35. "22:59:00",
  36. "1:00:00",
  37. "2:01:00",
  38. "3:02:00",
  39. "4:03:00",
  40. "5:04:00",
  41. "6:05:00",
  42. "7:06:00",
  43. "8:07:00",
  44. "9:08:00",
  45. "10:09:00",
  46. "11:10:00",
  47. "12:11:00",
  48. "13:12:00",
  49. "14:13:00",
  50. "15:14:00",
  51. "16:15:00",
  52. "17:16:00",
  53. "18:17:00",
  54. "19:18:00",
  55. "20:19:00",
  56. "21:20:00",
  57. "22:21:00",
  58. "23:22:00",
  59. "12:33:00",
  60. "23:44:00"
  61.  
  62.  
  63. ]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement