Advertisement
coinwalk

999999999

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