Advertisement
Guest User

Untitled

a guest
Jan 19th, 2016
576
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Muscle's Sounds (Cam's script)
  3. // @namespace http://tagpro.gg/
  4. // @version 1.0
  5. // @include http://tagpro-*.koalabeast.com:*
  6. // @include http://tangent.jukejuice.com:*
  7. // @include http://*.newcompte.fr:*
  8. // @description Change the sounds of tagpro to MuscleCups's sound pack.
  9. // @author RonSpawnson, Cyanide, Seconskin, Cam, Acid Rap
  10. // @reference https://www.reddit.com/r/TagPro/wiki/api
  11. // ==/UserScript==
  12.  
  13.  
  14. var customSounds = {
  15. 'drop': 'https://a.clyp.it/vilyqhzc.mp3',
  16. 'friendlydrop': 'https://a.clyp.it/jer5p3ow.mp3',
  17. 'cheering': 'https://a.clyp.it/nulqyxat.mp3',
  18. 'sigh': 'https://a.clyp.it/h5hjh4l4.mp3',
  19. 'burst': 'https://a.clyp.it/lpmf4afe.mp3',
  20. 'friendlyalert': 'https://a.clyp.it/gmmdkusi.mp3',
  21. 'alert': 'https://a.clyp.it/m2yz5dhg.mp3',
  22. 'pop': 'https://a.clyp.it/iyqajrfl.mp3',
  23. 'click': 'https://a.clyp.it/tjf0pwd2.mp3',
  24. 'explosion': 'https://a.clyp.it/q0mx5k34.mp3',
  25. 'countdown': 'https://a.clyp.it/xjgdxgxy.mp3',
  26. 'alertlong': 'https://a.clyp.it/nsl4cfhm.mp3',
  27. 'go': 'https://a.clyp.it/kjycagbz.mp3',
  28. 'degreeup': 'https://a.clyp.it/vyzkn52t.mp3',
  29. 'teleport': 'https://a.clyp.it/o3omevmg.mp3',
  30. 'powerup': 'https://a.clyp.it/ot5hidv1.mp3'
  31. };
  32.  
  33. for (var snd in customSounds) {
  34. if (customSounds.hasOwnProperty(snd)) {
  35. var el = document.getElementById(snd);
  36. el.src = customSounds[snd];
  37. el.load();
  38. }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement