Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- setInterval(function(){
- $('table#servers tr td:nth-of-type(4)').each(function() {
- var mod = $(this);
- if((mod.text().startsWith("dm"))) { $(this).css("color","gold"); }
- else { }
- });
- $('table#servers tr td:nth-of-type(5)').each(function(){
- var header = $(this);
- if((header.text().startsWith("0"))) { $(this).css("color","red"); }
- else { $(this).css("color","green"); }
- });
- $('table#servers tr td:nth-of-type(7)').each(function() {
- var map = $(this);
- if((map.text().startsWith("mp_toujane"))) { $(this).css("color","orange"); }
- else { }
- });
- }, 1000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement