diep.io Quick upgrade v2

Bounds keys to builds and themes

  1. // ==UserScript==
  2. // @name diep.io Quick upgrade v2
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Bounds keys to builds and themes
  6. // @author Unnamed gae
  7. // @match *://*.diep.io/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. document.body.onkeyup=function(e){
  13.  
  14. //Build keys
  15. //Go to http://keycode.info/ if you want to reassign keys and then change the number after "e.keyCode==="
  16.  
  17. //00077757 = "z key"
  18. if(e.keyCode===90){
  19. input.execute("game_stats_build 556644565656565644444888888877777");
  20. }
  21. //02377707 = "x key"
  22. if(e.keyCode===88){
  23. input.execute("game_stats_build 556644565656565644444888888832323");
  24. }
  25. //02307777 = "b key"
  26. if(e.keyCode===66){
  27. input.execute("game_stats_build 775566777775656565656888888832323");
  28. }
  29. //00067776 spammer = "n key"
  30. if(e.keyCode===78){
  31. input.execute("game_stats_build 775566777775656565656888888444444");
  32. }
  33.  
  34. //Themes bellow. Delete if you don't care, but IMO these are lit.
  35.  
  36. //My theme = "v key"
  37. if(e.keyCode===86){
  38. input.execute("ui_replace_colors 0xA221FE 0x7008FF 0x3426FF 0x0E69E6 0x06DDFF 0x00FFF9 0x00FFA2 0x00FF09");
  39. input.execute("ren_grid_base_alpha 0.3");
  40. input.execute("ren_stroke_soft_color_intensity 0.6");
  41. input.execute("ren_background_color 0xAAAAAA");
  42. input.execute("ren_bar_background_color 0x93ebff");
  43. input.execute("ren_health_background_color 0x2E5A89");
  44. input.execute("ren_health_fill_color 0x00FF00");
  45. input.execute("ren_minimap_viewport true");
  46. input.set_convar("ren_solid_background", true);
  47. input.set_convar("ren_fps", true);
  48. setInterval(function(){input.keyDown(76);},150);
  49. }
  50. ///u/162893476 Remove Upgrades = ", key"
  51. if(e.keyCode===188){
  52. input.set_convar("ren_upgrades", false);
  53. setInterval(function(){input.keyDown(76);},150);
  54. }
  55. ///u/162893476 Enable Upgrades = ". key"
  56. if(e.keyCode===190){
  57. input.set_convar("ren_upgrades", true);
  58. }
  59. };
  60. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址