Greasy Fork is available in English.

evoworld.io cheat menu

press w for activate multi-zoom, new evoworls.io multi-hack. A lot of features.

  1. // ==UserScript==
  2. // @name evoworld.io cheat menu
  3. // @namespace http://tampermonkey.net/
  4. // @version 2025-03-03
  5. // @description press w for activate multi-zoom, new evoworls.io multi-hack. A lot of features.
  6. // @author ilya gaydov
  7. // @match https://evoworld.io/
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=evoworld.io
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. const Button = document.createElement("button");
  13. Button.innerText = "Toggle menu";
  14. Button.style.position = "fixed";
  15. Button.style.bottom = "20px";
  16. Button.style.right = "20px";
  17. Button.style.padding = "10px 20px";
  18. Button.style.backgroundColor = "rgba(51, 51, 51, 0.7)";
  19. Button.style.color = "#fff";
  20. Button.style.border = "2px solid transparent";
  21. Button.style.borderRadius = "12px";
  22. Button.style.cursor = "pointer";
  23. Button.style.zIndex = "1000";
  24. Button.style.fontWeight = "500";
  25. Button.style.fontSize = "16px";
  26. Button.style.textShadow = "1px 1px 2px rgba(0, 0, 0, 0.6)";
  27. Button.style.boxShadow = "0 0 8px 4px rgba(255, 0, 0, 0.5)";
  28. Button.style.transition = "box-shadow 0.5s, background-color 0.3s";
  29. Button.style.animation = "glowAnimation 3s infinite";
  30.  
  31. document.body.appendChild(Button);
  32.  
  33. const menu = document.createElement("div");
  34. menu.style.position = "fixed";
  35. menu.style.bottom = "100px";
  36. menu.style.right = "20px";
  37. menu.style.padding = "10px";
  38. menu.style.backgroundColor = "#222";
  39. menu.style.borderRadius = "8px";
  40. menu.style.boxShadow = "0px 4px 8px rgba(0, 0, 0, 0.3)";
  41. menu.style.display = "none";
  42. menu.style.zIndex = "1000";
  43.  
  44. const nightVisionToggle = document.createElement("input");
  45. nightVisionToggle.type = "checkbox";
  46. nightVisionToggle.id = "nightVisionToggle";
  47. nightVisionToggle.style.marginRight = "8px";
  48. const nightVisionLabel = document.createElement("label");
  49. nightVisionLabel.innerText = "Night Vision";
  50. nightVisionLabel.style.color = "#fff";
  51. nightVisionLabel.style.cursor = "pointer";
  52. nightVisionLabel.htmlFor = "nightVisionToggle";
  53.  
  54. nightVisionToggle.onclick = () => {
  55. eval(`visionType = ${nightVisionToggle.checked ? 1 : 0}`);
  56. };
  57. menu.appendChild(nightVisionToggle);
  58. menu.appendChild(nightVisionLabel);
  59. menu.appendChild(document.createElement("br"));
  60.  
  61. const zIndexButton = document.createElement("button");
  62. zIndexButton.innerText = "Player zIndex";
  63. zIndexButton.style.display = "block";
  64. zIndexButton.style.width = "100%";
  65. zIndexButton.style.padding = "8px";
  66. zIndexButton.style.marginTop = "5px";
  67. zIndexButton.style.backgroundColor = "#444";
  68. zIndexButton.style.color = "#fff";
  69. zIndexButton.style.border = "none";
  70. zIndexButton.style.cursor = "pointer";
  71. zIndexButton.style.borderRadius = "8px";
  72.  
  73. const zIndexSliderContainer = document.createElement("div");
  74. const zIndexSlider = document.createElement("input");
  75. zIndexSlider.type = "range";
  76. zIndexSlider.min = "15";
  77. zIndexSlider.max = "1000";
  78. zIndexSlider.value = "15";
  79. zIndexSlider.style.width = "100%";
  80. zIndexSliderContainer.style.display = "none";
  81. zIndexSliderContainer.style.paddingTop = "8px";
  82. zIndexSliderContainer.appendChild(zIndexSlider);
  83.  
  84. zIndexButton.onclick = () => {
  85. zIndexSliderContainer.style.display = zIndexSliderContainer.style.display === "none" ? "block" : "none";
  86. };
  87. zIndexSlider.oninput = () => {
  88. eval(`window.game.me.zIndex = ${zIndexSlider.value}`);
  89. };
  90. menu.appendChild(zIndexButton);
  91. menu.appendChild(zIndexSliderContainer);
  92.  
  93. const showInCloudToggle = document.createElement("input");
  94. showInCloudToggle.type = "checkbox";
  95. showInCloudToggle.id = "showInCloudToggle";
  96. showInCloudToggle.style.marginRight = "8px";
  97. const showInCloudLabel = document.createElement("label");
  98. showInCloudLabel.innerText = "Show In Cloud";
  99. showInCloudLabel.style.color = "#fff";
  100. showInCloudLabel.style.cursor = "pointer";
  101. showInCloudLabel.htmlFor = "showInCloudToggle";
  102.  
  103. let showInCloudInterval;
  104. showInCloudToggle.onclick = () => {
  105. if (showInCloudToggle.checked) {
  106. eval("window.game.me.zIndex = 100");
  107. zIndexSlider.min = "100";
  108. zIndexSlider.value = "100";
  109. showInCloudInterval = setInterval(() => {
  110. eval("window.game.me.inHide = false");
  111. }, 1);
  112. } else {
  113. clearInterval(showInCloudInterval);
  114. eval("window.game.me.zIndex = 15");
  115. zIndexSlider.min = "15";
  116. zIndexSlider.value = "15";
  117. }
  118. };
  119. menu.appendChild(showInCloudToggle);
  120. menu.appendChild(showInCloudLabel);
  121. menu.appendChild(document.createElement("br"));
  122.  
  123. const unlimitedFpsToggle = document.createElement("input");
  124. unlimitedFpsToggle.type = "checkbox";
  125. unlimitedFpsToggle.id = "unlimitedFpsToggle";
  126. unlimitedFpsToggle.style.marginRight = "8px";
  127. const unlimitedFpsLabel = document.createElement("label");
  128. unlimitedFpsLabel.innerText = "Unlimited Fps";
  129. unlimitedFpsLabel.style.color = "#fff";
  130. unlimitedFpsLabel.style.cursor = "pointer";
  131. unlimitedFpsLabel.htmlFor = "unlimitedFpsToggle";
  132.  
  133. unlimitedFpsToggle.onclick = () => {
  134. eval(`window.game.fpsTimes.length = ${unlimitedFpsToggle.checked ? 1000 : 0}`);
  135. };
  136. menu.appendChild(unlimitedFpsToggle);
  137. menu.appendChild(unlimitedFpsLabel);
  138.  
  139. const playerLvlContainer = document.createElement("div");
  140. playerLvlContainer.style.marginTop = "8px";
  141. const playerLvlInput = document.createElement("input");
  142. playerLvlInput.type = "number";
  143. playerLvlInput.min = "0";
  144. playerLvlInput.placeholder = "Player LVL";
  145. playerLvlInput.style.width = "100%";
  146. playerLvlInput.style.padding = "8px";
  147. playerLvlInput.style.border = "1px solid #444";
  148. playerLvlInput.style.borderRadius = "8px";
  149. playerLvlInput.style.backgroundColor = "#333";
  150. playerLvlInput.style.color = "#fff";
  151.  
  152. playerLvlInput.onchange = () => {
  153. eval(`window.game.me.level = ${playerLvlInput.value}`);
  154. };
  155. playerLvlContainer.appendChild(playerLvlInput);
  156. menu.appendChild(playerLvlContainer);
  157.  
  158. const playerFOV = document.createElement("div");
  159. playerFOV.style.marginTop = "8px";
  160. const FOV = document.createElement("input");
  161. FOV.type = "number";
  162. FOV.min = "0.5";
  163. FOV.placeholder = "ZOOM(press w for activate)";
  164. FOV.style.width = "100%";
  165. FOV.style.padding = "8px";
  166. FOV.style.border = "1px solid #444";
  167. FOV.style.borderRadius = "8px";
  168. FOV.style.backgroundColor = "#333";
  169. FOV.style.color = "#fff";
  170.  
  171.  
  172. FOV.onchange = () => {
  173. $.get("https://raw.githubusercontent.com/jmatg1/evoword-scripts/main/zoom-hack.js", (d) => eval(d));
  174. gameZoom = FOV.value
  175. };
  176. playerFOV.appendChild(FOV);
  177. menu.appendChild(playerFOV);
  178.  
  179. document.body.appendChild(menu);
  180.  
  181. Button.onclick = () => {
  182. menu.style.display = menu.style.display === "none" ? "block" : "none";
  183. };
  184.  
  185. const style = document.createElement("style");
  186. style.innerHTML = `
  187. @keyframes glowAnimation {
  188. 0% { box-shadow: 0 0 8px 4px rgba(255, 0, 0, 0.5); border-color: red; }
  189. 25% { box-shadow: 0 0 8px 4px rgba(0, 255, 0, 0.5); border-color: green; }
  190. 50% { box-shadow: 0 0 8px 4px rgba(0, 0, 255, 0.5); border-color: blue; }
  191. 75% { box-shadow: 0 0 8px 4px rgba(255, 255, 0, 0.5); border-color: yellow; }
  192. 100% { box-shadow: 0 0 8px 4px rgba(255, 0, 0, 0.5); border-color: red; }
  193. }
  194. `;
  195. document.head.appendChild(style);