Advertisement
r1zsa

http://tracker.killtube.org/ Accent Colors

Sep 4th, 2022
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.73 KB | Housing | 0 0
  1.  setInterval(function(){
  2.  
  3.      $('table#servers tr td:nth-of-type(4)').each(function() {
  4.         var mod = $(this);
  5.         if((mod.text().startsWith("dm")))  {   $(this).css("color","gold");  }
  6.             else {         }
  7.        });
  8.  
  9.     $('table#servers tr td:nth-of-type(5)').each(function(){
  10.         var header = $(this);
  11.         if((header.text().startsWith("0")))  {   $(this).css("color","red");   }          
  12.         else {  $(this).css("color","green");    }
  13.        });
  14.        
  15.      $('table#servers tr td:nth-of-type(7)').each(function() {
  16.         var map = $(this);
  17.         if((map.text().startsWith("mp_toujane")))  {   $(this).css("color","orange");  }
  18.             else {         }
  19.        });
  20.        
  21. }, 1000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement