Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Cam's Sounds (OmicroN modified)
- // @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 Cam'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'
- };
- tagpro.ready(function () {
- for (var snd in customSounds) {
- if (customSounds.hasOwnProperty(snd)) {
- // Remove all audio sources for sound except the first
- $('audio#' + snd).find('source:gt(0)').remove();
- // Replace the first audio source with the new sound
- $('audio#' + snd).find('source').attr('src', customSounds[snd]);
- // Reload the sound with the new source
- $('audio#' + snd)[0].load();
- }
- }
- });
Add Comment
Please, Sign In to add comment