robin4002
Forge Modder-
Posts
283 -
Joined
-
Last visited
Everything posted by robin4002
-
hi, Try with more memory : gradlew -Dorg.gradle.jvmargs=-Xmx2048M setupDecompWorkspace
-
Hi, You have just to read the crash report : Check your mod folder, it should only have jar files inside.
-
Check your environment variable (right click on the Windows button -> System -> on the left, Advanced System Settings -> click on the Advanced tab -> Environment Variables) , if there is one var named "_JAVA_OPTIONS" remove it.
-
Fixed in #1387 But yes, I can confirm that #1382 has a problem : EDIT : https://github.com/MinecraftForge/ForgeGradle/commit/4338ee6b7942daf4ca11472cc98009d5bc8cdd03
-
Did you mean Forge for phone and console ? Since Minecraft for iOS / Android / PS / Xbox aren't make in the same programming language, it would take a lot of time and mods will also be required to have a specific version for each device. There is no interest to do that
-
hi, Not Enough Items required Code Chicken Core : http://chickenbones.net/Pages/links.html
-
Unsupported major.minor version 51.0 (1.7.10)
robin4002 replied to Dispenser's topic in Support & Bug Reports
Hi, This mod required Java 7. So install Java 7 or 8 to correct this error. If you can't update to Java 7 or 8 go blame the modders that don't target Java 6 -
Thanks you !
-
Hello, Since this commit in FML : https://github.com/MinecraftForge/FML/commit/54900a3873a6062796bcea666868f698b3efdcac UTF8 in lang files is broken. With Forge 1309 and Minecraft in french, everything works : But with the latest version of Forge (1322), all é, è, à, are buggy : With other language like Russia the problem is even more visible : There is the same problem with § (text formating)
-
Requesting help identifying cause of crash
robin4002 replied to planetAchira's topic in Support & Bug Reports
http://www.minecraftforge.net/forum/index.php/topic,20.msg8027.html#msg8027 -
Read the EAQ : http://www.minecraftforge.net/forum/index.php/topic,20.msg8027.html#msg8027 Also 1.7.2 is not longer supported, update to 1.7.10.
-
Hi, In the graphic option, decrease the view distance
-
put this : http://files.minecraftforge.net/LegacyJavaFixer/legacyjavafixer-1.0.jar in your mods folder.
-
Minecraft won't launch Forge 1.6.4
robin4002 replied to Kapone Edge's topic in Support & Bug Reports
Hi, 1.6.4 is no longer supported, please update to 1.7.10 If you really want use an old release, you are in your own. I suggest you anyway to install this mod : http://files.minecraftforge.net/LegacyJavaFixer/legacyjavafixer-1.0.jar It is very likely that your game runs with Java 8 if you have Java 7 and Java 8 installed, install this mod should fix your problem in this case. For the next time, don't forget to give us your log. -
hi, We need your logs. (it's a file called fml-client-latest.log located in the folder .minecraft/logs/)
-
Cant launch 1.8 Forge Mod Loader
robin4002 replied to onecooldude123's topic in Support & Bug Reports
Buy the game and use the official Minecraft Launcher then it will work. -
hi, DamageIndicatorsMod is a client-side only mod, remove it.
-
modelresourcelocation = item.getModel(stack, entityplayer, stack.getMaxItemUseDuration() - entityplayer.getItemInUseCount()); Indeed, it was just under my eyes and I didn't even see it x) thank you ! EDIT : It's working, if someone else has the same problem, here's how: package your.package; import net.minecraft.client.resources.model.ModelResourceLocation; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.ItemBow; import net.minecraft.item.ItemStack; public class ItemCustomBow extends ItemBow { @Override public ModelResourceLocation getModel(ItemStack stack, EntityPlayer player, int useRemaining) { ModelResourceLocation modelresourcelocation = new ModelResourceLocation(TestMod.MODID + ":custom_bow", "inventory"); if(stack.getItem() == this && player.getItemInUse() != null) { if(useRemaining >= 18) { modelresourcelocation = new ModelResourceLocation(TestMod.MODID + ":custom_bow_pull2", "inventory"); } else if(useRemaining > 13) { modelresourcelocation = new ModelResourceLocation(TestMod.MODID + ":custom_bow_pull1", "inventory"); } else if(useRemaining > 0) { modelresourcelocation = new ModelResourceLocation(TestMod.MODID + ":custom_bow_pull0", "inventory"); } } return modelresourcelocation; } } and the main class : package your.package; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.ItemModelMesher; import net.minecraft.client.resources.model.ModelBakery; import net.minecraft.client.resources.model.ModelResourceLocation; import net.minecraft.item.Item; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.Mod.EventHandler; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; import net.minecraftforge.fml.common.registry.GameRegistry; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @Mod(modid = TestMod.MODID, name = "Test Mod", version = "1.0.0", acceptedMinecraftVersions = "[1.8.0,)") public class TestMod { public static final String MODID = "testmod"; public static Item customBow; @EventHandler public void preLoad(FMLPreInitializationEvent event) { customBow = new ItemCustomBow().setUnlocalizedName("customBow"); GameRegistry.registerItem(customBow, "custom_bow"); } @EventHandler public void load(FMLInitializationEvent event) { if(event.getSide().isClient()) { ModelBakery.addVariantName(customBow, new String[] {MODID + ":custom_bow", MODID + ":custom_bow_pull0", MODID + ":custom_bow_pull1", MODID + ":custom_bow_pull2"}); registerItem(customBow, 0, MODID + ":custom_bow"); registerItem(customBow, 1, MODID + ":custom_bow_pull0"); registerItem(customBow, 2, MODID + ":custom_bow_pull1"); registerItem(customBow, 3, MODID + ":custom_bow_pull2"); } } @SideOnly(Side.CLIENT) public static void registerItem(Item item, int metadata, String itemName) { ItemModelMesher mesher = Minecraft.getMinecraft().getRenderItem().getItemModelMesher(); mesher.register(item, metadata, new ModelResourceLocation(itemName, "inventory")); } }