HealthValue & FastRainbow Theme Diep.io

Allow you to have all 4 teams disco colors and to see your health's hp value! PS: You need to put the healthvalue code in console f12 in diep for make it work.

  1. // ==UserScript==
  2. // @name HealthValue & FastRainbow Theme Diep.io
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Allow you to have all 4 teams disco colors and to see your health's hp value! PS: You need to put the healthvalue code in console f12 in diep for make it work.
  6. // @author Its Ash ;3 , for contact me ,on discord my DM are open. Ashley_#2063
  7. // @match http*://diep.io/
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (() => {
  12. const script = document.createElement("script");
  13. script.src = "https://cdnjs.cloudflare.com/ajax/libs/chroma-js/1.3.7/chroma.min.js";
  14. document.head.append(script);
  15.  
  16. script.addEventListener("load", () => {
  17. const scale = chroma.scale(["green", "forestgreen", "seagreen", "lime", "palegreen", "yellowgreen", "green"]).colors(1000);
  18. let index = 85;
  19.  
  20.  
  21. setInterval(() => {
  22. index += 100;
  23. if (index > scale.length) {
  24. index = 0;
  25. }
  26.  
  27. input.execute(`net_replace_color 6 ${"0x" + scale[index].substr(1, Infinity)}`);
  28. });
  29. });
  30. })();
  31.  
  32.  
  33. (() => {
  34. const script = document.createElement("script");
  35. script.src = "https://cdnjs.cloudflare.com/ajax/libs/chroma-js/1.3.7/chroma.min.js";
  36. document.head.append(script);
  37.  
  38. script.addEventListener("load", () => {
  39. const scale = chroma.scale(["purple", "darkviolet", "fuchsia", "mediumpurple", "rebeccapurple", "deeppink", "purple"]).colors(1000);
  40. let index = 85;
  41.  
  42.  
  43. setInterval(() => {
  44. index += 100;
  45. if (index > scale.length) {
  46. index = 0;
  47. }
  48.  
  49. input.execute(`net_replace_color 5 ${"0x" + scale[index].substr(1, Infinity)}`);
  50. });
  51. });
  52. })();
  53.  
  54.  
  55. (() => {
  56. const script = document.createElement("script");
  57. script.src = "https://cdnjs.cloudflare.com/ajax/libs/chroma-js/1.3.7/chroma.min.js";
  58. document.head.append(script);
  59.  
  60. script.addEventListener("load", () => {
  61. const scale = chroma.scale(["blue", "aqua", "steelblue", "navy", "cyan", "indigo", "blue"]).colors(1000);
  62. let index = 85;
  63.  
  64.  
  65. setInterval(() => {
  66. index += 100;
  67. if (index > scale.length) {
  68. index = 0;
  69. }
  70.  
  71. input.execute(`net_replace_color 3 ${"0x" + scale[index].substr(1, Infinity)}`);
  72. });
  73. });
  74. })();
  75.  
  76.  
  77. (() => {
  78. const script = document.createElement("script");
  79. script.src = "https://cdnjs.cloudflare.com/ajax/libs/chroma-js/1.3.7/chroma.min.js";
  80. document.head.append(script);
  81.  
  82. script.addEventListener("load", () => {
  83. const scale = chroma.scale(["red", "orange", "crimson", "firebrick", "tomato", "orangered", "red"]).colors(1000);
  84. let index = 85;
  85.  
  86.  
  87. setInterval(() => {
  88. index += 100;
  89. if (index > scale.length) {
  90. index = 0;
  91. }
  92.  
  93. input.execute(`net_replace_color 4 ${"0x" + scale[index].substr(1, Infinity)}`);
  94. });
  95. });
  96. })();
  97.  
  98. input.set_convar("ren_raw_health_values", true)

QingJ © 2025

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