Jump to content

ChaKha

Members
  • Posts

    23
  • Joined

  • Last visited

Everything posted by ChaKha

  1. I'm trying to update some code I wrote for a 1.8 mod to 1.9, but I ran into a snag. My class implemented IExtendedEntityProperties back in 1.8, but that doesn't seem to exist in 1.9. What do I need to edit or take a look at so that my save/loadNBTData methods work properly?
  2. Thanks! I spawned it on the client and it worked. I modified the code from Jabelar's particle tutorial for anyone who wants to know.
  3. Alright, so I've run into a problem while trying to spawn particles. I believe I'm using the spawnParticle method correctly, as it's mostly copy/pasted from the enderpearl source code, yet I don't see any particles when I run the code (yes, my video settings are set to 'All' for particles). This is being called in an onEntityItemUpdate(...) method in a custom item class I wrote (the item has its own custom entityItem). Any help solving this conundrum would be appreciated. onEntityItemUpdate method: P.S I've tried the onEntityItemUpdate code both in that method and in the EntityItem's onUpdate method.
  4. Alright, so Jabelar and jeffryfisher were correct, I had overlooked the parameters (the lists in specific). All I needed to do was to correct them as jeffryfisher had done above. Thanks all of you!
  5. I definitely included more than just the method stubs, sorry if it wasn't clear that I was omitting the rest of the code!
  6. Hello, So I've been trying to get this ItemBlock going, but I've run into a snag. These two methods: @SideOnly(Side.CLIENT) @Override public void addInformation(ItemStack stack, EntityPlayer playerIn, List<String> tooltip, boolean advanced) @SideOnly(Side.CLIENT) @Override public void getSubItems(Item itemIn, CreativeTabs tab, List<ItemStack> subItems) I'm trying to override these methods from the original ItemBlock/Item classes, but I keep recieving the message (from eclipse) that I can't override them and that it's causing a name clash. Any solutions or work-arounds would be greatly appreciated. Edit: Using forge version 1.8-11.14.4.1577.
  7. Alright, so I changed the code to: double prevHeight = posY; for (int i = 0; i < partArray.length; i++) { partArray[i].setPosition(posX, ((30 - (2 * i)) / 16) + prevHeight, posZ); prevHeight = ((30 - (2 * i)) / 16) + prevHeight; } However, nothing appears to have changed. Did I do it wrong?
  8. Except that I can't see them... Edit: Here's what I do see though, just the one big box that I had already set in the constructor:
  9. Correct. Do you mean something like this: public void onLivingUpdate() { int prevHeight = 0; for (int i = 0; i < partArray.length; i++) { partArray[i].setPosition(0, ((30 - (2 * i)) / 16) + prevHeight, 0); prevHeight = ((30 - (2 * i)) / 16) + prevHeight; } } I ran the game with that bit of code in, but I still can't hit it correctly. Is there a way I could see the hitboxes so I can position them better, or is that not the issue?
  10. Alright. So, all I have really tried so far is copy/editing code from the enderdragon and some other mods that included complex hitbox entities. If you want to see exactly what I've done, then here's the very incomplete entity class: public class EntityNWPlantBossTendril extends EntityLiving implements IEntityMultiPart { public double targetX; public double targetY; public double targetZ; private static int MAX_HEALTH = 50; private static float ARMOR_MULTIPLIER = 2F; public Entity[] partArray; public EntityDragonPart tendrilBase; public EntityDragonPart tendrilPart1; public EntityDragonPart tendrilPart2; public EntityDragonPart tendrilPart3; public EntityDragonPart tendrilPart4; public EntityDragonPart tendrilPart5; public EntityDragonPart tendrilPart6; public EntityDragonPart tendrilPart7; public EntityDragonPart tendrilPart8; public EntityDragonPart tendrilPart9; public EntityDragonPart tendrilPart10; public EntityDragonPart tendrilPart11; public EntityDragonPart tendrilPart12; public EntityDragonPart tendrilPart13; public EntityDragonPart tendrilPart14; public EntityNWPlantBoss master; public EntityNWPlantBossTendril(World world) { super(world); partArray = (new Entity[] { tendrilBase = new EntityDragonPart(this, "base", 4F, 4F), tendrilPart1 = new EntityDragonPart(this, "tendrilPart1", 10.0F, 10.0F), tendrilPart2 = new EntityDragonPart(this, "tendrilPart2", 10.0F, 10.0F), tendrilPart3 = new EntityDragonPart(this, "tendrilPart3", 10.0F, 10.0F), tendrilPart4 = new EntityDragonPart(this, "tendrilPart4", 10.0F, 10.0F), tendrilPart5 = new EntityDragonPart(this, "tendrilPart5", 10.0F, 10.0F), tendrilPart6 = new EntityDragonPart(this, "tendrilPart6", 10.0F, 10.0F), tendrilPart7 = new EntityDragonPart(this, "tendrilPart7", 10.0F, 10.0F), tendrilPart8 = new EntityDragonPart(this, "tendrilPart8", 10.0F, 10.0F), tendrilPart9 = new EntityDragonPart(this, "tendrilPart9", 10.0F, 10.0F), tendrilPart10 = new EntityDragonPart(this, "tendrilPart10", 10.0F, 10.0F), tendrilPart11 = new EntityDragonPart(this, "tendrilPart11", 10.0F, 10.0F), tendrilPart12 = new EntityDragonPart(this, "tendrilPart12", 10.0F, 10.0F), tendrilPart13 = new EntityDragonPart(this, "tendrilPart13", 10.0F, 10.0F), tendrilPart14 = new EntityDragonPart(this, "tendrilPart14", 10.0F, 10.0F) }); setSize(2.125F, 15.0F); ignoreFrustumCheck = true; experienceValue = 20;//WIP } public EntityNWPlantBossTendril(World world, double x, double y, double z) { this(world); setPosition(x, y, z); } protected void applyEntityAttributes() { super.applyEntityAttributes(); getEntityAttribute(SharedMonsterAttributes.knockbackResistance).setBaseValue(1.0D); getEntityAttribute(SharedMonsterAttributes.maxHealth).setBaseValue(MAX_HEALTH); getEntityAttribute(SharedMonsterAttributes.movementSpeed).setBaseValue(0.0D); } public void onLivingUpdate() { //WIP } public EnumCreatureAttribute getCreatureAttribute() { return EnumCreatureAttribute.UNDEFINED; } protected void entityInit() { super.entityInit(); } public void writeToNBT(NBTTagCompound nbttagcompound) { super.writeToNBT(nbttagcompound); } public void readFromNBT(NBTTagCompound nbttagcompound) { super.readFromNBT(nbttagcompound); } public boolean attackEntityFromPart(EntityDragonPart dragonPart, DamageSource dmgSrc, float f0) { int armoredDamage = Math.round(f0 / ARMOR_MULTIPLIER); double range = calculateRange(dmgSrc); if (range > 14D) return false; else return superAttackFrom(dmgSrc, armoredDamage); } protected boolean superAttackFrom(DamageSource dmgSrc, float f0) { return super.attackEntityFrom(dmgSrc, f0); } protected double calculateRange(DamageSource dmgSrc) { double range = -1D; if (dmgSrc.getEntity() != null) { range = getDistanceSqToEntity(dmgSrc.getEntity()); } if (dmgSrc.getSourceOfDamage() != null) { range = getDistanceSqToEntity(dmgSrc.getSourceOfDamage()); } return range; } public boolean attackEntityFrom(DamageSource dmgSrc, float f0) { return false; } public Entity[] getParts() { return partArray; } public boolean isEntityInvulnerable() { return false; } public boolean canDespawn() { return false; } public void knockBack(Entity entity1, float f, double d2, double d3) {} protected String getLivingSound() { return "mob.enderdragon.growl";//Test sounds } protected String getHurtSound() { return "mob.enderdragon.hit"; } protected String getDeathSound() { return "mob.enderdragon.death"; } protected float getSoundVolume() { return 2.0F; } public void onDeath(DamageSource dmgSrc) { super.onDeath(dmgSrc); } protected void dropFewItems(boolean par1, int par2) { //WIP } protected boolean isAIEnabled() { return false; } public boolean canBeCollidedWith() { return true; } protected void onDeathUpdate() { //Death anim stuff here } public World func_82194_d() { return worldObj; } } My first issue that I've come across is that whenever I attempt to attack my entity, it doesn't take damage. I realize I set the attackEntityFrom to return false, but I want to be able to tell which hitbox of the entity was hit (I assumed attackEntityFromPart would do the trick). How can I fix this? I also have a question: does each sub-entity of the mob have to be my own custom part entity, or can they just be dragonParts? Should I be using onUpdate() or onLivingUpdate()? Finally, here is a picture of the mob (WIP). Each box is intended to have its own hitbox, including the parent entity on the bottom.
  11. Hello, I've been making a few posts recently on the forums about small, random problems that have to do with a multipart mob I'm attempting to create. However, I've run into so many issues making it that I think my problem is that I don't fully understand how to make a multipart entity. I'm already fully aware of how to completely make a single entity (thanks to some Jabelar tutorials ). So, here's what I'm hoping someone can provide: Is there any sort of tutorial or guidance on making a multipart entity besides studying the enderdragon code (as I've already done that)? I apologize if I'm simply missing some obvious facts, but I need help. Thanks for reading at least!
  12. Hello, I've been trying to make an entity made of multiple parts, therefore it can have multiple hitboxes. However, the problem is that I can't see the hitboxes by pressing f3 + B. I saw a post (http://www.minecraftforge.net/forum/index.php/topic,6258.0.html) with code making them visible, but I can't place it anywhere in my mod properly. So, where do I need to put this code, or is there an easier way now?
  13. Hello, I've been making my own custom mob for a while now, and I've come across this issue. My mob is pretty tall (about 15 blocks tall if you want numbers), so whenever I look up at it and don't look at its base (on the ground), it disappears. Whenever I look back down at its base, it pops back up. How can I fix it to be rendered persistently or something like that? Thanks for reading!
  14. Hello, I've been dealing with a bit of a problem for quite a while now with my modded server. My server goes down to restart on a regular basis, but every now and then it won't start back up. This will continue for a few hours even if I try manually starting the server. There is no log, and no crash report. The console just freezes. It usually stops after it's loaded the default config, but it will also stop after a few launch wrappers run. It's also a bit annoying to find my server randomly able to start up perfectly fine a few hours afterwards. Why is this happening, and why is it so inconsistent?
  15. Thanks! setUnlocalizedName was unavailable (which was what I was trying to do), but setBlockName did the trick!
  16. Hello, I'm having a bit of trouble with my custom bean block. Whenever I load it in minecraft, it's displayed as tile.null.name instead of tile.BlockBean.name. What do I need to do to fix this? Code for BlockBean class: public class BlockBean extends BlockBush implements IGrowable { protected int maxGrowthStage = 7; @SideOnly(Side.CLIENT) protected IIcon[] iIcon; public BlockBean() { // Basic block setup setTickRandomly(true); float f = 0.5F; setBlockBounds(0.5F - f, 0.0F, 0.5F - f, 0.5F + f, 0.25F, 0.5F + f); setCreativeTab(CreativeTabs.tabMisc); setHardness(0.0F); setStepSound(soundTypeGrass); disableStats(); } @Override protected boolean canPlaceBlockOn(Block parBlock) { return parBlock == Blocks.farmland; } public void incrementGrowStage(World parWorld, Random parRand, int parX, int parY, int parZ) { int growStage = parWorld.getBlockMetadata(parX, parY, parZ) + MathHelper.getRandomIntegerInRange(parRand, 2, 5); if (growStage > maxGrowthStage) growStage = maxGrowthStage; parWorld.setBlockMetadataWithNotify(parX, parY, parZ, growStage, 2); } @Override public Item getItemDropped(int p_149650_1_, Random parRand, int parFortune) { return CommonProxy.itemBean; } @Override public int getRenderType() { return 1; // Cross like flowers } @Override @SideOnly(Side.CLIENT) public IIcon getIcon(int parSide, int parGrowthStage) { return iIcon[parGrowthStage]; } @Override public void updateTick(World parWorld, int parX, int parY, int parZ, Random parRand) { super.updateTick(parWorld, parX, parY, parZ, parRand); int growStage = parWorld.getBlockMetadata(parX, parY, parZ) + 1; if (growStage > 7) growStage = 7; parWorld.setBlockMetadataWithNotify(parX, parY, parZ, growStage, 2); } @Override public int quantityDropped(Random rand) { return 1; } @Override @SideOnly(Side.CLIENT) public void registerBlockIcons(IIconRegister parIIconRegister) { iIcon = new IIcon[maxGrowthStage + 1]; // seems that crops like to have 8 growth icons, but okay to repeat actual texture if you want // to make generic should loop to maxGrowthStage iIcon[0] = parIIconRegister.registerIcon("nw:BlockBean_stage_0"); iIcon[1] = parIIconRegister.registerIcon("nw:BlockBean_stage_1"); iIcon[2] = parIIconRegister.registerIcon("nw:BlockBean_stage_2"); iIcon[3] = parIIconRegister.registerIcon("nw:BlockBean_stage_3"); iIcon[4] = parIIconRegister.registerIcon("nw:BlockBean_stage_4"); iIcon[5] = parIIconRegister.registerIcon("nw:BlockBean_stage_5"); iIcon[6] = parIIconRegister.registerIcon("nw:BlockBean_stage_6"); iIcon[7] = parIIconRegister.registerIcon("nw:BlockBean_stage_7"); } /* * Need to implement the IGrowable interface methods */ @Override // checks if finished growing (a grow stage of 7 is final stage) public boolean func_149851_a(World parWorld, int parX, int parY, int parZ, boolean p_149851_5_) { return parWorld.getBlockMetadata(parX, parY, parZ) != 7; } @Override public boolean func_149852_a(World p_149852_1_, Random parRand, int p_149852_3_, int p_149852_4_, int p_149852_5_) { return true; } @Override public void func_149853_b(World parWorld, Random parRand, int parX, int parY, int parZ) { incrementGrowStage(parWorld, parRand, parX, parY, parZ); } }
  17. Oops, forgot about that Very entertaining way of sending the message btw. Here's the log: [17:09:22] [main/INFO]: Setting user: chahiro123 [17:09:23] [Client thread/INFO]: LWJGL Version: 2.9.1 [17:09:37] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Not Enough Items, FMLFileResourcePack:Ars Magica 2, FMLFileResourcePack:AnimationAPI, FMLFileResourcePack:Applied Energistics 2, FMLFileResourcePack:Big Reactors, FMLFileResourcePack:Botany, FMLFileResourcePack:Binnie Core, FMLFileResourcePack:Extra Bees, FMLFileResourcePack:Extra Trees, FMLFileResourcePack:Genetics, FMLFileResourcePack:Blood Magic: Alchemical Wizardry, FMLFileResourcePack:Botania, FMLFileResourcePack:BC Silicon, FMLFileResourcePack:BuildCraft, FMLFileResourcePack:BC Transport, FMLFileResourcePack:BC Builders, FMLFileResourcePack:BC Energy, FMLFileResourcePack:BC Factory, FMLFileResourcePack:BuildCraft Compat, FMLFileResourcePack:Carpenter's Blocks, FMLFileResourcePack:Chisel 2, FMLFileResourcePack:CoFH Core, FMLFileResourcePack:Colorful Mobs, FMLFileResourcePack:ComputerCraft, FMLFileResourcePack:Cosmetic Armor, FMLFileResourcePack:CustomNpcs, FMLFileResourcePack:Description Tags, FMLFileResourcePack:Draconic Evolution, FMLFileResourcePack:Ender IO, FMLFileResourcePack:EnderStorage, FMLFileResourcePack:Ender Zoo, FMLFileResourcePack:Extra Utilities, FMLFileResourcePack:The Farlanders, FMLFileResourcePack:Forbidden Magic, FMLFileResourcePack:Forestry for Minecraft, FMLFileResourcePack:Forge Essentials, FMLFileResourcePack:Gany's End, FMLFileResourcePack:Gany's Nether, FMLFileResourcePack:Gany's Surface, FMLFileResourcePack:Garden Containers, FMLFileResourcePack:Garden Core, FMLFileResourcePack:Garden Stuff, FMLFileResourcePack:Garden Trees, FMLFileResourcePack:GraveStone, FMLFileResourcePack:Highlands, FMLFileResourcePack:Infernal Mobs, FMLFileResourcePack:Inventory Tweaks, FMLFileResourcePack:Iron Chest, FMLFileResourcePack:JABBA, FMLFileResourcePack:Mantle, FMLFileResourcePack:Mekanism, FMLFileResourcePack:MekanismGenerators, FMLFileResourcePack:MekanismTools, FMLFileResourcePack:MineFactory Reloaded, FMLFileResourcePack:MFR Compat: Applied Energistics, FMLFileResourcePack:MFR Compat: Atum, FMLFileResourcePack:MFR Compat: BackTools, FMLFileResourcePack:MFR Compat: BuildCraft, FMLFileResourcePack:MFR Compat: Chococraft, FMLFileResourcePack:MFR Compat: ExtraBiomes, FMLFileResourcePack:MFR Compat: Forestry, FMLFileResourcePack:MFR Compat: ForgeMicroblock, FMLFileResourcePack:MFR Compat: IC2, FMLFileResourcePack:MFR Compat: Mystcraft, FMLFileResourcePack:MFR Compat ProjectRed, FMLFileResourcePack:MFR Compat: Railcraft, FMLFileResourcePack:MFR Compat: Sufficient Biomes, FMLFileResourcePack:MFR Compat: Thaumcraft, FMLFileResourcePack:MFR Compat: Thermal Expansion, FMLFileResourcePack:MFR Compat: Tinkers' Construct, FMLFileResourcePack:MFR Compat: TwilightForest, FMLFileResourcePack:MFR Compat: Vanilla, FMLFileResourcePack:NEI Integration, FMLFileResourcePack:OpenBlocks, FMLFileResourcePack:OpenMods, FMLFileResourcePack:OpenPeripheralAddons, FMLFileResourcePack:OpenPeripheralCore, FMLFileResourcePack:OpenPeripheralIntegration, FMLFileResourcePack:Runic Dungeons, FMLFileResourcePack:Tinkers' Construct, FMLFileResourcePack:Thaumcraft, FMLFileResourcePack:Thaumic Horizons, FMLFileResourcePack:Thermal Dynamics, FMLFileResourcePack:Thermal Expansion, FMLFileResourcePack:Thermal Foundation, FMLFileResourcePack:Traveller's Gear, FMLFileResourcePack:Waila, FMLFileResourcePack:Waila Harvestability, FMLFileResourcePack:Witchery, FMLFileResourcePack:Witching Gadgets, FMLFileResourcePack:WorldEdit, FMLFileResourcePack:Baubles, FMLFileResourcePack:Forge Microblocks, FMLFileResourcePack:Forge Multipart, FMLFileResourcePack:Minecraft Multipart Plugin [17:09:37] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: alchemicalwizardryBooks in C:\Users\Khaleel\AppData\Roaming\.minecraft\mods\BloodMagic-1.7.10-1.3.2-1.jar [17:09:37] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: alchemicalwizardryBooks in C:\Users\Khaleel\AppData\Roaming\.minecraft\mods\BloodMagic-1.7.10-1.3.2-1.jar [17:09:37] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: alchemicalwizardryBooks in C:\Users\Khaleel\AppData\Roaming\.minecraft\mods\BloodMagic-1.7.10-1.3.2-1.jar [17:09:37] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: alchemicalwizardryBooks in C:\Users\Khaleel\AppData\Roaming\.minecraft\mods\BloodMagic-1.7.10-1.3.2-1.jar [17:09:37] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: alchemicalwizardryBooks in C:\Users\Khaleel\AppData\Roaming\.minecraft\mods\BloodMagic-1.7.10-1.3.2-1.jar [17:09:37] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: alchemicalwizardryBooks in C:\Users\Khaleel\AppData\Roaming\.minecraft\mods\BloodMagic-1.7.10-1.3.2-1.jar [17:09:54] [Client thread/WARN]: File arsmagica2:sounds/spell/loop/none.ogg does not exist, cannot add it to event arsmagica2:spell.loop.none [17:09:54] [Client thread/WARN]: File customnpcs:sounds/human/female/villager/What Do You Need.ogg does not exist, cannot add it to event customnpcs:human.female.villager.what_do_you_need [17:09:54] [Client thread/WARN]: File customnpcs:sounds/human/female/villager/Would You Like To Trade.ogg does not exist, cannot add it to event customnpcs:human.female.villager.trade [17:09:54] [Client thread/WARN]: File customnpcs:sounds/human/girl/villager/What do you need.ogg does not exist, cannot add it to event customnpcs:human.girl.villager.what_do_you_need [17:09:54] [Client thread/WARN]: File customnpcs:sounds/human/girl/villager/Would you like to trade.ogg does not exist, cannot add it to event customnpcs:human.girl.villager.trade [17:09:54] [sound Library Loader/INFO]: Sound engine started [17:09:58] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_519_schematicSaver.png, java.io.FileNotFoundException [17:09:58] [Client thread/ERROR]: Using missing texture, unable to load ganyssurface:textures/blocks/storage_dye_orange.png, java.io.FileNotFoundException [17:10:01] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_515_blockSpellModifier.png, java.io.FileNotFoundException [17:10:01] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_514_blockSpellEnhancement.png, java.io.FileNotFoundException [17:10:02] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/stone_brick.png, java.io.FileNotFoundException [17:10:04] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/planks.png, java.io.FileNotFoundException [17:10:04] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_513_blockSpellParadigm.png, java.io.FileNotFoundException [17:10:04] [Client thread/ERROR]: Using missing texture, unable to load extrautils:textures/blocks/enderQuarryUpgrade.png, java.io.FileNotFoundException [17:10:04] [Client thread/ERROR]: Using missing texture, unable to load ganyssurface:textures/blocks/storage_dye_magenta.png, java.io.FileNotFoundException [17:10:04] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_525_blockMimic.png, java.io.FileNotFoundException [17:10:04] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_522_crystalBelljar.png, java.io.FileNotFoundException [17:10:05] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_521_alchemicCalcinator.png, java.io.FileNotFoundException [17:10:05] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_516_blockSpellEffect.png, java.io.FileNotFoundException [17:10:07] [Client thread/INFO]: Created: 2048x2048 textures/blocks-atlas [17:10:20] [Client thread/ERROR]: Using missing texture, unable to load minefactoryreloaded:textures/items/item.mfr.rednet.meter.debug.png, java.io.FileNotFoundException [17:10:23] [Client thread/ERROR]: Using missing texture, unable to load alchemicalwizardry:textures/items/SigilOfTheFastMiner.png, java.io.FileNotFoundException [17:10:24] [Client thread/ERROR]: Using missing texture, unable to load alchemicalwizardry:textures/items/guide.png, java.io.FileNotFoundException [17:10:25] [Client thread/ERROR]: Using missing texture, unable to load missing_icon_item_5593_extrautils:textures/items/lawSword.png, java.io.FileNotFoundException [17:10:25] [Client thread/ERROR]: Using missing texture, unable to load missing_icon_item_5610_extrautils:textures/items/microblocks.png, java.io.FileNotFoundException [17:10:26] [Client thread/ERROR]: Using missing texture, unable to load extrabees:textures/items/misc/blutoniumDust.png, java.io.FileNotFoundException [17:10:27] [Client thread/INFO]: Created: 2048x2048 textures/items-atlas [17:10:57] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Not Enough Items, FMLFileResourcePack:Ars Magica 2, FMLFileResourcePack:AnimationAPI, FMLFileResourcePack:Applied Energistics 2, FMLFileResourcePack:Big Reactors, FMLFileResourcePack:Botany, FMLFileResourcePack:Binnie Core, FMLFileResourcePack:Extra Bees, FMLFileResourcePack:Extra Trees, FMLFileResourcePack:Genetics, FMLFileResourcePack:Blood Magic: Alchemical Wizardry, FMLFileResourcePack:Botania, FMLFileResourcePack:BC Silicon, FMLFileResourcePack:BuildCraft, FMLFileResourcePack:BC Transport, FMLFileResourcePack:BC Builders, FMLFileResourcePack:BC Energy, FMLFileResourcePack:BC Factory, FMLFileResourcePack:BuildCraft Compat, FMLFileResourcePack:Carpenter's Blocks, FMLFileResourcePack:Chisel 2, FMLFileResourcePack:CoFH Core, FMLFileResourcePack:Colorful Mobs, FMLFileResourcePack:ComputerCraft, FMLFileResourcePack:Cosmetic Armor, FMLFileResourcePack:CustomNpcs, FMLFileResourcePack:Description Tags, FMLFileResourcePack:Draconic Evolution, FMLFileResourcePack:Ender IO, FMLFileResourcePack:EnderStorage, FMLFileResourcePack:Ender Zoo, FMLFileResourcePack:Extra Utilities, FMLFileResourcePack:The Farlanders, FMLFileResourcePack:Forbidden Magic, FMLFileResourcePack:Forestry for Minecraft, FMLFileResourcePack:Forge Essentials, FMLFileResourcePack:Gany's End, FMLFileResourcePack:Gany's Nether, FMLFileResourcePack:Gany's Surface, FMLFileResourcePack:Garden Containers, FMLFileResourcePack:Garden Core, FMLFileResourcePack:Garden Stuff, FMLFileResourcePack:Garden Trees, FMLFileResourcePack:GraveStone, FMLFileResourcePack:Highlands, FMLFileResourcePack:Infernal Mobs, FMLFileResourcePack:Inventory Tweaks, FMLFileResourcePack:Iron Chest, FMLFileResourcePack:JABBA, FMLFileResourcePack:Mantle, FMLFileResourcePack:Mekanism, FMLFileResourcePack:MekanismGenerators, FMLFileResourcePack:MekanismTools, FMLFileResourcePack:MineFactory Reloaded, FMLFileResourcePack:MFR Compat: Applied Energistics, FMLFileResourcePack:MFR Compat: Atum, FMLFileResourcePack:MFR Compat: BackTools, FMLFileResourcePack:MFR Compat: BuildCraft, FMLFileResourcePack:MFR Compat: Chococraft, FMLFileResourcePack:MFR Compat: ExtraBiomes, FMLFileResourcePack:MFR Compat: Forestry, FMLFileResourcePack:MFR Compat: ForgeMicroblock, FMLFileResourcePack:MFR Compat: IC2, FMLFileResourcePack:MFR Compat: Mystcraft, FMLFileResourcePack:MFR Compat ProjectRed, FMLFileResourcePack:MFR Compat: Railcraft, FMLFileResourcePack:MFR Compat: Sufficient Biomes, FMLFileResourcePack:MFR Compat: Thaumcraft, FMLFileResourcePack:MFR Compat: Thermal Expansion, FMLFileResourcePack:MFR Compat: Tinkers' Construct, FMLFileResourcePack:MFR Compat: TwilightForest, FMLFileResourcePack:MFR Compat: Vanilla, FMLFileResourcePack:NEI Integration, FMLFileResourcePack:OpenBlocks, FMLFileResourcePack:OpenMods, FMLFileResourcePack:OpenPeripheralAddons, FMLFileResourcePack:OpenPeripheralCore, FMLFileResourcePack:OpenPeripheralIntegration, FMLFileResourcePack:Runic Dungeons, FMLFileResourcePack:Tinkers' Construct, FMLFileResourcePack:Thaumcraft, FMLFileResourcePack:Thaumic Horizons, FMLFileResourcePack:Thermal Dynamics, FMLFileResourcePack:Thermal Expansion, FMLFileResourcePack:Thermal Foundation, FMLFileResourcePack:Traveller's Gear, FMLFileResourcePack:Waila, FMLFileResourcePack:Waila Harvestability, FMLFileResourcePack:Witchery, FMLFileResourcePack:Witching Gadgets, FMLFileResourcePack:WorldEdit, FMLFileResourcePack:Baubles, FMLFileResourcePack:Forge Microblocks, FMLFileResourcePack:Forge Multipart, FMLFileResourcePack:Minecraft Multipart Plugin, FMLFileResourcePack:Carpenter's Blocks Cached Resources [17:10:57] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: alchemicalwizardryBooks in C:\Users\Khaleel\AppData\Roaming\.minecraft\mods\BloodMagic-1.7.10-1.3.2-1.jar [17:10:57] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: alchemicalwizardryBooks in C:\Users\Khaleel\AppData\Roaming\.minecraft\mods\BloodMagic-1.7.10-1.3.2-1.jar [17:10:57] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: alchemicalwizardryBooks in C:\Users\Khaleel\AppData\Roaming\.minecraft\mods\BloodMagic-1.7.10-1.3.2-1.jar [17:10:57] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: alchemicalwizardryBooks in C:\Users\Khaleel\AppData\Roaming\.minecraft\mods\BloodMagic-1.7.10-1.3.2-1.jar [17:10:57] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: alchemicalwizardryBooks in C:\Users\Khaleel\AppData\Roaming\.minecraft\mods\BloodMagic-1.7.10-1.3.2-1.jar [17:10:57] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: alchemicalwizardryBooks in C:\Users\Khaleel\AppData\Roaming\.minecraft\mods\BloodMagic-1.7.10-1.3.2-1.jar [17:10:59] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_519_schematicSaver.png, java.io.FileNotFoundException [17:10:59] [Client thread/ERROR]: Using missing texture, unable to load ganyssurface:textures/blocks/storage_dye_orange.png, java.io.FileNotFoundException [17:10:59] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_515_blockSpellModifier.png, java.io.FileNotFoundException [17:10:59] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_514_blockSpellEnhancement.png, java.io.FileNotFoundException [17:10:59] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/stone_brick.png, java.io.FileNotFoundException [17:11:00] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/planks.png, java.io.FileNotFoundException [17:11:00] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_513_blockSpellParadigm.png, java.io.FileNotFoundException [17:11:00] [Client thread/ERROR]: Using missing texture, unable to load extrautils:textures/blocks/enderQuarryUpgrade.png, java.io.FileNotFoundException [17:11:00] [Client thread/ERROR]: Using missing texture, unable to load ganyssurface:textures/blocks/storage_dye_magenta.png, java.io.FileNotFoundException [17:11:00] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_525_blockMimic.png, java.io.FileNotFoundException [17:11:00] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_522_crystalBelljar.png, java.io.FileNotFoundException [17:11:00] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_521_alchemicCalcinator.png, java.io.FileNotFoundException [17:11:00] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_516_blockSpellEffect.png, java.io.FileNotFoundException [17:11:02] [Client thread/INFO]: Created: 4096x2048 textures/blocks-atlas [17:11:15] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/items/MISSING_ICON_ITEM_6188_Corpse.png, java.io.FileNotFoundException [17:11:15] [Client thread/ERROR]: Using missing texture, unable to load missing_icon_item_5610_extrautils:textures/items/microblocks.png, java.io.FileNotFoundException [17:11:17] [Client thread/ERROR]: Using missing texture, unable to load arsmagica2:textures/items/spells/components/ScrambleSynapses.png, java.io.FileNotFoundException [17:11:17] [Client thread/ERROR]: Using missing texture, unable to load minefactoryreloaded:textures/items/item.mfr.rednet.meter.debug.png, java.io.FileNotFoundException [17:11:17] [Client thread/ERROR]: Using missing texture, unable to load arsmagica2:textures/items/spells/components/Nauseate.png, java.io.FileNotFoundException [17:11:18] [Client thread/ERROR]: Using missing texture, unable to load alchemicalwizardry:textures/items/SigilOfTheFastMiner.png, java.io.FileNotFoundException [17:11:18] [Client thread/ERROR]: Using missing texture, unable to load alchemicalwizardry:textures/items/guide.png, java.io.FileNotFoundException [17:11:18] [Client thread/ERROR]: Using missing texture, unable to load missing_icon_item_5593_extrautils:textures/items/lawSword.png, java.io.FileNotFoundException [17:11:19] [Client thread/ERROR]: Using missing texture, unable to load extrabees:textures/items/misc/blutoniumDust.png, java.io.FileNotFoundException [17:11:21] [Client thread/INFO]: Created: 2048x2048 textures/items-atlas [17:11:21] [Client thread/WARN]: File arsmagica2:sounds/spell/loop/none.ogg does not exist, cannot add it to event arsmagica2:spell.loop.none [17:11:21] [Client thread/WARN]: File customnpcs:sounds/human/female/villager/What Do You Need.ogg does not exist, cannot add it to event customnpcs:human.female.villager.what_do_you_need [17:11:21] [Client thread/WARN]: File customnpcs:sounds/human/female/villager/Would You Like To Trade.ogg does not exist, cannot add it to event customnpcs:human.female.villager.trade [17:11:21] [Client thread/WARN]: File customnpcs:sounds/human/girl/villager/What do you need.ogg does not exist, cannot add it to event customnpcs:human.girl.villager.what_do_you_need [17:11:21] [Client thread/WARN]: File customnpcs:sounds/human/girl/villager/Would you like to trade.ogg does not exist, cannot add it to event customnpcs:human.girl.villager.trade [17:11:22] [sound Library Loader/INFO]: Sound engine started [17:11:23] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Not Enough Items, FMLFileResourcePack:Ars Magica 2, FMLFileResourcePack:AnimationAPI, FMLFileResourcePack:Applied Energistics 2, FMLFileResourcePack:Big Reactors, FMLFileResourcePack:Botany, FMLFileResourcePack:Binnie Core, FMLFileResourcePack:Extra Bees, FMLFileResourcePack:Extra Trees, FMLFileResourcePack:Genetics, FMLFileResourcePack:Blood Magic: Alchemical Wizardry, FMLFileResourcePack:Botania, FMLFileResourcePack:BC Silicon, FMLFileResourcePack:BuildCraft, FMLFileResourcePack:BC Transport, FMLFileResourcePack:BC Builders, FMLFileResourcePack:BC Energy, FMLFileResourcePack:BC Factory, FMLFileResourcePack:BuildCraft Compat, FMLFileResourcePack:Carpenter's Blocks, FMLFileResourcePack:Chisel 2, FMLFileResourcePack:CoFH Core, FMLFileResourcePack:Colorful Mobs, FMLFileResourcePack:ComputerCraft, FMLFileResourcePack:Cosmetic Armor, FMLFileResourcePack:CustomNpcs, FMLFileResourcePack:Description Tags, FMLFileResourcePack:Draconic Evolution, FMLFileResourcePack:Ender IO, FMLFileResourcePack:EnderStorage, FMLFileResourcePack:Ender Zoo, FMLFileResourcePack:Extra Utilities, FMLFileResourcePack:The Farlanders, FMLFileResourcePack:Forbidden Magic, FMLFileResourcePack:Forestry for Minecraft, FMLFileResourcePack:Forge Essentials, FMLFileResourcePack:Gany's End, FMLFileResourcePack:Gany's Nether, FMLFileResourcePack:Gany's Surface, FMLFileResourcePack:Garden Containers, FMLFileResourcePack:Garden Core, FMLFileResourcePack:Garden Stuff, FMLFileResourcePack:Garden Trees, FMLFileResourcePack:GraveStone, FMLFileResourcePack:Highlands, FMLFileResourcePack:Infernal Mobs, FMLFileResourcePack:Inventory Tweaks, FMLFileResourcePack:Iron Chest, FMLFileResourcePack:JABBA, FMLFileResourcePack:Mantle, FMLFileResourcePack:Mekanism, FMLFileResourcePack:MekanismGenerators, FMLFileResourcePack:MekanismTools, FMLFileResourcePack:MineFactory Reloaded, FMLFileResourcePack:MFR Compat: Applied Energistics, FMLFileResourcePack:MFR Compat: Atum, FMLFileResourcePack:MFR Compat: BackTools, FMLFileResourcePack:MFR Compat: BuildCraft, FMLFileResourcePack:MFR Compat: Chococraft, FMLFileResourcePack:MFR Compat: ExtraBiomes, FMLFileResourcePack:MFR Compat: Forestry, FMLFileResourcePack:MFR Compat: ForgeMicroblock, FMLFileResourcePack:MFR Compat: IC2, FMLFileResourcePack:MFR Compat: Mystcraft, FMLFileResourcePack:MFR Compat ProjectRed, FMLFileResourcePack:MFR Compat: Railcraft, FMLFileResourcePack:MFR Compat: Sufficient Biomes, FMLFileResourcePack:MFR Compat: Thaumcraft, FMLFileResourcePack:MFR Compat: Thermal Expansion, FMLFileResourcePack:MFR Compat: Tinkers' Construct, FMLFileResourcePack:MFR Compat: TwilightForest, FMLFileResourcePack:MFR Compat: Vanilla, FMLFileResourcePack:NEI Integration, FMLFileResourcePack:OpenBlocks, FMLFileResourcePack:OpenMods, FMLFileResourcePack:OpenPeripheralAddons, FMLFileResourcePack:OpenPeripheralCore, FMLFileResourcePack:OpenPeripheralIntegration, FMLFileResourcePack:Runic Dungeons, FMLFileResourcePack:Tinkers' Construct, FMLFileResourcePack:Thaumcraft, FMLFileResourcePack:Thaumic Horizons, FMLFileResourcePack:Thermal Dynamics, FMLFileResourcePack:Thermal Expansion, FMLFileResourcePack:Thermal Foundation, FMLFileResourcePack:Traveller's Gear, FMLFileResourcePack:Waila, FMLFileResourcePack:Waila Harvestability, FMLFileResourcePack:Witchery, FMLFileResourcePack:Witching Gadgets, FMLFileResourcePack:WorldEdit, FMLFileResourcePack:Baubles, FMLFileResourcePack:Forge Microblocks, FMLFileResourcePack:Forge Multipart, FMLFileResourcePack:Minecraft Multipart Plugin, FMLFileResourcePack:Carpenter's Blocks Cached Resources, resources [17:11:23] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: alchemicalwizardryBooks in C:\Users\Khaleel\AppData\Roaming\.minecraft\mods\BloodMagic-1.7.10-1.3.2-1.jar [17:11:23] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: alchemicalwizardryBooks in C:\Users\Khaleel\AppData\Roaming\.minecraft\mods\BloodMagic-1.7.10-1.3.2-1.jar [17:11:23] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: alchemicalwizardryBooks in C:\Users\Khaleel\AppData\Roaming\.minecraft\mods\BloodMagic-1.7.10-1.3.2-1.jar [17:11:23] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: alchemicalwizardryBooks in C:\Users\Khaleel\AppData\Roaming\.minecraft\mods\BloodMagic-1.7.10-1.3.2-1.jar [17:11:23] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: alchemicalwizardryBooks in C:\Users\Khaleel\AppData\Roaming\.minecraft\mods\BloodMagic-1.7.10-1.3.2-1.jar [17:11:23] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: alchemicalwizardryBooks in C:\Users\Khaleel\AppData\Roaming\.minecraft\mods\BloodMagic-1.7.10-1.3.2-1.jar [17:11:24] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_519_schematicSaver.png, java.io.FileNotFoundException [17:11:24] [Client thread/ERROR]: Using missing texture, unable to load ganyssurface:textures/blocks/storage_dye_orange.png, java.io.FileNotFoundException [17:11:25] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_515_blockSpellModifier.png, java.io.FileNotFoundException [17:11:25] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_514_blockSpellEnhancement.png, java.io.FileNotFoundException [17:11:25] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/stone_brick.png, java.io.FileNotFoundException [17:11:26] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/planks.png, java.io.FileNotFoundException [17:11:26] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_513_blockSpellParadigm.png, java.io.FileNotFoundException [17:11:26] [Client thread/ERROR]: Using missing texture, unable to load extrautils:textures/blocks/enderQuarryUpgrade.png, java.io.FileNotFoundException [17:11:26] [Client thread/ERROR]: Using missing texture, unable to load ganyssurface:textures/blocks/storage_dye_magenta.png, java.io.FileNotFoundException [17:11:26] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_525_blockMimic.png, java.io.FileNotFoundException [17:11:26] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_522_crystalBelljar.png, java.io.FileNotFoundException [17:11:26] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_521_alchemicCalcinator.png, java.io.FileNotFoundException [17:11:26] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/blocks/MISSING_ICON_BLOCK_516_blockSpellEffect.png, java.io.FileNotFoundException [17:11:28] [Client thread/INFO]: Created: 4096x2048 textures/blocks-atlas [17:11:29] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/items/MISSING_ICON_ITEM_6188_Corpse.png, java.io.FileNotFoundException [17:11:29] [Client thread/ERROR]: Using missing texture, unable to load missing_icon_item_5610_extrautils:textures/items/microblocks.png, java.io.FileNotFoundException [17:11:29] [Client thread/ERROR]: Using missing texture, unable to load arsmagica2:textures/items/spells/components/ScrambleSynapses.png, java.io.FileNotFoundException [17:11:29] [Client thread/ERROR]: Using missing texture, unable to load minefactoryreloaded:textures/items/item.mfr.rednet.meter.debug.png, java.io.FileNotFoundException [17:11:29] [Client thread/ERROR]: Using missing texture, unable to load arsmagica2:textures/items/spells/components/Nauseate.png, java.io.FileNotFoundException [17:11:29] [Client thread/ERROR]: Using missing texture, unable to load alchemicalwizardry:textures/items/SigilOfTheFastMiner.png, java.io.FileNotFoundException [17:11:30] [Client thread/ERROR]: Using missing texture, unable to load alchemicalwizardry:textures/items/guide.png, java.io.FileNotFoundException [17:11:30] [Client thread/ERROR]: Using missing texture, unable to load missing_icon_item_5593_extrautils:textures/items/lawSword.png, java.io.FileNotFoundException [17:11:30] [Client thread/ERROR]: Using missing texture, unable to load extrabees:textures/items/misc/blutoniumDust.png, java.io.FileNotFoundException [17:11:31] [Client thread/INFO]: Created: 2048x2048 textures/items-atlas [17:11:32] [Client thread/WARN]: File arsmagica2:sounds/spell/loop/none.ogg does not exist, cannot add it to event arsmagica2:spell.loop.none [17:11:32] [Client thread/WARN]: File customnpcs:sounds/human/female/villager/What Do You Need.ogg does not exist, cannot add it to event customnpcs:human.female.villager.what_do_you_need [17:11:32] [Client thread/WARN]: File customnpcs:sounds/human/female/villager/Would You Like To Trade.ogg does not exist, cannot add it to event customnpcs:human.female.villager.trade [17:11:32] [Client thread/WARN]: File customnpcs:sounds/human/girl/villager/What do you need.ogg does not exist, cannot add it to event customnpcs:human.girl.villager.what_do_you_need [17:11:32] [Client thread/WARN]: File customnpcs:sounds/human/girl/villager/Would you like to trade.ogg does not exist, cannot add it to event customnpcs:human.girl.villager.trade [17:11:32] [sound Library Loader/INFO]: Sound engine started [17:12:02] [server thread/INFO]: Starting integrated minecraft server version 1.7.10 [17:12:02] [server thread/INFO]: Generating keypair [18:06:47] [server thread/INFO]: Starting integrated minecraft server version 1.7.10 [18:06:47] [server thread/INFO]: Generating keypair [18:24:43] [server thread/INFO]: Starting integrated minecraft server version 1.7.10 [18:24:43] [server thread/INFO]: Generating keypair [18:24:44] [Client thread/INFO]: Stopping! I'm guessing I just need to find some other versions of the mods with missing sounds/textures(?)
  18. I'm currently trying to play a little modpack I made the other day, but I'm running into this issue that won't go away. Every time I try to make a new single-player world to get started, it just sends me back to the title screen. I've tried waiting around to see if it would load, I've tried to make another world quite a few times, but nothing seems to be working. Any suggestions?
  19. Somehow I missed it in the console, but apparently its a class cast exception. I need a way to cast though. RandomPositionGenerator wants an EntityCreature, but I can't seem to cast from EntityPenguinMob (custom entity). How could I get around the cast?
  20. I've been working on some custom AI for my custom mob (flying penguin), but I've currently run into a snag. I'm trying to set it like so: public boolean shouldExecute() { if (theEntityCreature.worldObj.getClosestPlayerToEntity(theEntityCreature, 3.0D) == null) { return false; } Vec3 vec3 = RandomPositionGenerator.findRandomTarget((EntityCreature) theEntityCreature, 30, 10);//ERROR if (vec3 == null) { return false; } else { randPosX = vec3.xCoord; randPosY = vec3.yCoord; randPosZ = vec3.zCoord; return true; } } It crashes when it reaches the RandomPositonGenerator. What's wrong with it?
  21. This is as far as it got this time, sometimes a bit less, sometimes a bit more: ================ Forge ModLoader Setup Start =================== MCP Detected already, not downloading Setting up MCP Patching commands.py patching file commands.py Commands patch applied successfully Copying FML conf Creating Repackaged data Creating re-packaged srg Creating re-packaged exc Creating re-packaged MCP patches Downloading 42 libraries Backing up client Backing up server Gathering assets list from http://resources.download.minecraft.net Downloading 988 assets sounds\ambient\weather\rain1.ogg Modified, removing sounds\ambient\weather\rain1.ogg Done sound\mob\magmacube\small4.ogg Done sounds\step\cloth3.ogg Done sound\liquid\swim3.ogg Done sounds\ambient\cave\cave9.ogg Done sound\damage\fallbig.ogg Done sounds\mob\villager\no3.ogg Done sounds\mob\magmacube\jump1.ogg Done sound\dig\gravel4.ogg Done lang\ga_IE.lang Done sound\step\stone3.ogg Done sound\mob\zombie\death.ogg Done sound\mob\horse\gallop2.ogg Done sound\mob\creeper\death.ogg Done sounds\mob\ghast\moan6.ogg Done sound\step\sand4.ogg Done music\piano1.ogg Done sounds\mob\irongolem\hit4.ogg Done sound\random\bowhit3.ogg Done sounds\mob\zombie\death.ogg Done sounds\liquid\swim2.ogg Done sounds\mob\wolf\step1.ogg Done sounds\mob\pig\say1.ogg Done sounds\music\menu\menu3.ogg Done sound\mob\horse\skeleton\idle1.ogg Done sound\mob\irongolem\walk1.ogg Done sound\step\stone1.ogg Done sounds\mob\creeper\say1.ogg Done sound\mob\horse\donkey\angry2.ogg Done sounds\dig\sand1.ogg Done sounds\mob\horse\land.ogg Done records\mellohi.ogg Done sound\mob\zombiepig\zpigangry3.ogg Done sound\liquid\splash.ogg Done sounds\mob\skeleton\say1.ogg Done sound\mob\horse\donkey\hit3.ogg Done sounds\mob\endermen\idle1.ogg Done sounds\music\game\hal2.ogg Done sounds\mob\cat\meow1.ogg Done sounds\music\game\nuance2.ogg Done lang\pt_PT.lang Done sound\step\wood5.ogg Done music\hal1.ogg Done icons\icon_16x16.png Done sound\step\ladder1.ogg Done records\far.ogg Done sounds\mob\horse\zombie\idle2.ogg Done sound\mob\spider\step1.ogg Done sound\ambient\cave\cave6.ogg Done sounds\mob\cat\purr1.ogg Done sounds\random\explode1.ogg Done sounds\mob\zombiepig\zpig2.ogg Done sounds\step\sand1.ogg Done sound\mob\enderdragon\wings4.ogg Done sound\random\anvil_land.ogg Done sound\mob\chicken\hurt2.ogg Done sounds\mob\chicken\hurt1.ogg Done sounds\step\sand4.ogg Done sounds\dig\stone4.ogg Done sound\ambient\cave\cave5.ogg Done
  22. I've been trying to install Minecraft Forge 9.11.1.953 so I can start modding, but after a certain period of time, it just stops working without displaying an error message or anything. I don't think I'm being impatient because I've tried giving it a whole hour. I've also tried installing each of the other 1.6.4 forge versions, but the same thing happens. Does anyone know how to fix this? If so, how?
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.