14 août 2015, 22:32

Bonsoir,
j’aimerai savoir comment faire pour que les joueurs autour de moi puisse entendre mon son.
Merci!
PS: En Multijoueur.

code:

@SubscribeEvent
public void onEvent(KeyInputEvent event)
{
if(keyBindPolice.isPressed())
{
keyTestTyped();
}

}
private void keyTestTyped()
{
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.GyroPolice)){

                if(true){
                Minecraft.getMinecraft().getSoundHandler().playSound(PositionedSoundRecord.func_147674_a(new ResourceLocation("amm:AK47Shoot"), 1.0F));
                }
            }
        }