Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Muscle's Sounds (Cam's script)
- // @namespace http://tagpro.gg/
- // @version 1.0
- // @include http://tagpro-*.koalabeast.com:*
- // @include http://tangent.jukejuice.com:*
- // @include http://*.newcompte.fr:*
- // @description Change the sounds of tagpro to MuscleCups's sound pack.
- // @author RonSpawnson, Cyanide, Seconskin, Cam, Acid Rap
- // @reference https://www.reddit.com/r/TagPro/wiki/api
- // ==/UserScript==
- var customSounds = {
- 'drop': 'https://a.clyp.it/vilyqhzc.mp3',
- 'friendlydrop': 'https://a.clyp.it/jer5p3ow.mp3',
- 'cheering': 'https://a.clyp.it/nulqyxat.mp3',
- 'sigh': 'https://a.clyp.it/h5hjh4l4.mp3',
- 'burst': 'https://a.clyp.it/lpmf4afe.mp3',
- 'friendlyalert': 'https://a.clyp.it/gmmdkusi.mp3',
- 'alert': 'https://a.clyp.it/m2yz5dhg.mp3',
- 'pop': 'https://a.clyp.it/iyqajrfl.mp3',
- 'click': 'https://a.clyp.it/tjf0pwd2.mp3',
- 'explosion': 'https://a.clyp.it/q0mx5k34.mp3',
- 'countdown': 'https://a.clyp.it/xjgdxgxy.mp3',
- 'alertlong': 'https://a.clyp.it/nsl4cfhm.mp3',
- 'go': 'https://a.clyp.it/kjycagbz.mp3',
- 'degreeup': 'https://a.clyp.it/vyzkn52t.mp3',
- 'teleport': 'https://a.clyp.it/o3omevmg.mp3',
- 'powerup': 'https://a.clyp.it/ot5hidv1.mp3'
- };
- for (var snd in customSounds) {
- if (customSounds.hasOwnProperty(snd)) {
- var el = document.getElementById(snd);
- el.src = customSounds[snd];
- el.load();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement