Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- source https://gist.github.com/theanosinar/871ef948b260603e2033
- 999dice rain alert
- script starts bellow
- // ==UserScript==
- // @name 999dice alert
- // @namespace https://www.999dice.com/
- // @version 0.1
- // @description rain dan mega rain
- // @author modded by theano(SINAR-19888787)
- // @match https://www.999dice.com/
- // @include https://www.999dice.com/
- // @grant none
- // ==/UserScript==
- var rainalert = {};
- rainalert = new Audio();
- rainalert.src = "http://cd.textfiles.com/10000soundssongs/WAV/ALARM.WAV";
- rainalert.volume = 0.5;
- function soundz() {
- rainalert.play();
- }
- $("#ChatTab").bind("DOMSubtreeModified",function(){
- if($(this).children(2).children().find('.TextButton').length){ soundz(); }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement