Arbybear

Always Show Splats

Jul 15th, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Always Show Splats
  3. // @version 0.1
  4. // @include http://tagpro-*.koalabeast.com:*
  5. // @include http://tangent.jukejuice.com:*
  6. // @include http://*.newcompte.fr:*
  7. // ==/UserScript==
  8.  
  9. tagpro.ready(function wait() {
  10. if(!tagpro.renderer) setTimeout(wait,10);
  11. var addSplat = tagpro.renderer.addSplat;
  12. tagpro.renderer.addSplat = function(team,x,y,fade) {
  13. addSplat(team,x,y,false);
  14. }
  15. });
Advertisement
Add Comment
Please, Sign In to add comment