Advertisement
Guest User

background

a guest
Apr 15th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Tagpro Background
  3. // @author Catalyst
  4. // @version 0.1
  5. // @include http://tagpro-*.koalabeast.com:*
  6. // ==/UserScript==
  7.  
  8. //Set this to false to allow background changes when you are a player
  9. var spec_only=true;
  10.  
  11. tagpro.ready(function waitForId() {
  12. if (!tagpro.playerId) {
  13. return setTimeout(waitForId, 100);
  14. }
  15. if(tagpro.spectator || !spec_only)
  16. {
  17. $('html').css({'background-image':'url(https://i.imgur.com/RP4nVwp.png)'});//use a direct link to an image
  18. }
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement