Counterfeit Flair Detector

WE MUST PRESERVE THE VALUE OF OUR BELOVED EVENT FLAIRS. Flips counterfeit flairs upside down ingame.

  1. // ==UserScript==
  2. // @name Counterfeit Flair Detector
  3. // @namespace https://parretlabs.xyz
  4. // @version 0.1
  5. // @description WE MUST PRESERVE THE VALUE OF OUR BELOVED EVENT FLAIRS. Flips counterfeit flairs upside down ingame.
  6. // @author Electro
  7. // @include https://tagpro.koalabeast.com/game
  8. // @include http://tagpro-maptest.koalabeast.com:8*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. tagpro.ready(function () {
  15. setInterval(function(){
  16. Object.values(tagpro.players).forEach(function(item, idx){
  17. if(item.flair.description.includes("Counterfeit")) item.sprites.flair.rotation = 3.14;
  18. });
  19. }, 5000);
  20. });
  21. // Your code here...
  22. })();