[JS]TeleportAura 0.7(By Mumy)(updated)
-
@yorik100 Fixed
-
@cookiechinese updated
-
@yorik100 added
-
@cookiechinese cool
-
This post is deleted!
-
-
I was able to change the name
-
@yorik100 did u fix ur bug with not hitting, cause you edited your response.
-
@plumer-man Was my bad, another module was cancelling hits
-
There is an issue, if you're inside of a box, enabling TeleportAura wont do anything besides making computer calculations for nothing, JigSaw's infinite aura is able to clip bellow and above that box to allow you from hitting entities outside of that box, TeleportAura script does not make use of packet vclip
Vclipping downThe blue squares being TeleportAura positions
Make that an option because some servers blocks vclipI also take massive fall damage when using TeleportAura and the target is bellow me, you should make something to spoof ground and you should also add a criticals option
Make every positions packets have ground true to fix fall damage when using it, and to add criticals you just have to addmc.thePlayer.sendQueue.addToSendQueue(new C04PacketPlayerPosition(LastTeleportPosX, LastTeleportPosY + 0.000000000000008, LastTeleportPosZ, true)) mc.thePlayer.sendQueue.addToSendQueue(new C04PacketPlayerPosition(LastTeleportPosX, LastTeleportPosY, LastTeleportPosZ, false))
Before sending the attack packet
Note that if you spoof ground to true, it would be better if you would round the Y position to the nearest multiple of 0.015625 ceil (if the nearest multiple of 0.015625 ceil is inside of a block then do the nearest multiple of 0.015625 floor)if mc.theWorld.getCollidingBoundingBoxes(mc.thePlayer, mc.thePlayer.getEntityBoundingBox().offset(LastTeleportPosX - mc.thePlayer.posX, (Math.ceil(LastTeleportPosY / 0.015625) * 0.015625) - mc.thePlayer.posY, LastTeleportPosZ - mc.thePlayer.posZ).expand(0, 0, 0)).isEmpty(); LastTeleportPosY = Math.ceil(LastTeleportPosY / 0.015625) * 0.015625 else LastTeleportPosY = Math.floor(LastTeleportPosY / 0.015625) * 0.015625
Something like that
-
@yorik100 yep, thank you for feedback, our team will repair within these few days
-
@cookiechinese updated
-
@yorik100 added
-
@cookiechinese said in [JS]TeleportAura 0.5demo(By Mumy)(updated):
@yorik100 added
There is an issue, the vclip isn't silent
-
@yorik100 said in [JS]TeleportAura 0.5demo(By Mumy)(updated):
@cookiechinese said in [JS]TeleportAura 0.5demo(By Mumy)(updated):
@yorik100 added
There is an issue, the vclip isn't silent
Sometimes, you gotta be used to non-silent vclips.
-
It should path like that
https://streamable.com/fg7jnv -
This post is deleted!
-
@yorik100 is it capable of doing hclip? like the mineplex phase lmao, that would require you to cancel the S08 if you know where exactly the server would send you the S08
-
@commandblock2 oh hi commandblock2
-
@commandblock2 said in [JS]TeleportAura 0.5demo(By Mumy)(updated):
@yorik100 is it capable of doing hclip? like the mineplex phase lmao, that would require you to cancel the S08 if you know where exactly the server would send you the S08
Take a look at the code of the teleportaura
Edit: You can also take a look at this
34/58