Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Tagpro Competitive Toggler
  3. // @include http://*.koalabeast.com:*
  4. // @include http://tangent.jukejuice.com:*
  5. // @exclude http://*.koalabeast.com:3000*
  6. // @author eigenvector, JBB
  7. // @run-at document-start
  8. // @version 1.1
  9. // ==/UserScript==
  10.  
  11. // you can't use marble spin with pokerchip spin
  12.  
  13. var toggles = {
  14. pokerchip: true,
  15. wholeball: true,
  16. marble: false,
  17. liveplayerposition: true,
  18. milli: true,
  19. teamstats: true,
  20. macros: false,
  21. remap: false,
  22. transparent: true,
  23. tiletint: false,
  24. timeonball: false,
  25. balltrans: true
  26. };
  27.  
  28. // don't touch past here
  29.  
  30. if(toggles.pokerchip && toggles.marble){
  31. toggles.marble = false;
  32. }
  33.  
  34. window.sessionStorage.toggles = JSON.stringify(toggles);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement