Advertisement
coinwalk

rain

May 28th, 2019
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. // ==UserScript==
  2. // @name 999dice alert
  3. // @namespace https://www.999dice.com/
  4. // @version 0.1
  5. // @description rain dan mega rain
  6. // @author modded by theano(SINAR-19888787)
  7. // @match https://www.999dice.com/
  8. // @include https://www.999dice.com/
  9. // @grant none
  10. // ==/UserScript==
  11. var rainalert = {};
  12. rainalert = new Audio();
  13. rainalert.src = "http://cd.textfiles.com/10000soundssongs/WAV/ALARM.WAV";
  14. rainalert.volume = 0.5;
  15.  
  16. function soundz() {
  17. rainalert.play();
  18. }
  19. $("#ChatTab").bind("DOMSubtreeModified",function(){
  20. if($(this).children(2).children().find('.TextButton').length){ soundz(); }
  21. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement