Jump to content
  • Home
  • Files
  • Docs
Status Updates
  • All Content

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Womas

Womas

Members
 View Profile  See their activity
  • Content Count

    13
  • Joined

    November 16, 2018
  • Last visited

    August 26, 2019

Community Reputation

0 Neutral

About Womas

  • Rank
    Tree Puncher
  1. Womas

    Issues when registering ItemBlock

    Womas replied to Womas's topic in Modder Support

    Version 1.8.9
    • July 29, 2019
    • 3 replies
  2. Womas

    Issues when registering ItemBlock

    Womas posted a topic in Modder Support

    I created a class called ModBlocks for my blocks. There are two blocks, arock and brock. As you can see I created a method called registerBlocks() to register my blocks and also their ItemBlocks. And finally, use the register() method to register all of them in my main class. But the following exception occurs: package Sixs.FirstMod.blocks; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.item.ItemBlock; import net.minecraftforge.fml.common.registry.GameRegistry; public class ModBlocks { public static Block arock = new Block(Material.rock).setUnlocalizedName("arock").setRegistryName("arock"); public static Block brock = new Block(Material.rock).setUnlocalizedName("brock").setRegistryName("brock"); public static void init() { } public static void register() { registerBlocks(arock,brock); } public static void registerBlocks(Block... blocks) { for (Block block1 : blocks) { GameRegistry.registerBlock(block1); ItemBlock itemBlock = new ItemBlock(block1); itemBlock.setRegistryName(block1.getRegistryName()); GameRegistry.registerItem(itemBlock); } } } It says that I use the name fm:arock to register ItemBlocks twice, but I don't know how. The ItemBlocks's registry names are the same from their corresponding blocks. Help will be appreciated.
    • July 29, 2019
    • 3 replies
  3. Womas

    Adding optifine to forge gradle

    Womas replied to Womas's topic in Modder Support

    Alright guys. I finally got it to work. I changed the optifine version and it worked out! Thx for your help and patients!
    • November 20, 2018
    • 19 replies
  4. Womas

    Adding optifine to forge gradle

    Womas replied to Womas's topic in Modder Support

    while it failed again, but I feel like this time is better Btw I'm using the --all jar and Optifine 1.8.8_HD_U_H8 version. Got them in the mod folder
    • November 20, 2018
    • 19 replies
  5. Womas

    Adding optifine to forge gradle

    Womas replied to Womas's topic in Modder Support

    So I need to put my tweaker with the decompiled Optifine jar by using simpledeobf in the run/mod folder?
    • November 20, 2018
    • 19 replies
  6. Womas

    Adding optifine to forge gradle

    Womas replied to Womas's topic in Modder Support

    I have my optifine installed only in the playable forge launcher but not the development environment. But I have the other source and normal tweaker jar in the build lib.
    • November 20, 2018
    • 19 replies
  7. Womas

    Adding optifine to forge gradle

    Womas replied to Womas's topic in Modder Support

    @Cadiboo I tried the --all version. And this is what I got,
    • November 20, 2018
    • 19 replies
  8. Womas

    Adding optifine to forge gradle

    Womas replied to Womas's topic in Modder Support

    what do you mean by --all version?
    • November 18, 2018
    • 19 replies
  9. Womas

    Adding optifine to forge gradle

    Womas replied to Womas's topic in Modder Support

    i build it with .\gradlew jar command
    • November 18, 2018
    • 19 replies
  10. Womas

    Adding optifine to forge gradle

    Womas replied to Womas's topic in Modder Support

    It doesn't work
    • November 18, 2018
    • 19 replies
  11. Womas

    Adding optifine to forge gradle

    Womas replied to Womas's topic in Modder Support

    one question, where can i get the optifinedevtweaker jar file?
    • November 18, 2018
    • 19 replies
  12. Womas

    [SOLVED] [1.12.2] Compatibility with Optifine (Forge 14.23.4.2729)

    Womas replied to Cadiboo's topic in Modder Support

    Thx I will try
    • November 17, 2018
    • 9 replies
  13. Womas

    Adding optifine to forge gradle

    Womas posted a topic in Modder Support

    So I am trying to adding the optifine mod to my development environment but I struggled on it. I tried different methods but it doesn't work. I'm trying to add the optifine by using optifine src. And also, I'm using intellij. Helps please.
    • November 16, 2018
    • 19 replies
  • All Activity
  • Home
  • Womas
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community