robin4002
Forge Modder-
Posts
283 -
Joined
-
Last visited
Everything posted by robin4002
-
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 ?
-
use the Mojang launcher.
-
Issue With Minecraft Forge 1.6.4 Server Installer
robin4002 replied to chudders1231's topic in Support & Bug Reports
read the EAQ : -
(Forge) Game ended with bad state (exit code 1)
robin4002 replied to xfoto's topic in Support & Bug Reports
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 -
PLEASE HELP - Issue with Forge and MC 1.7.2
robin4002 replied to raynelogens's topic in Support & Bug Reports
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 -
(Forge) Game ended with bad state (exit code 1)
robin4002 replied to xfoto's topic in Support & Bug Reports
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 -
hi, one of the mods you have installed requires open libs : http://openmods.info/
-
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>/)
-
hi, 1.6.4 mods are not compatible with mc 1.7.10
-
Indeed, sorry. Speaking French is easier for me, since my English isn't very good. I edited my messages.
-
No, my Skype is private, give your logs [spoiler=french]Non, je ne prends personne sur skype. Donne juste les logs.
-
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)
-
[1.8/1.7.10] Pixel error/Windows 10 Error
robin4002 replied to WARDOGSK93's topic in Support & Bug Reports
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 -
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 ?
-
hi, Caused by: java.lang.UnsupportedClassVersionError: ic2classic/core/IC2 : Unsupported major.minor version 51.0 This mod requires Java 7 or newer.
-
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
-
Hi, Update to the last version of Forge (Minecraft 1.7.10) or use java 7.
-
Can't Reply to Some Non-Locked Topics
robin4002 replied to Eternaldoom's topic in General Discussion
Same problem for my with Firefox, the problem seems in fact come from the rank forge modder -
[1.7.10][forge-1222] Open GL error 1286 @Post Render
robin4002 replied to EchoxOne's topic in Support & Bug Reports
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 -
We don't support cracked version, buy the game.
-
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.
-
Forge 1.7.10-10.13.0.1180 alone crashes MC
robin4002 replied to Foolio's topic in Support & Bug Reports
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 : -
Eclipse Won't Start Client Minecraft
robin4002 replied to cheftonberry's topic in Support & Bug Reports