Bonjour,
alors j’ai pas trop bien compris le tutoriel du coup si vous pouvez m’aider en m’indiquant le code merci.
Je suis bloquer je ne sais pas quoi faire .
Pour info j’ai pas de son quand je presse ma touche.
Alors mes code ressemble a ça:
Main Class:
| public static SimpleNetworkWrapper samu; |
| |
| samu = NetworkRegistry.INSTANCE.newSimpleChannel("amm"); |
| |
| samu.registerMessage(PacketSamu.Handler.class, PacketSamu.class, 0, Side.SERVER); |
Packet Samu:
| import net.minecraft.entity.player.EntityPlayerMP; |
| import net.minecraft.world.World; |
| import io.netty.buffer.ByteBuf; |
| import cpw.mods.fml.client.FMLClientHandler; |
| import cpw.mods.fml.common.network.simpleimpl.IMessage; |
| import cpw.mods.fml.common.network.simpleimpl.IMessageHandler; |
| import cpw.mods.fml.common.network.simpleimpl.MessageContext; |
| |
| public class PacketSamu implements IMessage{ |
| private boolean samu; |
| public PacketSamu(){ |
| |
| } |
| public PacketSamu(boolean samu, int x, int y, int z){ |
| this.samu = samu; |
| } |
| |
| @Override |
| public void fromBytes(ByteBuf buf) { |
| this.samu = buf.readBoolean(); |
| |
| } |
| |
| @Override |
| public void toBytes(ByteBuf buf) { |
| buf.writeBoolean(this.samu); |
| |
| } |
| |
| public static class Handler implements IMessageHandler <packetsamu, imessage="">{ |
| |
| @Override |
| public IMessage onMessage(PacketSamu message, MessageContext ctx) { |
| EntityPlayerMP player = ctx.getServerHandler().playerEntity; |
| World world = FMLClientHandler.instance().getWorldClient(); |
| if(player.capabilities.isCreativeMode){ |
| if(player.inventory.hasItem(AltisMineMod.GyroSamu)){ |
| |
| if(true){ |
| world.playSoundAtEntity(player, "amm:BarrettShoot:", 1.0F, 1.0F); |
| } |
| |
| } |
| } |
| return null; |
| } |
| |
| } |
| |
| } |
Client Proxy avec la touche pour activé le son:
| @SubscribeEvent |
| public void onEvent4(KeyInputEvent event) |
| { |
| if(keyBindSamu.isPressed()) |
| { |
| keyTestTyped3(); |
| } |
| |
| } |
| private void keyTestTyped3() |
| { |
| EntityPlayer player = Minecraft.getMinecraft().thePlayer; |
| MinecraftServer server = FMLCommonHandler.instance().getMinecraftServerInstance(); |
| World world = FMLClientHandler.instance().getWorldClient(); |
| { |
| int playerX = MathHelper.floor_double(player.posX); |
| int playerZ = MathHelper.floor_double(player.posZ); |
| for(int x = playerX - 3; x < playerX + 3; x++) |
| { |
| for(int z = playerZ - 3; z < playerZ + 3; z++) |
| { |
| if(x != playerX && z != playerZ) |
| { |
| if(player.capabilities.isCreativeMode){ |
| if(player.inventory.hasItem(AltisMineMod.GyroSamu)){ |
| |
| if(true){ |
| |
| } |
| } |
| } |
| } |
| } |
| |
| } |
| |
| } |
| } |
| |
| } |
| |
Merci d’avance Flo.</packetsamu,>