Звуки мобов

Статус
В этой теме нельзя размещать новые ответы.
Версия Minecraft
1.7.10
30
0
Неправильное оформление кода
Как указывать где находится звук?
Java:
protected String getDeathSound() {
        return Main.MODID+":sounds/sound_neobor_death";
    }
Я указал так,но оно не работает.Так же вот sounds.json
JSON:
{
  "neobor_sound":
{
    "category" : "hostile",
    "sounds": [
{
        "name": "neobor_sound",
        "stream": false
      }
    ]
  }
В краш логе пишет что невозможно произвести,почему?
Вот еще код моба
Java:
import java.util.Random;

import net.minecraft.entity.IRangedAttackMob;
import net.minecraft.entity.SharedMonsterAttributes;
import net.minecraft.entity.ai.EntityAIArrowAttack;
import net.minecraft.entity.ai.EntityAIAttackOnCollide;
import net.minecraft.entity.ai.EntityAIHurtByTarget;
import net.minecraft.entity.ai.EntityAILookIdle;
import net.minecraft.entity.ai.EntityAIMoveTowardsTarget;
import net.minecraft.entity.ai.EntityAINearestAttackableTarget;
import net.minecraft.entity.ai.EntityAISwimming;
import net.minecraft.entity.ai.EntityAIWander;
import net.minecraft.entity.ai.EntityAIWatchClosest;
import net.minecraft.entity.monster.EntityMob;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.world.World;
import ua.laker.rpgFreeder.main.Main;
import ua.laker.rpgFreeder.main.registry_class;

public class NeoborEntity extends EntityMob {
    public NeoborEntity(World par1World) {
        super(par1World);

           this.tasks.addTask(1, new  EntityAISwimming(this));
           this.tasks.addTask(2, new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.2D, false));
           this.tasks.addTask(3, new EntityAIWander(this, 1.0D));
           this.tasks.addTask(4, new EntityAIWatchClosest(this, EntityPlayer.class, 2.0F));
           this.tasks.addTask(5, new EntityAILookIdle(this)); 



           this.targetTasks.addTask(1, new EntityAIHurtByTarget(this, false));
           this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityPlayer.class, 0, true));
        
        
        
      
        



    }
    protected String getLivingSound() {
        return Main.MODID+":sounds/neobor_sound";
    }
    protected String getHurtSound() {
        return  Main.MODID+":sounds/sound_neobor_hurt";
      
    }
    protected String getDeathSound() {
        return Main.MODID+":sounds/sound_neobor_death";
    }
    protected float getSoundVolume() {
        return 5.0F;
    }
    @Override
protected void applyEntityAttributes() 
{ 
super.applyEntityAttributes();
   this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setBaseValue(60.0D);
   this.getEntityAttribute(SharedMonsterAttributes.followRange).setBaseValue(32.0D);
   this.getEntityAttribute(SharedMonsterAttributes.knockbackResistance).setBaseValue(0.0D);
   this.getEntityAttribute(SharedMonsterAttributes.movementSpeed).setBaseValue(0.4D);
   this.getEntityAttribute(SharedMonsterAttributes.attackDamage).setBaseValue(30.0D);



}
   public boolean isAIEnabled() {
       return true;
   }

     protected Item getDropItem(){
            return Main.dart ;
        }
        int random = registry_class.random(1, 4);
        public int quantityDropped(Random par1Random)
        {
            if(random!=0) {
                return random;
            }
            else {
                return 0;
            }
          
          
          
        }



}
[/ICODE]
 
Краш-лог
[01:38:21] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization
[01:38:21] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1614 Initialized
[01:38:21] [Client thread/INFO] [FML]: Replaced 183 ore recipies
[01:38:22] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization
[01:38:22] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[01:38:22] [Client thread/INFO] [FML]: Searching C:\Users\addky\Desktop\RpgFreeder\eclipse\mods for mods
[01:38:30] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
[01:38:31] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, rpgfreeder] at CLIENT
[01:38:31] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, rpgfreeder] at SERVER
[01:38:31] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:rpgfreeder
[01:38:31] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
[01:38:31] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations
[01:38:31] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
[01:38:31] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
[01:38:31] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[01:38:31] [Client thread/WARN] [FML]: ****************************************
[01:38:31] [Client thread/WARN] [FML]: * The object ua.laker.rpgFreeder.lenit.lenit_shovel@4ab2f15c has been registered twice for the same name rpgfreeder:item.lenit_shovel.
[01:38:31] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.FMLControlledNamespacedRegistry.add(FMLControlledNamespacedRegistry.java:405)
[01:38:31] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:849)
[01:38:31] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:812)
[01:38:31] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:149)
[01:38:31] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:137)
[01:38:31] [Client thread/WARN] [FML]: * at ua.laker.rpgFreeder.main.registry_class.enterniiItems(registry_class.java:148)...
[01:38:31] [Client thread/WARN] [FML]: ****************************************
[01:38:31] [Client thread/INFO] [FML]: Applying holder lookups
[01:38:31] [Client thread/INFO] [FML]: Holder lookups applied
[01:38:31] [Client thread/INFO] [FML]: Injecting itemstacks
[01:38:31] [Client thread/INFO] [FML]: Itemstack injection complete
[01:38:32] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[01:38:32] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
[01:38:32] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
[01:38:32] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
[01:38:32] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
[01:38:32] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[01:38:32] [Sound Library Loader/INFO]: Sound engine started
[01:38:34] [Client thread/WARN]: Invalid sounds.json
com.google.gson.JsonSyntaxException: java.io.EOFException: End of input at line 11 column 4
at com.google.gson.Gson.fromJson(Gson.java:813) ~[Gson.class:?]
at com.google.gson.Gson.fromJson(Gson.java:768) ~[Gson.class:?]
at net.minecraft.client.audio.SoundHandler.onResourceManagerReload(SoundHandler.java:84) [SoundHandler.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:130) [SimpleReloadableResourceManager.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:528) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:942) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_231]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
at GradleStart.main(Unknown Source) [start/:?]
Caused by: java.io.EOFException: End of input at line 11 column 4
at com.google.gson.stream.JsonReader.nextNonWhitespace(JsonReader.java:1377) ~[JsonReader.class:?]
at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:471) ~[JsonReader.class:?]
at com.google.gson.stream.JsonReader.hasNext(JsonReader.java:403) ~[JsonReader.class:?]
at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:184) ~[MapTypeAdapterFactory$Adapter.class:?]
at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:145) ~[MapTypeAdapterFactory$Adapter.class:?]
at com.google.gson.Gson.fromJson(Gson.java:803) ~[Gson.class:?]
... 14 more
[01:38:35] [Client thread/INFO]: Created: 16x16 textures/blocks-atlas
[01:38:35] [Client thread/INFO]: Created: 16x16 textures/items-atlas
[01:38:35] [Client thread/INFO] [FML]: Injecting itemstacks
[01:38:35] [Client thread/INFO] [FML]: Itemstack injection complete
[01:38:35] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
[01:38:35] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:rpgfreeder
[01:38:35] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
[01:38:36] [Client thread/INFO]: Created: 256x256 textures/items-atlas
[01:38:36] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[01:38:36] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...
[01:38:36] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com
[01:38:36] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[01:38:36] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[01:38:36] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
[01:38:36] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
[01:38:36] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
[01:38:36] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
[01:38:36] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[01:38:36] [Sound Library Loader/INFO]: Sound engine started
[01:38:37] [Client thread/WARN]: Invalid sounds.json
com.google.gson.JsonSyntaxException: java.io.EOFException: End of input at line 11 column 4
at com.google.gson.Gson.fromJson(Gson.java:813) ~[Gson.class:?]
at com.google.gson.Gson.fromJson(Gson.java:768) ~[Gson.class:?]
at net.minecraft.client.audio.SoundHandler.onResourceManagerReload(SoundHandler.java:84) [SoundHandler.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:143) [SimpleReloadableResourceManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?]
at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:654) [Minecraft.class:?]
at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:327) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:597) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:942) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_231]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
at GradleStart.main(Unknown Source) [start/:?]
Caused by: java.io.EOFException: End of input at line 11 column 4
at com.google.gson.stream.JsonReader.nextNonWhitespace(JsonReader.java:1377) ~[JsonReader.class:?]
at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:471) ~[JsonReader.class:?]
at com.google.gson.stream.JsonReader.hasNext(JsonReader.java:403) ~[JsonReader.class:?]
at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:184) ~[MapTypeAdapterFactory$Adapter.class:?]
at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:145) ~[MapTypeAdapterFactory$Adapter.class:?]
at com.google.gson.Gson.fromJson(Gson.java:803) ~[Gson.class:?]
... 17 more
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found.
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: DOMAIN rpgfreeder
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: --------------------------------------------------
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: domain rpgfreeder is missing 14 textures
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: domain rpgfreeder has 1 location:
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: mod rpgfreeder resources at C:\Users\addky\Desktop\RpgFreeder\bin
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: The missing resources for domain rpgfreeder are:
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/enternii_bow_pulling_2.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/enternii_stone.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/enternii_pick.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/enternii_axe.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/enternii_shard.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/enternii_wood.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/enternii_bow_pulling_0.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/enternii_dirt.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/dart.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/enternii_bow_pulling_1.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/enternii_leaves.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/enternii_ore.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/enternii_grass.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/enternii_bow_standby.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: No other errors exist for domain rpgfreeder
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[01:38:41] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10
[01:38:41] [Server thread/INFO]: Generating keypair
[01:38:42] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance
[01:38:42] [Server thread/INFO] [FML]: Applying holder lookups
[01:38:42] [Server thread/INFO] [FML]: Holder lookups applied
[01:38:42] [Server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@43810942)
[01:38:42] [Server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@43810942)
[01:38:42] [Server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@43810942)
[01:38:42] [Server thread/INFO]: Preparing start region for level 0
[01:38:43] [Server thread/INFO]: Preparing spawn area: 79%
[01:38:44] [Server thread/INFO]: Changing view distance to 2, from 10
[01:38:44] [Netty Client IO #0/INFO] [FML]: Server protocol version 2
[01:38:44] [Netty IO #1/INFO] [FML]: Client protocol version 2
[01:38:44] [Netty IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]
[01:38:44] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT
[01:38:44] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER
[01:38:44] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established
[01:38:44] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
[01:38:44] [Server thread/INFO]: Player136[local:E:982ee841] logged in with entity id 366 at (-53.49598544776329, 71.0, 215.57851958923726)
[01:38:44] [Server thread/INFO]: Player136 joined the game
[01:38:45] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[01:38:46] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/sound_neobor_hurt
[01:38:46] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[01:38:47] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/sound_neobor_hurt
[01:38:47] [Server thread/INFO]: Player136 has just earned the achievement [Taking Inventory]
[01:38:47] [Client thread/INFO]: [CHAT] Player136 has just earned the achievement [Taking Inventory]
[01:38:48] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[01:38:49] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/sound_neobor_hurt
[01:38:49] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/sound_neobor_hurt
[01:38:50] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/sound_neobor_hurt
[01:38:50] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[01:38:52] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[01:38:52] [Client thread/INFO]: Stopping!
[01:38:52] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[01:38:52] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...
[01:38:52] [Server thread/INFO]: Stopping server
[01:38:52] [Server thread/INFO]: Saving players
[01:38:53] [Server thread/INFO]: Saving worlds
[01:38:53] [Server thread/INFO]: Saving chunks for level 'New World'/Overworld
[01:38:53] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com
[01:38:53] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[01:38:53] [Client Shutdown Thread/INFO]: Stopping server
[01:38:53] [Client Shutdown Thread/INFO]: Saving players
Краш-лог:
[01:38:21] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization
[01:38:21] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1614 Initialized
[01:38:21] [Client thread/INFO] [FML]: Replaced 183 ore recipies
[01:38:22] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization
[01:38:22] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[01:38:22] [Client thread/INFO] [FML]: Searching C:\Users\addky\Desktop\RpgFreeder\eclipse\mods for mods
[01:38:30] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
[01:38:31] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, rpgfreeder] at CLIENT
[01:38:31] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, rpgfreeder] at SERVER
[01:38:31] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:rpgfreeder
[01:38:31] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
[01:38:31] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations
[01:38:31] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
[01:38:31] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
[01:38:31] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[01:38:31] [Client thread/WARN] [FML]: ****************************************
[01:38:31] [Client thread/WARN] [FML]: * The object ua.laker.rpgFreeder.lenit.lenit_shovel@4ab2f15c has been registered twice for the same name rpgfreeder:item.lenit_shovel.
[01:38:31] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.FMLControlledNamespacedRegistry.add(FMLControlledNamespacedRegistry.java:405)
[01:38:31] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:849)
[01:38:31] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:812)
[01:38:31] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:149)
[01:38:31] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:137)
[01:38:31] [Client thread/WARN] [FML]: *  at ua.laker.rpgFreeder.main.registry_class.enterniiItems(registry_class.java:148)...
[01:38:31] [Client thread/WARN] [FML]: ****************************************
[01:38:31] [Client thread/INFO] [FML]: Applying holder lookups
[01:38:31] [Client thread/INFO] [FML]: Holder lookups applied
[01:38:31] [Client thread/INFO] [FML]: Injecting itemstacks
[01:38:31] [Client thread/INFO] [FML]: Itemstack injection complete
[01:38:32] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
[01:38:32] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
[01:38:32] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
[01:38:32] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[01:38:32] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
[01:38:32] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
[01:38:32] [Sound Library Loader/INFO]: Sound engine started
[01:38:34] [Client thread/WARN]: Invalid sounds.json
com.google.gson.JsonSyntaxException: java.io.EOFException: End of input at line 11 column 4
	at com.google.gson.Gson.fromJson(Gson.java:813) ~[Gson.class:?]
	at com.google.gson.Gson.fromJson(Gson.java:768) ~[Gson.class:?]
	at net.minecraft.client.audio.SoundHandler.onResourceManagerReload(SoundHandler.java:84) [SoundHandler.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:130) [SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.Minecraft.startGame(Minecraft.java:528) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:942) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_231]
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
	at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
	at GradleStart.main(Unknown Source) [start/:?]
Caused by: java.io.EOFException: End of input at line 11 column 4
	at com.google.gson.stream.JsonReader.nextNonWhitespace(JsonReader.java:1377) ~[JsonReader.class:?]
	at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:471) ~[JsonReader.class:?]
	at com.google.gson.stream.JsonReader.hasNext(JsonReader.java:403) ~[JsonReader.class:?]
	at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:184) ~[MapTypeAdapterFactory$Adapter.class:?]
	at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:145) ~[MapTypeAdapterFactory$Adapter.class:?]
	at com.google.gson.Gson.fromJson(Gson.java:803) ~[Gson.class:?]
	... 14 more
[01:38:35] [Client thread/INFO]: Created: 16x16 textures/blocks-atlas
[01:38:35] [Client thread/INFO]: Created: 16x16 textures/items-atlas
[01:38:35] [Client thread/INFO] [FML]: Injecting itemstacks
[01:38:35] [Client thread/INFO] [FML]: Itemstack injection complete
[01:38:35] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
[01:38:35] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:rpgfreeder
[01:38:35] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
[01:38:36] [Client thread/INFO]: Created: 256x256 textures/items-atlas
[01:38:36] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
[01:38:36] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...
[01:38:36] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]:     Author: Paul Lamb, www.paulscode.com
[01:38:36] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
[01:38:36] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
[01:38:36] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
[01:38:36] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
[01:38:36] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[01:38:36] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
[01:38:36] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
[01:38:36] [Sound Library Loader/INFO]: Sound engine started
[01:38:37] [Client thread/WARN]: Invalid sounds.json
com.google.gson.JsonSyntaxException: java.io.EOFException: End of input at line 11 column 4
	at com.google.gson.Gson.fromJson(Gson.java:813) ~[Gson.class:?]
	at com.google.gson.Gson.fromJson(Gson.java:768) ~[Gson.class:?]
	at net.minecraft.client.audio.SoundHandler.onResourceManagerReload(SoundHandler.java:84) [SoundHandler.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:143) [SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:654) [Minecraft.class:?]
	at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:327) [FMLClientHandler.class:?]
	at net.minecraft.client.Minecraft.startGame(Minecraft.java:597) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:942) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_231]
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
	at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
	at GradleStart.main(Unknown Source) [start/:?]
Caused by: java.io.EOFException: End of input at line 11 column 4
	at com.google.gson.stream.JsonReader.nextNonWhitespace(JsonReader.java:1377) ~[JsonReader.class:?]
	at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:471) ~[JsonReader.class:?]
	at com.google.gson.stream.JsonReader.hasNext(JsonReader.java:403) ~[JsonReader.class:?]
	at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:184) ~[MapTypeAdapterFactory$Adapter.class:?]
	at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:145) ~[MapTypeAdapterFactory$Adapter.class:?]
	at com.google.gson.Gson.fromJson(Gson.java:803) ~[Gson.class:?]
	... 17 more
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found.
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]:   DOMAIN rpgfreeder
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: --------------------------------------------------
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]:   domain rpgfreeder is missing 14 textures
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]:     domain rpgfreeder has 1 location:
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]:       mod rpgfreeder resources at C:\Users\addky\Desktop\RpgFreeder\bin
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]:     The missing resources for domain rpgfreeder are:
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/enternii_bow_pulling_2.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/blocks/enternii_stone.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/enternii_pick.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/enternii_axe.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/enternii_shard.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/blocks/enternii_wood.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/enternii_bow_pulling_0.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/blocks/enternii_dirt.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/dart.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/enternii_bow_pulling_1.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/blocks/enternii_leaves.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/blocks/enternii_ore.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/blocks/enternii_grass.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/enternii_bow_standby.png
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]:     No other errors exist for domain rpgfreeder
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[01:38:38] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[01:38:41] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10
[01:38:41] [Server thread/INFO]: Generating keypair
[01:38:42] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance
[01:38:42] [Server thread/INFO] [FML]: Applying holder lookups
[01:38:42] [Server thread/INFO] [FML]: Holder lookups applied
[01:38:42] [Server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@43810942)
[01:38:42] [Server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@43810942)
[01:38:42] [Server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@43810942)
[01:38:42] [Server thread/INFO]: Preparing start region for level 0
[01:38:43] [Server thread/INFO]: Preparing spawn area: 79%
[01:38:44] [Server thread/INFO]: Changing view distance to 2, from 10
[01:38:44] [Netty Client IO #0/INFO] [FML]: Server protocol version 2
[01:38:44] [Netty IO #1/INFO] [FML]: Client protocol version 2
[01:38:44] [Netty IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]
[01:38:44] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT
[01:38:44] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER
[01:38:44] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established
[01:38:44] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
[01:38:44] [Server thread/INFO]: Player136[local:E:982ee841] logged in with entity id 366 at (-53.49598544776329, 71.0, 215.57851958923726)
[01:38:44] [Server thread/INFO]: Player136 joined the game
[01:38:45] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[01:38:46] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/sound_neobor_hurt
[01:38:46] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[01:38:47] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/sound_neobor_hurt
[01:38:47] [Server thread/INFO]: Player136 has just earned the achievement [Taking Inventory]
[01:38:47] [Client thread/INFO]: [CHAT] Player136 has just earned the achievement [Taking Inventory]
[01:38:48] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[01:38:49] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/sound_neobor_hurt
[01:38:49] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/sound_neobor_hurt
[01:38:50] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/sound_neobor_hurt
[01:38:50] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[01:38:52] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[01:38:52] [Client thread/INFO]: Stopping!
[01:38:52] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
[01:38:52] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...
[01:38:52] [Server thread/INFO]: Stopping server
[01:38:52] [Server thread/INFO]: Saving players
[01:38:53] [Server thread/INFO]: Saving worlds
[01:38:53] [Server thread/INFO]: Saving chunks for level 'New World'/Overworld
[01:38:53] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]:     Author: Paul Lamb, www.paulscode.com
[01:38:53] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
[01:38:53] [Client Shutdown Thread/INFO]: Stopping server
[01:38:53] [Client Shutdown Thread/INFO]: Saving players
Последнее редактирование модератором:
3,005
192
592
У тебя 4 скобки которые открываются и 3 которые закрываются.
Ничего не смущает?
 
1,038
57
229
30
0
посмотрел источники,там так записано
JSON:
{
  "ambient.cave.cave": {
    "category": "ambient",
    "sounds": [
      "ambient/cave/cave1",
      "ambient/cave/cave10",
      "ambient/cave/cave11",
      "ambient/cave/cave12",
      "ambient/cave/cave13",
      "ambient/cave/cave2",
      "ambient/cave/cave3",
      "ambient/cave/cave4",
      "ambient/cave/cave5",
      "ambient/cave/cave6",
      "ambient/cave/cave7",
      "ambient/cave/cave8",
      "ambient/cave/cave9"
    ]
  }
Переделал по этому примеру,вот что получилось
JSON:
{
  "neobor_sound":
{
    "category" : "hostile",
    "sounds": [

       "neobor_sound"
       
    ]
  }
}
На сайте ошибок не выдает
Звуков в игре нету
 
1,038
57
229
надо нажать на стрелку
f97ad72c1a.jpg

это означает что количество открытых и закрытых скобок (фигурных, толстых, худых, квадратных, круглых, черных) не совпадает
 
1,038
57
229
тогда пиши лог ошибки снова сюда, даже если ты считаешь что он не изменился. Мог измениться номер строки или тип ошибки.

конкретно тут ошибка в 11ой строке в файле sounds.json в 4ом символе (может быть так что ошибка идёт выше или чуть ниже в следующей строке)
[01:38:34] [Client thread/WARN]: Invalid sounds.json com.google.gson.JsonSyntaxException: java.io.EOFException: End of input at line 11 column 4
 
30
0
Java:
[16:43:03] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization
[16:43:03] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1614 Initialized
[16:43:03] [Client thread/INFO] [FML]: Replaced 183 ore recipies
[16:43:03] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization
[16:43:03] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[16:43:03] [Client thread/INFO] [FML]: Searching C:\Users\addky\Desktop\RpgFreeder\eclipse\mods for mods
[16:43:08] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
[16:43:08] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, rpgfreeder] at CLIENT
[16:43:08] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, rpgfreeder] at SERVER
[16:43:08] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:rpgfreeder
[16:43:08] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
[16:43:08] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations
[16:43:08] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
[16:43:08] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
[16:43:08] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[16:43:08] [Client thread/WARN] [FML]: [B][B][B][B][B][B][B][B][B]****[/B][/B][/B][/B][/B][/B][/B][/B][/B]
[16:43:08] [Client thread/WARN] [FML]: * The object ua.laker.rpgFreeder.lenit.lenit_shovel@4ab2f15c has been registered twice for the same name rpgfreeder:item.lenit_shovel.
[16:43:08] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.FMLControlledNamespacedRegistry.add(FMLControlledNamespacedRegistry.java:405)
[16:43:08] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:849)
[16:43:08] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:812)
[16:43:08] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:149)
[16:43:08] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:137)
[16:43:08] [Client thread/WARN] [FML]: *  at ua.laker.rpgFreeder.main.registry_class.enterniiItems(registry_class.java:148)...
[16:43:08] [Client thread/WARN] [FML]: [B][B][B][B][B][B][B][B][B]****[/B][/B][/B][/B][/B][/B][/B][/B][/B]
[16:43:08] [Client thread/INFO] [FML]: Applying holder lookups
[16:43:08] [Client thread/INFO] [FML]: Holder lookups applied
[16:43:08] [Client thread/INFO] [FML]: Injecting itemstacks
[16:43:08] [Client thread/INFO] [FML]: Itemstack injection complete
[16:43:08] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[16:43:08] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
[16:43:08] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
[16:43:08] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[16:43:09] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
[16:43:09] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[16:43:09] [Sound Library Loader/INFO]: Sound engine started
[16:43:09] [Client thread/INFO]: Created: 16x16 textures/blocks-atlas
[16:43:09] [Client thread/INFO]: Created: 16x16 textures/items-atlas
[16:43:09] [Client thread/INFO] [FML]: Injecting itemstacks
[16:43:09] [Client thread/INFO] [FML]: Itemstack injection complete
[16:43:09] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
[16:43:09] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:rpgfreeder
[16:43:10] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
[16:43:10] [Client thread/INFO]: Created: 256x256 textures/items-atlas
[16:43:10] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[16:43:10] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...
[16:43:10] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]:     Author: Paul Lamb, www.paulscode.com
[16:43:10] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[16:43:10] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[16:43:10] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
[16:43:10] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
[16:43:10] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[16:43:10] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
[16:43:11] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[16:43:11] [Sound Library Loader/INFO]: Sound engine started
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found.
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]:   DOMAIN rpgfreeder
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]: --------------------------------------------------
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]:   domain rpgfreeder is missing 14 textures
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]:     domain rpgfreeder has 1 location:
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]:       mod rpgfreeder resources at C:\Users\addky\Desktop\RpgFreeder\bin
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]:     The missing resources for domain rpgfreeder are:
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/enternii_bow_pulling_2.png
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/blocks/enternii_stone.png
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/enternii_pick.png
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/enternii_axe.png
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/enternii_shard.png
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/blocks/enternii_wood.png
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/enternii_bow_pulling_0.png
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/blocks/enternii_dirt.png
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/dart.png
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/enternii_bow_pulling_1.png
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/blocks/enternii_leaves.png
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/blocks/enternii_ore.png
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/blocks/enternii_grass.png
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/enternii_bow_standby.png
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]:     No other errors exist for domain rpgfreeder
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[16:43:11] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[16:43:21] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10
[16:43:21] [Server thread/INFO]: Generating keypair
[16:43:21] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance
[16:43:21] [Server thread/INFO] [FML]: Applying holder lookups
[16:43:21] [Server thread/INFO] [FML]: Holder lookups applied
[16:43:21] [Server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@741b0f34)
[16:43:21] [Server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@741b0f34)
[16:43:21] [Server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@741b0f34)
[16:43:21] [Server thread/INFO]: Preparing start region for level 0
[16:43:22] [Server thread/INFO]: Changing view distance to 2, from 10
[16:43:22] [Netty Client IO #0/INFO] [FML]: Server protocol version 2
[16:43:22] [Netty IO #1/INFO] [FML]: Client protocol version 2
[16:43:22] [Netty IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]
[16:43:22] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT
[16:43:22] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER
[16:43:22] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established
[16:43:22] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
[16:43:22] [Server thread/INFO]: Player163[local:E:45c703b9] logged in with entity id 352 at (-30.273191317441157, 68.0, 239.53459233754413)
[16:43:22] [Server thread/INFO]: Player163 joined the game
[16:43:23] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:23] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:24] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:24] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/sound_neobor_hurt
[16:43:25] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/sound_neobor_hurt
[16:43:25] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:27] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:27] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:28] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:28] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:28] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/sound_neobor_hurt
[16:43:28] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:30] [Server thread/INFO]: Player163 has just earned the achievement [Taking Inventory]
[16:43:30] [Client thread/INFO]: [CHAT] Player163 has just earned the achievement [Taking Inventory]
[16:43:31] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:33] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:34] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:34] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:35] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:37] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:39] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:40] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:41] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:41] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:45] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:45] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:46] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:47] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:47] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:50] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:51] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:52] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:54] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:55] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:43:57] [Client thread/WARN]: Unable to play unknown soundEvent: rpgfreeder:sounds/neobor_sound
[16:44:00] [Client thread/INFO]: Stopping!
[16:44:00] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[16:44:00] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...
[16:44:00] [Server thread/INFO]: Stopping server
[16:44:00] [Server thread/INFO]: Saving players
[16:44:00] [Server thread/INFO]: Saving worlds
[16:44:00] [Server thread/INFO]: Saving chunks for level 'New World'/Overworld
[16:44:01] [Server thread/INFO]: Saving chunks for level 'New World'/Nether
[16:44:01] [Server thread/INFO]: Saving chunks for level 'New World'/The End
[16:44:01] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]:     Author: Paul Lamb, www.paulscode.com
[16:44:01] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[16:44:01] [Client Shutdown Thread/INFO]: Stopping server
[16:44:01] [Client Shutdown Thread/INFO]: Saving players
Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release
 
1,038
57
229
ошибок нет, ругается разве что на отсутствие текстур и то что не может проиграть твои файлы (у них были там какие то требования то ли 8 бит, то ли битрейт 44500кб)
 
1,038
57
229
у тебя ogg или wave?
 
1,038
57
229
судя поэтому, он его просто не может найти или ты не правильно его регистрируешь или проигрываешь Никак не получается зарегистрировать звук моба
ну и покажи где они у тебя лежат..
должно быть так assets/<modname>/sounds/<path>.ogg
второй момент
0fff40336b.jpg

в имени должен быть указан ID мода, даже тут об этом написано
6dcff06729.jpg

ну и раз ты не указал modid, то он ищет его внутри minecraft.jar (скорее всего)
 
Последнее редактирование:
30
0
Java:
public class SoundRegister
{
        public static final SoundEvent NEOBOR_LIVING = reg("neobor_sound");

        @SubscribeEvent
        public void regSound(RegistryEvent.Register<SoundEvent> e)
        {
            ForgeRegistries.SOUND_EVENTS.register(NEOBOR_LIVING);
        }

        private static SoundEvent reg(String name)
        {
            ResourceLocation rl = new ResourceLocation("rpgfreeder", name);
            return new SoundEvent(rl).setRegistryName(rl);
        }
    }
да,лежат так,пробую регистрировать как ты по ссылке сказал,у меня ошибки
 
1,038
57
229
Последнее редактирование:
Статус
В этой теме нельзя размещать новые ответы.
Сверху