Advertisement
JuanVillalbaModz14

Untitled

Apr 11th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1.  
  2. //replaces title
  3. //h2 selects all h2 elements
  4. $("h2").replaceWith('<h2>JuanVillalbaModz</h2>');
  5.  
  6. //zoom
  7. window.agar.minScale = -30;
  8.  
  9.  
  10. //draws grid, true = yes, and false = no
  11.  
  12.  
  13. window.agar.drawGrid = false;
  14. //sets dark theme to true on extension load
  15. setDarkTheme(true);
  16. //sets show mass to true on extension load
  17. setShowMass(true);
  18.  
  19. //Cell skin
  20. image.src = 'http://i.imgur.com/GBpr1JR.png' //link
  21. window.agar.hooks.cellSkin = function(cell, old_skin) {
  22. for (i = 0; i < window.agar.myCells.length; i++) {
  23. if(cell.id == window.agar.myCells[i]) ;
  24. }
  25. }
  26.  
  27. window.agar.hooks.drawCellMass = function(cell, old_draw) {
  28. if(cell.size > 20) return cell;
  29. }
  30.  
  31. //You can just delete the return 50 if you dont like the size
  32. window.agar.hooks.cellMassTextScale = function(cell, old_scale) {
  33. return 50; //number here
  34. }
  35.  
  36.  
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement