-
Автор темы
- #1
Перед прочтением основного контента ниже, пожалуйста, обратите внимание на обновление внутри секции Майна на нашем форуме. У нас появились:
- бесплатные читы для Майнкрафт — любое использование на свой страх и риск;
- маркетплейс Майнкрафт — абсолютно любая коммерция, связанная с игрой, за исключением продажи читов (аккаунты, предоставления услуг, поиск кодеров читов и так далее);
- приватные читы для Minecraft — в этом разделе только платные хаки для игры, покупайте группу "Продавец" и выставляйте на продажу свой софт;
- обсуждения и гайды — всё тот же раздел с вопросами, но теперь модернизированный: поиск нужных хаков, пати с игроками-читерами и другая полезная информация.
Спасибо!
Код:
package wtf.shiyeno.modules.impl.player;
import wtf.shiyeno.events.Event;
import wtf.shiyeno.events.impl.player.EventUpdate;
import wtf.shiyeno.managment.Managment;
import wtf.shiyeno.modules.Function;
import wtf.shiyeno.modules.FunctionAnnotation;
import wtf.shiyeno.modules.Type;
import wtf.shiyeno.modules.impl.combat.AuraFunction;
import wtf.shiyeno.util.misc.TimerUtil;
import wtf.shiyeno.util.world.InventoryUtil;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.inventory.container.ClickType;
import net.minecraft.item.Items;
import net.minecraft.network.play.client.CEntityActionPacket;
import net.minecraft.network.play.client.CEntityActionPacket.Action;
import net.minecraft.util.math.vector.Vector3d;
@FunctionAnnotation(
name = "ElytraBoost",
type = Type.Movement
)
public class ElytraBoost extends Function {
private final TimerUtil timerUtil = new TimerUtil();
boolean groundStart = false;
private PlayerEntity target = null;
public void onEvent(Event event) {
if (event instanceof EventUpdate) {
this.target = this.getTarget(this.target); {
AuraFunction auraFunction = Managment.FUNCTION_MANAGER.auraFunction;
if (auraFunction.state) {
double speed;
Vector3d motion;
if (mc.player.isElytraFlying()); {
speed = 1.110;
motion = mc.player.getMotion();
motion = new Vector3d(motion.x * speed, motion.y, motion.z * speed);
mc.player.setMotion(motion);
}
}
}
if (mc.player.fallDistance != 0.0F) {
if (!mc.player.isElytraFlying() && this.groundStart && this.timerUtil.hasTimeElapsed(100L)) {
this.groundStart = false;
for(var i = 0; i < 36; ++i) {
if (mc.player.inventory.getStackInSlot(i).getItem() == Items.ELYTRA) {
mc.playerController.windowClick(0, 6, i, ClickType.SWAP, mc.player);
mc.player.connection.sendPacket(new CEntityActionPacket(mc.player, Action.START_FALL_FLYING));
mc.playerController.windowClick(0, 6, i, ClickType.SWAP, mc.player);
InventoryUtil.inventorySwapClick(Items.FIREWORK_ROCKET, false);
}
}
}
}
}
}
private PlayerEntity getTarget(PlayerEntity nullTarget) {
PlayerEntity target = nullTarget;
if (AuraFunction.getTarget() instanceof PlayerEntity) {
target = (PlayerEntity)AuraFunction.getTarget();
}
return target;
}
public void onDisable() {
super.onDisable();
}
}