Jump to content

robin4002

Forge Modder
  • Posts

    283
  • Joined

  • Last visited

Everything posted by robin4002

  1. hi, I started to update one of my mods to 1.8 this weekend and I'm stuck on the bow textures. By doing research on how the minecraft bow work, I found this in net.minecraft.client.renderer.entity.RenderItem : public void renderItemModelForEntity(ItemStack stack, EntityLivingBase entityToRenderFor, ItemCameraTransforms.TransformType cameraTransformType) { IBakedModel ibakedmodel = this.itemModelMesher.getItemModel(stack); if (entityToRenderFor instanceof EntityPlayer) { EntityPlayer entityplayer = (EntityPlayer)entityToRenderFor; Item item = stack.getItem(); ModelResourceLocation modelresourcelocation = null; if (item == Items.fishing_rod && entityplayer.fishEntity != null) { modelresourcelocation = new ModelResourceLocation("fishing_rod_cast", "inventory"); } else if (item == Items.bow && entityplayer.getItemInUse() != null) { int i = stack.getMaxItemUseDuration() - entityplayer.getItemInUseCount(); if (i >= 18) { modelresourcelocation = new ModelResourceLocation("bow_pulling_2", "inventory"); } else if (i > 13) { modelresourcelocation = new ModelResourceLocation("bow_pulling_1", "inventory"); } else if (i > 0) { modelresourcelocation = new ModelResourceLocation("bow_pulling_0", "inventory"); } } else { modelresourcelocation = item.getModel(stack, entityplayer, stack.getMaxItemUseDuration() - entityplayer.getItemInUseCount()); } if (modelresourcelocation != null) { ibakedmodel = this.itemModelMesher.getModelManager().getModel(modelresourcelocation); } } this.renderItemModelTransform(stack, ibakedmodel, cameraTransformType); } but apparently forge did not have hook or event to allow modder to use it. Is there any other way to do a custom bow or it would add an event or hook to forge ?
  2. use the Mojang launcher.
  3. yes, the problem comes from this launcher, he did not start the game with the rights libraries necessary for Forge. It can be fixed by the developer of this launcher but not by forge team
  4. You should update to mc 1.7.10 or install this mod : http://files.minecraftforge.net/LegacyJavaFixer/legacyjavafixer-1.0.jar Update to mc 1.7.10 is a better solution because 1.7.2 is no longer supported
  5. Probably because it has not bought the game, from what I could see on youtube, there is a cracked launcher. I think that the ban hammer will hit
  6. hi, one of the mods you have installed requires open libs : http://openmods.info/
  7. I already did something similar: https://github.com/FFMT/ModPackInstaller It automatically creates a new profile in the Mojang launcher, check if there are updates, and uses a different game dir to avoid all risk of conflict (.minecraft/modpacks/<modpack name>/)
  8. hi, 1.6.4 mods are not compatible with mc 1.7.10
  9. No ...
  10. Indeed, sorry. Speaking French is easier for me, since my English isn't very good. I edited my messages.
  11. No, my Skype is private, give your logs [spoiler=french]Non, je ne prends personne sur skype. Donne juste les logs.
  12. oh a French ! You should give your log, otherwise we can not help you (it's the file fml-client-latest.log in the folder .minecraft/logs) [spoiler=french]Il faut que tu donne les logs, sinon on ne peut pas t'aider (c'est le fichier fml-client-latest.log dans le dossier logs de ton dossier .minecraft)
  13. You will never run minecraft on Windows 10 with this graphics card Amd no longer developing drivers for the 4000 series, and as openGL is necessary for Minecraft ... Also you are on the wrong section, http://www.minecraftforge.net/forum/index.php/board,67.0.html is a more appropriate section
  14. hi, [23:40:48] [main/INFO] [FML]: Forge Mod Loader version 7.10.85.1232 for Minecraft 1.7.10 loading [23:40:48] [main/INFO] [FML]: Loading tweaker shadersmodcore.loading.SMCTweaker from ShadersModCore-v2.3.12-mc1.7.2-f1040.jar try to update shader mod : http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/1286604-shaders-mod-updated-by-karyonix What is your graphics card ?
  15. 1.6.4 is no longer supported, update to 1.7.10 if you can
  16. hi, Caused by: java.lang.UnsupportedClassVersionError: ic2classic/core/IC2 : Unsupported major.minor version 51.0 This mod requires Java 7 or newer.
  17. hi, NEI requires CodeChickenCore. Also, you are in the wrong section. Here is the right section for support / help : http://www.minecraftforge.net/forum/index.php/board,15.0.html
  18. Hi, Update to the last version of Forge (Minecraft 1.7.10) or use java 7.
  19. Same problem for my with Firefox, the problem seems in fact come from the rank forge modder
  20. Most newer laptops have two graphics cards, and unfortunately java is not running with the dedicated graphics card by default. This problem is very common, I think it would be nice to add it to the EAQ
  21. We don't support cracked version, buy the game.
  22. hi, The crash comes from this line : https://github.com/MinecraftForge/FML/blob/master/src/main/java/cpw/mods/fml/common/Loader.java#L230 It would seem that a dependency is null. Try to install the mods one by one until you find which is causing the problem.
  23. hi, No, they are not stupid answers. The problem is the graphics card, forge has some problem with intel graphics card and it seems that you have one. However you can also fix this problem by adding -Dforge.forceNoStencil=true to the VM arguments in the launcher like this :
×
×
  • Create New...

Important Information

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