/
Belyash5
/
Flu
Обзор
Документация
Войти
/
Belyash5
/
Flu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/com/hbm/items/machine/ItemReactorSensor.java
60 строк
2 KB
Boblet
radioactive crates, containment box
21 фев 2023, 15:14
21 фев 2023, 15:14
a7e51e6
Код
Авторство
О чём код?
package com.hbm.items.machine; import java.util.List; import com.hbm.blocks.ModBlocks; import com.hbm.util.ChatBuilder; import net.minecraft.block.Block; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.util.EnumChatFormatting; import net.minecraft.world.World; public class ItemReactorSensor extends Item { @Override public boolean onItemUse(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int p_77648_7_, float p_77648_8_, float p_77648_9_, float p_77648_10_) { Block b = world.getBlock(x, y, z); if (b == ModBlocks.reactor_research) { if(stack.stackTagCompound == null) stack.stackTagCompound = new NBTTagCompound(); if(!world.isRemote) { player.addChatMessage(ChatBuilder.start("[").color(EnumChatFormatting.DARK_AQUA) .nextTranslation(this.getUnlocalizedName() + ".name").color(EnumChatFormatting.DARK_AQUA) .next("] ").color(EnumChatFormatting.DARK_AQUA) .next("Position set!").color(EnumChatFormatting.GREEN).flush()); } stack.stackTagCompound.setInteger("x", x); stack.stackTagCompound.setInteger("y", y); stack.stackTagCompound.setInteger("z", z); world.playSoundAtEntity(player, "hbm:item.techBoop", 1.0F, 1.0F); player.swingItem(); return true; } return false; } @Override public void addInformation(ItemStack itemstack, EntityPlayer player, List list, boolean bool) { if (itemstack.stackTagCompound != null) { list.add("x: " + itemstack.stackTagCompound.getInteger("x")); list.add("y: " + itemstack.stackTagCompound.getInteger("y")); list.add("z: " + itemstack.stackTagCompound.getInteger("z")); } else { list.add("No reactor selected!"); } } }