Could anyone familiar with js make a script which will make player dodge arrows like Enderman? I can do it manually using "Blink" but I wonder if it would be possible to make it happen automatically. The principle of operation of this cheat could be based on "Teleport mode:Blink" for example. I have never seen anything like this in any client. It would be extremely useful on Murder Mystery or Murder Mystery: Infection.
asd dsa
Posts
-
[Request] Arrow avoidance script (like Enderman) -
CrackPixel StepBtw. does anyone know why hypixel doesn't sue servers such as crackpixel or even derpmc for copyrights? xD
-
[Request] Arrow avoidance script (like Enderman)@gabriel Yes it will autoban on BW with "watchdog cheat detection" message but autoban is disabled on MM/MM:infection. On these modes you can use fly (hypixel mode), LongJump (NCP with boost 5.00 continually with no lags), Speed (almost all modes, "onground" is the fastest), Phase (AAC3.5.0 - only through trapdoors), Strafe etc.
-
[Request] Arrow avoidance script (like Enderman)@commandblock2 I did a little research and found that if I change this
mc.thePlayer.setPosition(mc.thePlayer.posX, mc.thePlayer.posY + 2, mc.thePlayer.posZ)
to this
mc.thePlayer.setPosition(mc.thePlayer.posX + Math.cos(Math.toRadians(mc.thePlayer.rotationYaw)) * -1, mc.thePlayer.posY, mc.thePlayer.posZ + Math.sin(Math.toRadians(mc.thePlayer.rotationYaw)) * -1)
it would teleport player one block to the right relatively to his rotation (perpendicular to his view as I mentioned a few post before). Can of course be set "1" intstead of "-1" to teleport player to the left. Maybe it will help you with improving the code.
I found in the internet Java code doing a similar thing to code no2 I wrote above and rewrote it to JS by trial and error method (idk any scripting language, just imagine how it mindfuked me when I saw it worked xD). I tried to make it teleport the player alternataly or randomly - once to the right, once to the left and so on but I didn't get it. I tried also my best to make it teleport player relatively to the arrow rotation but it didn't work out either. I need to learn JS xD