-
Автор темы
- #1
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Перед прочтением основного контента ниже, пожалуйста, обратите внимание на обновление внутри секции Майна на нашем форуме. У нас появились:
- бесплатные читы для Майнкрафт — любое использование на свой страх и риск;
- маркетплейс Майнкрафт — абсолютно любая коммерция, связанная с игрой, за исключением продажи читов (аккаунты, предоставления услуг, поиск кодеров читов и так далее);
- приватные читы для Minecraft — в этом разделе только платные хаки для игры, покупайте группу "Продавец" и выставляйте на продажу свой софт;
- обсуждения и гайды — всё тот же раздел с вопросами, но теперь модернизированный: поиск нужных хаков, пати с игроками-читерами и другая полезная информация.
Спасибо!
Жаба:
private final BindSetting disorient = new BindSetting("Дезориентация", 0);
private final BindSetting trap = new BindSetting("Трапка", 0);
private final TimerUtil disorientTimer = new TimerUtil();
private final TimerUtil trapTimer = new TimerUtil();
public FTHelper() {
addSettings(new Setting[] { (Setting)this.disorient, (Setting)this.trap });
}
public void onEvent(Event event) {
if (event instanceof EventKey) {
EventKey eventKey = (EventKey)event;
if (eventKey.key == this.disorient.getKey() && this.disorientTimer.hasTimeElapsed(3000L) && mc.currentScreen == null) {
use(getDisorientAtHotBar(), getDisorientAtInventory());
this.disorientTimer.reset();
}
if (eventKey.key == this.trap.getKey() && this.trapTimer.hasTimeElapsed(3000L) && mc.currentScreen == null) {
use(getTrapAtHotBar(), getTrapAtInventory());
this.trapTimer.reset();
}
}
}
private void use(int n, int n2) {
if (n != -1) {
int n3 = mc.player.inventory.currentItem;
mc.player.inventory.currentItem = n;
mc.player.connection.sendPacket((IPacket)new CHeldItemChangePacket(n));
mc.player.connection.sendPacket((IPacket)new CPlayerTryUseItemPacket(Hand.MAIN_HAND));
mc.player.inventory.currentItem = n3;
mc.player.connection.sendPacket((IPacket)new CHeldItemChangePacket(n3));
} else if (n2 != -1) {
mc.playerController.windowClick(0, n2, mc.player.inventory.currentItem, ClickType.SWAP, (PlayerEntity)mc.player);
mc.player.connection.sendPacket((IPacket)new CPlayerTryUseItemPacket(Hand.MAIN_HAND));
mc.playerController.windowClick(0, n2, mc.player.inventory.currentItem, ClickType.SWAP, (PlayerEntity)mc.player);
}
this.disorientTimer.reset();
}
private int getDisorientAtHotBar() {
for (int i = 0; i < 9; ) {
ItemStack itemStack = mc.player.inventory.getStackInSlot(i);
if (itemStack.getItem() != Items.ENDER_EYE) {
i++;
continue;
}
return i;
}
return -1;
}
private int getTrapAtHotBar() {
for (int i = 0; i < 9; ) {
ItemStack itemStack = mc.player.inventory.getStackInSlot(i);
if (itemStack.getItem() != Items.NETHERITE_SCRAP) {
i++;
continue;
}
return i;
}
return -1;
}
private int getDisorientAtInventory() {
for (int i = 36; i >= 0; ) {
ItemStack itemStack = mc.player.inventory.getStackInSlot(i);
if (itemStack.getItem() != Items.ENDER_EYE) {
i--;
continue;
}
if (i < 9)
i += 36;
return i;
}
return -1;
}
private int getTrapAtInventory() {
for (int i = 36; i >= 0; ) {
ItemStack itemStack = mc.player.inventory.getStackInSlot(i);
if (itemStack.getItem() != Items.NETHERITE_SCRAP) {
i--;
continue;
}
if (i < 9)
i += 36;
return i;
}
return -1;
}
}