Guest User

TagPro King of the Hill Sound Board

a guest
Feb 14th, 2015
574
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Tagpro King of the Hill Sound Board
  3. // @namespace http://tagpro.gg/
  4. // @version 0.1
  5. // @include http://tagpro-*.koalabeast.com:*
  6. // @include http://tangent.jukejuice.com:*
  7. // @include http://*.newcompte.fr:*
  8. // @description Change some sounds to King of the Hill sounds
  9. // @author mudrat
  10. // @reference https://www.reddit.com/r/TagPro/wiki/api
  11. // ==/UserScript==
  12.  
  13. tagpro.ready(function () {
  14.  
  15. dropAudio = document.getElementById('drop'); //hank that boy aint right, alternate: wompwompwomp https://a.clyp.it/jfgeizbr.mp3
  16. dropAudio.src = 'https://a.clyp.it/gxm4djnp.mp3 ';
  17. dropAudio.load();
  18.  
  19. dropAudio2 = document.getElementById('friendlydrop'); //hank dang it bobby
  20. dropAudio2.src = 'https://a.clyp.it/ucd2ymc1.mp3';
  21. dropAudio2.load();
  22.  
  23. dropAudio3 = document.getElementById('cheering'); //peggy i can and i will
  24. dropAudio3.src = 'https://a.clyp.it/n4jhvh2l.mp3';
  25. dropAudio3.load();
  26.  
  27. dropAudio4 = document.getElementById('sigh'); //boomhauer crying
  28. dropAudio4.src = 'https://a.clyp.it/knu2wus5.mp3';
  29. dropAudio4.load();
  30.  
  31. dropAudio5 = document.getElementById('powerup'); //grandpa hill feisty
  32. dropAudio5.src = 'https://a.clyp.it/yarvnngh.mp3';
  33. dropAudio5.load();
  34.  
  35. dropAudio6 = document.getElementById('friendlyalert'); //khan you go now
  36. dropAudio6.src = 'https://a.clyp.it/mjs0ev4u.mp3';
  37. dropAudio6.load();
  38.  
  39. dropAudio7 = document.getElementById('alert'); //peggy aaaaaagh!!!
  40. dropAudio7.src = 'https://a.clyp.it/aotxeb32.mp3';
  41. dropAudio7.load();
  42.  
  43.  
  44.  
  45.  
  46. })
Add Comment
Please, Sign In to add comment