Advertisement
Guest User

SDSAD

a guest
May 4th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. window.onload = function() {
  2.  
  3. $("h2").replaceWith('<h2><b>mCell</b></h2>');
  4. $(".agario-panel").css({'color': 'black'});
  5. $(".agario-panel").css({'background-color': "transparent"});
  6. $(formStyle).css({'background-color': "transparent"});
  7. window.agar.drawGrid = false;
  8. window.agar.hooks.cellColor = function(cell, old_color) {
  9. if(cell.size < 20) return "orange";
  10. if (cell.isVirus) {
  11. return "rgba(68, 68, 68,0.6)"; }
  12. return false;
  13.  
  14. };
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement