Начинающий
Все равно не бьёт я вахуиага,оно у тебе онли с килкой работает тогда
Все равно не бьёт я вахуиага,оно у тебе онли с килкой работает тогда
мой фикс проверьВсе равно не бьёт я вахуи
Это онли с киллкой или без?попробуй
Java:/// by Greufs /// package im.onix.functions.impl.combat; import com.google.common.eventbus.Subscribe; import net.minecraft.client.Minecraft; import net.minecraft.client.network.play.ClientPlayNetHandler; import net.minecraft.network.play.client.CPlayerPacket; import net.minecraft.util.Hand; import im.onix.events.AttackEvent; import im.onix.events.EventUpdate; import im.onix.functions.api.Category; import im.onix.functions.api.Function; import im.onix.functions.api.FunctionRegister; @FunctionRegister( name = "FT Criticals", type = Category.Combat ) public class Criticals extends Function { private final Minecraft mc = Minecraft.getInstance(); @Subscribe public void onPlayerAttack(AttackEvent var1) { if (mc.player != null) { if (mc.world != null) { if (mc.player.isOnGround()) { if (mc.player.fallDistance > 0.0F) { if (!Minecraft.player.isInWater()) { ClientPlayNetHandler connection = Minecraft.player.connection; double posx = Minecraft.player.getPosX(); double posy = Minecraft.player.getPosY() + 0.1; connection.sendPacket(new CPlayerPacket.PositionPacket(posx, posy, Minecraft.player.getPosZ(), false)); connection = Minecraft.player.connection; posx = Minecraft.player.getPosX(); posy = Minecraft.player.getPosY(); connection.sendPacket(new CPlayerPacket.PositionPacket(posx, posy, Minecraft.player.getPosZ(), false)); connection = Minecraft.player.connection; posx = Minecraft.player.getPosX(); posy = Minecraft.player.getPosY() + 0.01; connection.sendPacket(new CPlayerPacket.PositionPacket(posx, posy, Minecraft.player.getPosZ(), false)); connection = Minecraft.player.connection; posx = Minecraft.player.getPosX(); posy = Minecraft.player.getPosY(); connection.sendPacket(new CPlayerPacket.PositionPacket(posx, posy, Minecraft.player.getPosZ(), false)); Minecraft.player.swingArm(Hand.MAIN_HAND); } } } return; } } } }
без вродеЭто онли с киллкой или без?
неа не работаетбез вроде
код хуйня тогданеа не работает
Или же я еблан, а у тебя работает?код хуйня тогда
да я не чекал, мб просто хуйня код в темеМб в дс?
Или же я еблан, а у тебя работает?
Ладно тогда, возможно кто нить под темой оставит рабочий код просто долго ищу уже. А так спасибо за быстрые ответыда я не чекал, мб просто хуйня код в теме
пастеры вот вам рабочий код ,работает но не обходитЛадно тогда, возможно кто нить под темой оставит рабочий код просто долго ищу уже. А так спасибо за быстрые ответы
import com.google.common.eventbus.Subscribe;
import im.arixxx.events.AttackEvent;
import im.arixxx.events.EventMotion;
import im.arixxx.events.EventUpdate;
import im.arixxx.functions.api.Category;
import im.arixxx.functions.api.Function;
import im.arixxx.functions.api.FunctionRegister;
import net.minecraft.client.Minecraft;
import net.minecraft.client.entity.player.ClientPlayerEntity;
import net.minecraft.network.play.client.CPlayerPacket;
import net.minecraft.network.play.client.CPlayerTryUseItemPacket;
import net.minecraft.util.Hand;
@FunctionRegister(name = "Criticals", type = Category.Combat, desc = "Криты с места")
public class Criticals extends Function {
@Subscribe
private void onAttack(AttackEvent e) {
ClientPlayerEntity player = mc.player;
if (player.isOnGround()) {
mc.getConnection().sendPacket(new CPlayerPacket.PositionRotationPacket(player.getPosX(), player.getPosY() + 1e-8, player.getPosZ(), player.rotationYaw, player.rotationPitch,false));
mc.getConnection().sendPacket(new CPlayerPacket.PositionRotationPacket(player.getPosX(), player.getPosY() - 1e-9, player.getPosZ(), player.rotationYaw, player.rotationPitch, false));
if (!player.isHandActive()) {
mc.getConnection().sendPacket(new CPlayerTryUseItemPacket(Hand.OFF_HAND));
mc.playerController.onStoppedUsingItem(player);
}
} else {
mc.getConnection().sendPacket(new CPlayerPacket.PositionRotationPacket(player.getPosX(), player.getPosY() - 1e-9, player.getPosZ(), player.rotationYaw, player.rotationPitch, false));
if (!player.isHandActive()) {
mc.getConnection().sendPacket(new CPlayerTryUseItemPacket(Hand.OFF_HAND));
mc.playerController.onStoppedUsingItem(player);
}
}
}
}
очень полезнопастеры вот вам рабочий код ,работает но не обходит
Код:import com.google.common.eventbus.Subscribe; import im.arixxx.events.AttackEvent; import im.arixxx.events.EventMotion; import im.arixxx.events.EventUpdate; import im.arixxx.functions.api.Category; import im.arixxx.functions.api.Function; import im.arixxx.functions.api.FunctionRegister; import net.minecraft.client.Minecraft; import net.minecraft.client.entity.player.ClientPlayerEntity; import net.minecraft.network.play.client.CPlayerPacket; import net.minecraft.network.play.client.CPlayerTryUseItemPacket; import net.minecraft.util.Hand; @FunctionRegister(name = "Criticals", type = Category.Combat, desc = "Криты с места") public class Criticals extends Function { @Subscribe private void onAttack(AttackEvent e) { ClientPlayerEntity player = mc.player; if (player.isOnGround()) { mc.getConnection().sendPacket(new CPlayerPacket.PositionRotationPacket(player.getPosX(), player.getPosY() + 1e-8, player.getPosZ(), player.rotationYaw, player.rotationPitch,false)); mc.getConnection().sendPacket(new CPlayerPacket.PositionRotationPacket(player.getPosX(), player.getPosY() - 1e-9, player.getPosZ(), player.rotationYaw, player.rotationPitch, false)); if (!player.isHandActive()) { mc.getConnection().sendPacket(new CPlayerTryUseItemPacket(Hand.OFF_HAND)); mc.playerController.onStoppedUsingItem(player); } } else { mc.getConnection().sendPacket(new CPlayerPacket.PositionRotationPacket(player.getPosX(), player.getPosY() - 1e-9, player.getPosZ(), player.rotationYaw, player.rotationPitch, false)); if (!player.isHandActive()) { mc.getConnection().sendPacket(new CPlayerTryUseItemPacket(Hand.OFF_HAND)); mc.playerController.onStoppedUsingItem(player); } } } }
ariXXXпастеры вот вам рабочий код ,работает но не обходит
Код:import com.google.common.eventbus.Subscribe; import im.arixxx.events.AttackEvent; import im.arixxx.events.EventMotion; import im.arixxx.events.EventUpdate; import im.arixxx.functions.api.Category; import im.arixxx.functions.api.Function; import im.arixxx.functions.api.FunctionRegister; import net.minecraft.client.Minecraft; import net.minecraft.client.entity.player.ClientPlayerEntity; import net.minecraft.network.play.client.CPlayerPacket; import net.minecraft.network.play.client.CPlayerTryUseItemPacket; import net.minecraft.util.Hand; @FunctionRegister(name = "Criticals", type = Category.Combat, desc = "Криты с места") public class Criticals extends Function { @Subscribe private void onAttack(AttackEvent e) { ClientPlayerEntity player = mc.player; if (player.isOnGround()) { mc.getConnection().sendPacket(new CPlayerPacket.PositionRotationPacket(player.getPosX(), player.getPosY() + 1e-8, player.getPosZ(), player.rotationYaw, player.rotationPitch,false)); mc.getConnection().sendPacket(new CPlayerPacket.PositionRotationPacket(player.getPosX(), player.getPosY() - 1e-9, player.getPosZ(), player.rotationYaw, player.rotationPitch, false)); if (!player.isHandActive()) { mc.getConnection().sendPacket(new CPlayerTryUseItemPacket(Hand.OFF_HAND)); mc.playerController.onStoppedUsingItem(player); } } else { mc.getConnection().sendPacket(new CPlayerPacket.PositionRotationPacket(player.getPosX(), player.getPosY() - 1e-9, player.getPosZ(), player.rotationYaw, player.rotationPitch, false)); if (!player.isHandActive()) { mc.getConnection().sendPacket(new CPlayerTryUseItemPacket(Hand.OFF_HAND)); mc.playerController.onStoppedUsingItem(player); } } } }
жоскаariXXX
топ! обходит одиночный мир, свинка и 5 куриц довольны!пастеры вот вам рабочий код ,работает но не обходит
Код:import com.google.common.eventbus.Subscribe; import im.arixxx.events.AttackEvent; import im.arixxx.events.EventMotion; import im.arixxx.events.EventUpdate; import im.arixxx.functions.api.Category; import im.arixxx.functions.api.Function; import im.arixxx.functions.api.FunctionRegister; import net.minecraft.client.Minecraft; import net.minecraft.client.entity.player.ClientPlayerEntity; import net.minecraft.network.play.client.CPlayerPacket; import net.minecraft.network.play.client.CPlayerTryUseItemPacket; import net.minecraft.util.Hand; @FunctionRegister(name = "Criticals", type = Category.Combat, desc = "Криты с места") public class Criticals extends Function { @Subscribe private void onAttack(AttackEvent e) { ClientPlayerEntity player = mc.player; if (player.isOnGround()) { mc.getConnection().sendPacket(new CPlayerPacket.PositionRotationPacket(player.getPosX(), player.getPosY() + 1e-8, player.getPosZ(), player.rotationYaw, player.rotationPitch,false)); mc.getConnection().sendPacket(new CPlayerPacket.PositionRotationPacket(player.getPosX(), player.getPosY() - 1e-9, player.getPosZ(), player.rotationYaw, player.rotationPitch, false)); if (!player.isHandActive()) { mc.getConnection().sendPacket(new CPlayerTryUseItemPacket(Hand.OFF_HAND)); mc.playerController.onStoppedUsingItem(player); } } else { mc.getConnection().sendPacket(new CPlayerPacket.PositionRotationPacket(player.getPosX(), player.getPosY() - 1e-9, player.getPosZ(), player.rotationYaw, player.rotationPitch, false)); if (!player.isHandActive()) { mc.getConnection().sendPacket(new CPlayerTryUseItemPacket(Hand.OFF_HAND)); mc.playerController.onStoppedUsingItem(player); } } } }
топ! обходит одиночный мир, свинка и 5 куриц довольны!
а ты думал я солью супер пупер Packet Criticals из нурсултана (астана)топ! обходит одиночный мир, свинка и 5 куриц довольны!
ну да, хули нета ты думал я солью супер пупер Packet Criticals из нурсултана (астана)
как это блять меняет обходмб код не работает потому-что он весь в варах????? Посмотреть вложение 282150
это не влияетмб код не работает потому-что он весь в варах????? Посмотреть вложение 282150
Проект предоставляет различный материал, относящийся к сфере киберспорта, программирования, ПО для игр, а также позволяет его участникам общаться на многие другие темы. Почта для жалоб: admin@yougame.biz