Jump to content

texture issues


majesticmadman98

Recommended Posts

Using minecrafts Log file i've sorted out all the errors just need help with textures

@SideOnly(Side.CLIENT)

    public IIcon getSideIcon(int p_150163_1_)

    {

        return this.field_150167_a[p_150163_1_ % this.field_150167_a.length];

    }

 

    @SideOnly(Side.CLIENT)

    public IIcon getTopIcon(int p_150161_1_)

    {

        return this.field_150166_b[p_150161_1_ % this.field_150166_b.length];

    }

so how do i alter this code to add my textures into this

Link to comment
Share on other sites

@SideOnly(Side.CLIENT)

    @Override

    protected IIcon getSideIcon(int metadata)

    {

        return mySideIcon;

    }

 

    @SideOnly(Side.CLIENT)

    @Override

    protected IIcon getTopIcon(int metadata)

    {

        return myTopIcon;

    }

 

 

If you have more metadata wood just return: myIcon[metadata]

Link to comment
Share on other sites

Ok like this:

 

public static final String[] TOP = {"topIcon1Name", "topIcon2Name", "topIcon3Name", and so on..};

public static final String[] SIDE = {"sideIcon1Name", "sideIcon2Name", "sideIcon3Name", and so on..};

 

private IIcon topIcon[];

private IIcon sideIcon[];

 

public void registerBlockIcons(IIconRegister iIconRegister)

{

      topIcon = new IIcon[TOP.length];

      sideIcon = new IIcon[sIDE.length];

 

      for (int i = 0; i < TOP.lenngth; i++)

      {

            topIcon = iIconRegister.registerIcon("modid" + ":" + TOP);

            sideIcon = iIconRegister.registerIcon("modid" + ":" + SIDE)

      }

   

}

 

@SideOnly(Side.CLIENT)

    @Override

    protected IIcon getSideIcon(int metadata)

    {

        return sideIcon[metadata];

    }

 

    @SideOnly(Side.CLIENT)

    @Override

    protected IIcon getTopIcon(int metadata)

    {

        return topIcon[metadata];

    }

 

 

 

That should do it! Fairy straight forward code.

Link to comment
Share on other sites

Ok there is an error it comes up with following you code, which isn't just a hover over and fix,

Heres the full class

package hat.blocks.palmblocks;

 

import hat.HAT;

 

import java.util.Random;

 

import net.minecraft.block.Block;

import net.minecraft.block.BlockRotatedPillar;

import net.minecraft.block.material.Material;

import net.minecraft.client.renderer.texture.IIconRegister;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.item.Item;

import net.minecraft.util.IIcon;

import net.minecraft.world.IBlockAccess;

import net.minecraft.world.World;

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

 

public abstract class palmlog extends BlockRotatedPillar

{

    @SideOnly(Side.CLIENT)

    protected IIcon[] field_150167_a;

    @SideOnly(Side.CLIENT)

    protected IIcon[] field_150166_b;

    private static final String __OBFID = "CL_00000266";

    public static final String[] TOP ={"topIcon1Name"};

    public static final String[] SIDE ={"SIDEIcon1Name"};

    private IIcon[] topIcon;

    private IIcon[] sideIcon;

   

    public palmlog()

    {

        super(Material.wood);

        this.setHardness(2.0F);

        this.setStepSound(soundTypeWood);

    }

 

    public static int func_150165_c(int p_150165_0_)

    {

        return p_150165_0_ & 3;

    }

 

    /**

    * Returns the quantity of items to drop on block destruction.

    */

    public int quantityDropped(Random p_149745_1_)

    {

        return 1;

    }

 

    public Item getItemDropped(int p_149650_1_, Random p_149650_2_, int p_149650_3_)

    {

        return Item.getItemFromBlock(this);

    }

 

    public void breakBlock(World p_149749_1_, int p_149749_2_, int p_149749_3_, int p_149749_4_, Block p_149749_5_, int p_149749_6_)

    {

        byte b0 = 4;

        int i1 = b0 + 1;

 

        if (p_149749_1_.checkChunksExist(p_149749_2_ - i1, p_149749_3_ - i1, p_149749_4_ - i1, p_149749_2_ + i1, p_149749_3_ + i1, p_149749_4_ + i1))

        {

            for (int j1 = -b0; j1 <= b0; ++j1)

            {

                for (int k1 = -b0; k1 <= b0; ++k1)

                {

                    for (int l1 = -b0; l1 <= b0; ++l1)

                    {

                        Block block = p_149749_1_.getBlock(p_149749_2_ + j1, p_149749_3_ + k1, p_149749_4_ + l1);

                        if (block.isLeaves(p_149749_1_, p_149749_2_ + j1, p_149749_3_ + k1, p_149749_4_ + l1))

                        {

                            block.beginLeavesDecay(p_149749_1_, p_149749_2_ + j1, p_149749_3_ + k1, p_149749_4_ + l1);

                        }

                    }

                }

            }

        }

    }

    public void registerBlockIcons(IIconRegister iIconRegister){

    topIcon = new IIcon[TOP.length];

    sideIcon = new IIcon[sIDE.length];

   

    for (int i =0; i < TOP.length;i++){

    topIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Top");

    sideIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Side");

    }

    }

   

    @SideOnly(Side.CLIENT)

    @Override

    protected IIcon getSideIcon(int metadata)

    {

        return sideIcon[1];

    }

 

    @SideOnly(Side.CLIENT)

    @Override

    protected IIcon getTopIcon(int metadata)

    {

        return topIcon[1];

    }

 

 

    @Override

    public boolean canSustainLeaves(IBlockAccess world, int x, int y, int z)

    {

        return true;

    }

 

    @Override

    public boolean isWood(IBlockAccess world, int x, int y, int z)

    {

        return true;

    }

}

 

any text in red highlight is the part eclipse registers as errors.

 

public void registerBlockIcons(IIconRegister iIconRegister){

    topIcon = new IIcon[TOP.length];

    sideIcon = new IIcon[sIDE.length];

   

    for (int i =0; i < TOP.length;i++){

    topIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Top");

    sideIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Side");

    }

    }

 

The errors here want to change this

private IIcon topIcon[];

    private IIcon sideIcon[];

into
private IIcon topIcon;

    private IIcon sideIcon;

which of course causes array type errors down here
  @SideOnly(Side.CLIENT)

    @Override

    protected IIcon getSideIcon(int metadata)

    {

        return sideIcon[1];

    }

 

    @SideOnly(Side.CLIENT)

    @Override

    protected IIcon getTopIcon(int metadata)

    {

        return topIcon[1];

    }

 

without resolving these errors

public void registerBlockIcons(IIconRegister iIconRegister){

    topIcon = new IIcon[TOP.length];

    sideIcon = new IIcon[sIDE.length];

   

    for (int i =0; i < TOP.length;i++){

    topIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Top");

    sideIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Side");

    }

    }

 

Then it will want to change

private IIcon topIcon;

    private IIcon sideIcon;

into
private IIcon[] topIcon;

    private IIcon[] sideIcon;

and again get these errors 
public void registerBlockIcons(IIconRegister iIconRegister){

    topIcon = new IIcon[TOP.length];

    sideIcon = new IIcon[sIDE.length];

   

    for (int i =0; i < TOP.length;i++){

    topIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Top");

    sideIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Side");

    }

    }

and to fix will try change
private IIcon[] topIcon;

    private IIcon[] sideIcon;

back to
private IIcon topIcon;

    private IIcon sideIcon;

which then keeps looping back through "solutions" which dont work.
Link to comment
Share on other sites

In the registerIcons method, you need to change the second topIcon array to an actual array using topIcon = ***;

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

Yes that the class, but if you look at the parameter name you will see that it's called iIconRegister, as when you write code in java the common way to name variables is to uncap the first word.

Link to comment
Share on other sites

ok im confused with you all saying different things so Godis_apan change this to what you think it should be

package hat.blocks.palmblocks;

 

import hat.HAT;

 

import java.util.Random;

 

import net.minecraft.block.Block;

import net.minecraft.block.BlockRotatedPillar;

import net.minecraft.block.material.Material;

import net.minecraft.client.renderer.texture.IIconRegister;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.item.Item;

import net.minecraft.util.IIcon;

import net.minecraft.world.IBlockAccess;

import net.minecraft.world.World;

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

 

public abstract class palmlog extends BlockRotatedPillar

{

    @SideOnly(Side.CLIENT)

    protected IIcon[] field_150167_a;

    @SideOnly(Side.CLIENT)

    protected IIcon[] field_150166_b;

    private static final String __OBFID = "CL_00000266";

    public static final String[] TOP ={"topIcon1Name"};

    public static final String[] SIDE ={"SIDEIcon1Name"};

    private IIcon topIcon[];

    private IIcon sideIcon[];

   

    public palmlog()

    {

        super(Material.wood);

        this.setHardness(2.0F);

        this.setStepSound(soundTypeWood);

    }

 

    public static int func_150165_c(int p_150165_0_)

    {

        return p_150165_0_ & 3;

    }

 

    /**

    * Returns the quantity of items to drop on block destruction.

    */

    public int quantityDropped(Random p_149745_1_)

    {

        return 1;

    }

 

    public Item getItemDropped(int p_149650_1_, Random p_149650_2_, int p_149650_3_)

    {

        return Item.getItemFromBlock(this);

    }

 

    public void breakBlock(World p_149749_1_, int p_149749_2_, int p_149749_3_, int p_149749_4_, Block p_149749_5_, int p_149749_6_)

    {

        byte b0 = 4;

        int i1 = b0 + 1;

 

        if (p_149749_1_.checkChunksExist(p_149749_2_ - i1, p_149749_3_ - i1, p_149749_4_ - i1, p_149749_2_ + i1, p_149749_3_ + i1, p_149749_4_ + i1))

        {

            for (int j1 = -b0; j1 <= b0; ++j1)

            {

                for (int k1 = -b0; k1 <= b0; ++k1)

                {

                    for (int l1 = -b0; l1 <= b0; ++l1)

                    {

                        Block block = p_149749_1_.getBlock(p_149749_2_ + j1, p_149749_3_ + k1, p_149749_4_ + l1);

                        if (block.isLeaves(p_149749_1_, p_149749_2_ + j1, p_149749_3_ + k1, p_149749_4_ + l1))

                        {

                            block.beginLeavesDecay(p_149749_1_, p_149749_2_ + j1, p_149749_3_ + k1, p_149749_4_ + l1);

                        }

                    }

                }

            }

        }

    }

    public void registerBlockIcons(IIconRegister iIconRegister){

    topIcon = new IIcon[TOP.length];

    sideIcon = new IIcon[sIDE.length];

   

    for (int i =0; i < TOP.length;i++){

    topIcon = IIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Top");

    sideIcon = IIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Side");

    }

    }

   

    @SideOnly(Side.CLIENT)

    @Override

    protected IIcon getSideIcon(int metadata)

    {

        return sideIcon[1];

    }

 

    @SideOnly(Side.CLIENT)

    @Override

    protected IIcon getTopIcon(int metadata)

    {

        return topIcon[1];

    }

 

 

    @Override

    public boolean canSustainLeaves(IBlockAccess world, int x, int y, int z)

    {

        return true;

    }

 

    @Override

    public boolean isWood(IBlockAccess world, int x, int y, int z)

    {

        return true;

    }

}

Link to comment
Share on other sites

Yes but you can remove all this: 

 

 @SideOnly(Side.CLIENT)
    protected IIcon[] field_150167_a;
    @SideOnly(Side.CLIENT)
    protected IIcon[] field_150166_b;
    private static final String __OBFID = "CL_00000266";

 

And they should return 0, like this:

 

    @SideOnly(Side.CLIENT)
    @Override
    protected IIcon getSideIcon(int metadata)
    {
        return sideIcon[0];
    }

    @SideOnly(Side.CLIENT)
    @Override
    protected IIcon getTopIcon(int metadata)
    {
        return topIcon[0];
    }

Link to comment
Share on other sites

ok done that but still shows errors

for (int i =0; i < TOP.length;i++){

    topIcon = IIconRegister(HAT.MODID + ":Palm_Wood_Log" + "_Top");

    sideIcon = IIconRegisterr(HAT.MODID + ":Palm_Wood_Log" + "_Side");

in which case eclipse needs a method  "IIconRegister(string)" or as was before

for (int i =0; i < TOP.length;i++){

    topIcon = IIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Top");

    sideIcon = IIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Side");

which goes into that loop

Link to comment
Share on other sites

TGG, i know that, it's just that majesticmadman98, no offence, hasn't really got my point here. I my first or second message I explaind it all, just missed to add the little after the icons. But here's a finished code exaktly like you should have it:

 

public static final String[] TOP = {"Palm_Wood_Log_Top"};
public static final String[] SIDE = {"Palm_Wood_Log_Side"};

private IIcon[] topIcon;
private IIcon[] sideIcon;

public void registerBlockIcons(IIconRegister iIconRegister)
{
      topIcon = new IIcon[this.TOP.length];
      sideIcon = new IIcon[this.SIDE.length];

      for (int i = 0; i < TOP.lenngth; i++)
      {
            topIcon[i] = iIconRegister.registerIcon(HAT.MODID + ":" + this.TOP);
            sideIcon[i] = iIconRegister.registerIcon(HAT.MODID + ":" + this.SIDE)
      }
   
}

@SideOnly(Side.CLIENT)
    @Override
    protected IIcon getSideIcon(int metadata)
    {
        return sideIcon[metadata];
    }

    @SideOnly(Side.CLIENT)
    @Override
    protected IIcon getTopIcon(int metadata)
    {
        return topIcon[metadata];
    }

 

You shouldm't have to change anything

Link to comment
Share on other sites

no offense taken, ok the class file is done with no errors but i presume is missing something as in the main file here

palmlog = new palmlog().setBlockName("palmlog").setCreativeTab(hatblocksTab);
it says "Cannot Intitate the type palmlog" which is the part that usually links to the class which is called "palm log". Sorry for being such a pain on this tree building stuff the help is really appreciated guys, sorry if it was hard work to get this far.

 

Main class(things to do with the log will be in green)

 

package hat;

 

 

import hat.blocks.dyeblocks.dyeblock1;

import hat.blocks.dyeblocks.dyeblock10;

import hat.blocks.dyeblocks.dyeblock11;

import hat.blocks.dyeblocks.dyeblock12;

import hat.blocks.dyeblocks.dyeblock13;

import hat.blocks.dyeblocks.dyeblock14;

import hat.blocks.dyeblocks.dyeblock15;

import hat.blocks.dyeblocks.dyeblock16;

import hat.blocks.dyeblocks.dyeblock2;

import hat.blocks.dyeblocks.dyeblock3;

import hat.blocks.dyeblocks.dyeblock4;

import hat.blocks.dyeblocks.dyeblock5;

import hat.blocks.dyeblocks.dyeblock6;

import hat.blocks.dyeblocks.dyeblock7;

import hat.blocks.dyeblocks.dyeblock8;

import hat.blocks.dyeblocks.dyeblock9;

import hat.blocks.palmblocks.palmleaves;

import hat.blocks.palmblocks.palmlog;

import hat.blocks.palmblocks.palmlogcomplex;

import hat.blocks.palmblocks.palmplank;

import hat.blocks.palmblocks.palmsapling;

import hat.items.combat.mace;

import hat.items.materials.cingot;

import hat.items.materials.cmixture;

import hat.items.materials.singot;

import hat.items.materials.smixture;

import hat.items.materials.wax;

import hat.tabs.icons.blocktabicon;

import hat.tabs.icons.combattabicon;

import hat.tabs.icons.materialtabicon;

import net.minecraft.block.Block;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.init.Blocks;

import net.minecraft.init.Items;

import net.minecraft.item.Item;

import net.minecraft.item.Item.ToolMaterial;

import net.minecraft.item.ItemStack;

import net.minecraftforge.common.util.EnumHelper;

import net.minecraftforge.oredict.OreDictionary;

import cpw.mods.fml.common.Mod;

import cpw.mods.fml.common.Mod.EventHandler;

import cpw.mods.fml.common.SidedProxy;

import cpw.mods.fml.common.event.FMLInitializationEvent;

import cpw.mods.fml.common.event.FMLPreInitializationEvent;

import cpw.mods.fml.common.registry.GameRegistry;

 

@Mod(modid = HAT.MODID, version = HAT.VERSION)

public class HAT

{

    public static final String MODID = "hat";

    public static final String VERSION = "1.0";

   

   

    @SidedProxy(clientSide = "hat.ClientProxy", serverSide = "hat.CommonProxy")

    public static CommonProxy proxy;

   

    //Tabs

    //tab method = new tab();

   

   

   

   

   

    public static CreativeTabs hatblocksTab = new CreativeTabs("hatblocksTab"){

    @Override

    public Item getTabIconItem() {

            return Item.getItemFromBlock(palmplank);

}

    };

   

    public static CreativeTabs hatmaterialsTab = new CreativeTabs("hatmaterialsTab"){

        @Override

  public Item getTabIconItem() {

            return materialtabicon;

  }

        };

       

        public static CreativeTabs hatcombatTab = new CreativeTabs("hatcombatTab"){

            @Override

      public Item getTabIconItem() {

              return combattabicon;

      }

          };

         

          public static CreativeTabs hatmusicTab = new CreativeTabs("hatmusicTab"){

              @Override

        public Item getTabIconItem() {

                  return Items.baked_potato;

        }

              };

             

              public static CreativeTabs hatlightningTab = new CreativeTabs("hatlightningTab"){

                  @Override

            public Item getTabIconItem() {

                    return Items.baked_potato;

            }

                };

 

                public static CreativeTabs hatmachinesTab = new CreativeTabs("hatmachinesTab"){

                    @Override

              public Item getTabIconItem() {

                        return Items.baked_potato;

              }

                    };

 

                    public static CreativeTabs hattrapsTab = new CreativeTabs("hattrapsTab"){

                        @Override

                  public Item getTabIconItem() {

                          return Items.baked_potato;

                  }

                      };

 

                      public static CreativeTabs hattransportTab = new CreativeTabs("hattransportTab"){

                          @Override

                    public Item getTabIconItem() {

                              return Items.baked_potato;

                    }

                          };

                         

                          public static CreativeTabs hatmiscTab = new CreativeTabs("hatmiscTab"){

                              @Override

                        public Item getTabIconItem() {

                                return Items.baked_potato;

                        }

                            };

                         

                          //Dye Block Defining

                        public static Block dyeblock1;

                          public static Block dyeblock2;

                          public static Block dyeblock3;

                          public static Block dyeblock4;

                          public static Block dyeblock5;

                          public static Block dyeblock6;

                          public static Block dyeblock7;

                          public static Block dyeblock8;

                          public static Block dyeblock9;

                          public static Block dyeblock10;

                          public static Block dyeblock11;

                          public static Block dyeblock12;

                          public static Block dyeblock13;

                          public static Block dyeblock14;

                          public static Block dyeblock15;

                          public static Block dyeblock16;

                         

                          //Palm Defining

                        public static Block palmlog;

                          public static Block palmplank;

                          public static Block palmleaves;

                          public static Block palmsapling;

                         

                          //material

                          public static ToolMaterial macematerial = EnumHelper.addToolMaterial("macematerial", 3, 1000, 5.0F, 6.0F, 10);

                         

                          //Item Defining

                          public static Item wax = new wax().setUnlocalizedName("wax").setCreativeTab(hatmaterialsTab);

                          public static Item cingot = new cingot().setUnlocalizedName("cingot").setCreativeTab(hatmaterialsTab);

                          public static Item cmixture = new cmixture().setUnlocalizedName("cmixture").setCreativeTab(hatmaterialsTab);

                          public static Item singot = new singot().setUnlocalizedName("singot").setCreativeTab(hatmaterialsTab);

                          public static Item smixture = new smixture().setUnlocalizedName("smixture").setCreativeTab(hatmaterialsTab);

                         

                          //weapon Defining

                          public static Item mace;

                         

                          //icon item defining

                          public static Item blocktabicon = new blocktabicon().setUnlocalizedName("blocktabicon");

                          public static Item materialtabicon = new materialtabicon().setUnlocalizedName("materialtabicon");

                          public static Item combattabicon = new combattabicon().setUnlocalizedName("combattabicon");

                         

                          //Dye block settings

        @EventHandler

        public void preInit(FMLPreInitializationEvent event){

        dyeblock1 = new dyeblock1().setBlockName("dyeblock1").setCreativeTab(hatblocksTab);

        GameRegistry.registerBlock(dyeblock1, "dyeblock1");

       

        dyeblock2 = new dyeblock2().setBlockName("dyeblock2").setCreativeTab(hatblocksTab);

        GameRegistry.registerBlock(dyeblock2, "dyeblock2");

       

          dyeblock3 = new dyeblock3().setBlockName("dyeblock3").setCreativeTab(hatblocksTab);

          GameRegistry.registerBlock(dyeblock3, "dyeblock3");

       

        dyeblock4 = new dyeblock4().setBlockName("dyeblock4").setCreativeTab(hatblocksTab);

        GameRegistry.registerBlock(dyeblock4, "dyeblock4");

       

          dyeblock5 = new dyeblock5().setBlockName("dyeblock5").setCreativeTab(hatblocksTab);

          GameRegistry.registerBlock(dyeblock5, "dyeblock5");

       

          dyeblock6 = new dyeblock6().setBlockName("dyeblock6").setCreativeTab(hatblocksTab);

          GameRegistry.registerBlock(dyeblock6, "dyeblock6");

       

          dyeblock7 = new dyeblock7().setBlockName("dyeblock7").setCreativeTab(hatblocksTab);

          GameRegistry.registerBlock(dyeblock7, "dyeblock7");

       

          dyeblock8 = new dyeblock8().setBlockName("dyeblock8").setCreativeTab(hatblocksTab);

          GameRegistry.registerBlock(dyeblock8, "dyeblock8");

       

          dyeblock9 = new dyeblock9().setBlockName("dyeblock9").setCreativeTab(hatblocksTab);

          GameRegistry.registerBlock(dyeblock9, "dyeblock9");

       

          dyeblock10 = new dyeblock10().setBlockName("dyeblock10").setCreativeTab(hatblocksTab);

          GameRegistry.registerBlock(dyeblock10, "dyeblock10");

       

          dyeblock11 = new dyeblock11().setBlockName("dyeblock11").setCreativeTab(hatblocksTab);

          GameRegistry.registerBlock(dyeblock11, "dyeblock11");

       

          dyeblock12 = new dyeblock12().setBlockName("dyeblock12").setCreativeTab(hatblocksTab);

          GameRegistry.registerBlock(dyeblock12, "dyeblock12");

       

        dyeblock13 = new dyeblock13().setBlockName("dyeblock13").setCreativeTab(hatblocksTab);

        GameRegistry.registerBlock(dyeblock13, "dyeblock13");

       

        dyeblock14 = new dyeblock14().setBlockName("dyeblock14").setCreativeTab(hatblocksTab);

        GameRegistry.registerBlock(dyeblock14, "dyeblock14");

       

        dyeblock15 = new dyeblock15().setBlockName("dyeblock15").setCreativeTab(hatblocksTab);

        GameRegistry.registerBlock(dyeblock15, "dyeblock15");

       

        dyeblock16 = new dyeblock16().setBlockName("dyeblock16").setCreativeTab(hatblocksTab);

        GameRegistry.registerBlock(dyeblock16, "dyeblock16");

       

        //Palm Settings

            palmlog = new palmlog().setBlockName("palmlog").setCreativeTab(hatblocksTab);

        palmplank = new palmplank().setBlockName("palmplank").setCreativeTab(hatblocksTab);

        // palmleaves = new palmleaves().setBlockName("palmleaves").setCreativeTab(hatblocksTab);

        //palmsapling = new palmsapling().setBlockName("palmsapling").setCreativeTab(hatblocksTab);

       

        //weapon defining

            Item mace = new mace(macematerial).setUnlocalizedName("mace").setCreativeTab(hatcombatTab);

       

            //Food

           

        //Dye Block Registry

       

        //Palm Registry

            GameRegistry.registerBlock(palmplank, "palmplank");

            OreDictionary.registerOre("plankWood", palmplank);

        GameRegistry.registerBlock(palmlog, "palmlog");      

        // GameRegistry.registerBlock(palmleaves, "palmleaves");

       

        //Item Registry

        GameRegistry.registerItem(wax, "wax");

        GameRegistry.registerItem(cingot, "cingot");

        GameRegistry.registerItem(cmixture, "cmixture");

        GameRegistry.registerItem(singot, "singot");

        GameRegistry.registerItem(smixture, "smixture");

       

        //weapon registry

        GameRegistry.registerItem(mace, "mace");

       

        //Tab icon registry

        GameRegistry.registerItem(blocktabicon, "blocktabicon");

        GameRegistry.registerItem(materialtabicon, "materialtabicon");

        GameRegistry.registerItem(combattabicon, "combattabicon");

       

        //Dye Block Recipes

        GameRegistry.addRecipe(new ItemStack(dyeblock4, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1) });

        GameRegistry.addRecipe(new ItemStack(dyeblock3, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,1) });

          GameRegistry.addRecipe(new ItemStack(dyeblock5, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,2) });

        GameRegistry.addRecipe(new ItemStack(dyeblock6, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,3) });

        GameRegistry.addRecipe(new ItemStack(dyeblock7, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,4) });

        GameRegistry.addRecipe(new ItemStack(dyeblock8, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,5) });

        GameRegistry.addRecipe(new ItemStack(dyeblock9, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,6) });

        GameRegistry.addRecipe(new ItemStack(dyeblock2, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,7) });

        GameRegistry.addRecipe(new ItemStack(dyeblock10, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,8) });

        GameRegistry.addRecipe(new ItemStack(dyeblock11, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,9) });

        GameRegistry.addRecipe(new ItemStack(dyeblock12, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,10) });

        GameRegistry.addRecipe(new ItemStack(dyeblock13, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,11) });

        GameRegistry.addRecipe(new ItemStack(dyeblock14, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,12) });

        GameRegistry.addRecipe(new ItemStack(dyeblock15, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,13) });

        GameRegistry.addRecipe(new ItemStack(dyeblock16, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,14) });

        GameRegistry.addRecipe(new ItemStack(dyeblock1, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,15)});

       

            //Vanilla Changed Recipes

        GameRegistry.addShapelessRecipe(new ItemStack(Items.string, 4), new Object [] {Blocks.wool});

        GameRegistry.addShapelessRecipe(new ItemStack(Blocks.mossy_cobblestone, 4), new Object [] {Blocks.cobblestone, Blocks.vine});

        GameRegistry.addShapelessRecipe(new ItemStack(Items.name_tag, 2), new Object [] {Items.string, Items.paper});

        GameRegistry.addRecipe(new ItemStack(Items.iron_horse_armor, 1), new Object[] {"  I","II "," W ", 'I', new ItemStack(Items.iron_ingot,1), 'W', new ItemStack(Blocks.wool, 1)});

        GameRegistry.addRecipe(new ItemStack(Items.golden_horse_armor, 1), new Object[] {"  I","II "," W ", 'I', new ItemStack(Items.gold_ingot,1), 'W', new ItemStack(Blocks.wool, 1)});

        GameRegistry.addRecipe(new ItemStack(Items.diamond_horse_armor, 1), new Object[] {"  I","II "," W ", 'I', new ItemStack(Items.diamond,1), 'W', new ItemStack(Blocks.wool, 1)});

       

        //material

        GameRegistry.addRecipe(new ItemStack(cmixture, 1), new Object[] {"  ","RGR","  ", 'R', new ItemStack(Items.redstone,1), 'G', new ItemStack(Items.gold_ingot, 1)});

        GameRegistry.addRecipe(new ItemStack(smixture, 1), new Object[] {"  ","RGR","  ", 'R', new ItemStack(Items.coal,1), 'G', new ItemStack(Items.iron_ingot, 1)});

        GameRegistry.addRecipe(new ItemStack(smixture, 1), new Object[] {"  ","RGR","  ", 'R', new ItemStack(Items.coal,1,1), 'G', new ItemStack(Items.iron_ingot, 1)});

       

        //smelting

        GameRegistry.addSmelting(Items.reeds, new ItemStack(wax), 0F);

        GameRegistry.addSmelting(cmixture, new ItemStack(cingot), 0F);

        GameRegistry.addSmelting(smixture, new ItemStack(singot), 0F);

       

        }

                     

        @EventHandler

    public void init(FMLInitializationEvent event)

    {

       

    }

}

 

 

 

and the class

 

 

package hat.blocks.palmblocks;

 

import hat.HAT;

 

import java.util.Random;

 

import net.minecraft.block.Block;

import net.minecraft.block.BlockRotatedPillar;

import net.minecraft.block.material.Material;

import net.minecraft.client.renderer.texture.IIconRegister;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.item.Item;

import net.minecraft.util.IIcon;

import net.minecraft.world.IBlockAccess;

import net.minecraft.world.World;

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

 

public abstract class palmlog extends BlockRotatedPillar

{

 

    public static final String[] TOP ={"Palm_Wood_Log_Top"};

    public static final String[] SIDE ={"Palm_Wood_Log_Side"};

    public IIcon topIcon[];

    public IIcon sideIcon[];

   

    public palmlog()

    {

        super(Material.wood);

        this.setHardness(2.0F);

        this.setStepSound(soundTypeWood);

    }

 

    public static int func_150165_c(int p_150165_0_)

    {

        return p_150165_0_ & 3;

    }

 

    /**

    * Returns the quantity of items to drop on block destruction.

    */

    public int quantityDropped(Random p_149745_1_)

    {

        return 1;

    }

 

    public Item getItemDropped(int p_149650_1_, Random p_149650_2_, int p_149650_3_)

    {

        return Item.getItemFromBlock(this);

    }

 

    public void breakBlock(World p_149749_1_, int p_149749_2_, int p_149749_3_, int p_149749_4_, Block p_149749_5_, int p_149749_6_)

    {

        byte b0 = 4;

        int i1 = b0 + 1;

 

        if (p_149749_1_.checkChunksExist(p_149749_2_ - i1, p_149749_3_ - i1, p_149749_4_ - i1, p_149749_2_ + i1, p_149749_3_ + i1, p_149749_4_ + i1))

        {

            for (int j1 = -b0; j1 <= b0; ++j1)

            {

                for (int k1 = -b0; k1 <= b0; ++k1)

                {

                    for (int l1 = -b0; l1 <= b0; ++l1)

                    {

                        Block block = p_149749_1_.getBlock(p_149749_2_ + j1, p_149749_3_ + k1, p_149749_4_ + l1);

                        if (block.isLeaves(p_149749_1_, p_149749_2_ + j1, p_149749_3_ + k1, p_149749_4_ + l1))

                        {

                            block.beginLeavesDecay(p_149749_1_, p_149749_2_ + j1, p_149749_3_ + k1, p_149749_4_ + l1);

                        }

                    }

                }

            }

        }

    }

    public void registerBlockIcons(IIconRegister iIconRegister){

    topIcon = new IIcon[this.TOP.length];

    sideIcon = new IIcon[this.SIDE.length];

   

    for (int i =0; i < TOP.length;i++){

    topIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Top");

    sideIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Side");

    }

    }

   

    @SideOnly(Side.CLIENT)

    @Override

    protected IIcon getSideIcon(int metadata)

    {

        return sideIcon[metadata];

    }

 

    @SideOnly(Side.CLIENT)

    @Override

    protected IIcon getTopIcon(int metadata)

    {

        return topIcon[metadata];

    }

 

 

    @Override

    public boolean canSustainLeaves(IBlockAccess world, int x, int y, int z)

    {

        return true;

    }

 

    @Override

    public boolean isWood(IBlockAccess world, int x, int y, int z)

    {

        return true;

    }

}

 

Link to comment
Share on other sites

Class names should always start with in initial Capital letter (including the constructors). Nothing else that is a symbol should, except manifest constants (ALL CAPS). Otherwise, you get completely hard to debug code that has errors as you can see, with no idea why.

 

Hint:

 

 

Your import statement does not import any classes.

 

2nd hint:

 

 

import hat.blocks.palmblocks.palmlog;

 

^ This could be a file named "palmblocks" containing a class "palmlog" or it may be a file "palmlog" which imports nothing! There is no class name, but you cannot tell because your class names are lowercased!

 

 

 

 

Link to comment
Share on other sites

A brief suggestion:

 

Use this icon array declaration at the beginning of your class. This sets the amount of icons we will be working with.

 

private IIcon[] icon = new IIcon[however_many_icons_you_need_as_an_integer];

 

Now that you've declared the number of icons to use, we need to determine on which side (and/or on which metadata) to load them:

 

@Override
@SideOnly(Side.CLIENT)
public IIcon getIcon(int side, int metadata)
{
     // 0 = bottom, 1 = top, for individual sides, please refer to BlockFurnace
}

 

Now that you've got all that, we need to register the icons so that they'll load in game:

 

@Override
@SideOnly(Side.CLIENT)
public void registerBlockIcons(IIconRegister ir)
{
     this.icon[0] = ir.registerIcon(""); // For loading textures, please refer to the hundred tutorials. I don't want to write out directory related stuff.
     // Let's say you declared 4 icons at the top. Using the number 0 as I did above uses one of the icons from our array. Still confused? Read more about arrays.
     // Now continue what I did above for each of your textures.
}

 

Hope this helps! :)

Link to comment
Share on other sites

hey thanks for the suggestion but I'm currently using what Godis_apan said, but i cant test it as something about the block class stops the main class using the class

 

What you are effectively doing is

palmlog palmlog;
palmlog = new palmlog();

That is very obviously going to cause trouble because your compiler can't tell whether palmlog is the class definition, or the variable.

 

That is why everyone names classes in CamelCase

i.e.

Palmlog palmlog = new Palmlog();

 

If you don't stick to these conventions you're going to make yourself very unpopular with anyone who has to read or debug your code.

 

-TGG

 

Link to comment
Share on other sites

ok heres the parts refering to the palm log now still with the erro and the palm log class.

package hat;

 

 

import hat.blocks.dyeblocks.dyeblock1;

import hat.blocks.dyeblocks.dyeblock10;

import hat.blocks.dyeblocks.dyeblock11;

import hat.blocks.dyeblocks.dyeblock12;

import hat.blocks.dyeblocks.dyeblock13;

import hat.blocks.dyeblocks.dyeblock14;

import hat.blocks.dyeblocks.dyeblock15;

import hat.blocks.dyeblocks.dyeblock16;

import hat.blocks.dyeblocks.dyeblock2;

import hat.blocks.dyeblocks.dyeblock3;

import hat.blocks.dyeblocks.dyeblock4;

import hat.blocks.dyeblocks.dyeblock5;

import hat.blocks.dyeblocks.dyeblock6;

import hat.blocks.dyeblocks.dyeblock7;

import hat.blocks.dyeblocks.dyeblock8;

import hat.blocks.dyeblocks.dyeblock9;

import hat.blocks.palmblocks.palmleaves;

import hat.blocks.palmblocks.PalmLog;

import hat.blocks.palmblocks.palmlogcomplex;

import hat.blocks.palmblocks.palmplank;

import hat.blocks.palmblocks.palmsapling;

import hat.items.combat.mace;

import hat.items.materials.cingot;

import hat.items.materials.cmixture;

import hat.items.materials.singot;

import hat.items.materials.smixture;

import hat.items.materials.wax;

import hat.tabs.icons.blocktabicon;

import hat.tabs.icons.combattabicon;

import hat.tabs.icons.materialtabicon;

import net.minecraft.block.Block;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.init.Blocks;

import net.minecraft.init.Items;

import net.minecraft.item.Item;

import net.minecraft.item.Item.ToolMaterial;

import net.minecraft.item.ItemStack;

import net.minecraftforge.common.util.EnumHelper;

import net.minecraftforge.oredict.OreDictionary;

import cpw.mods.fml.common.Mod;

import cpw.mods.fml.common.Mod.EventHandler;

import cpw.mods.fml.common.SidedProxy;

import cpw.mods.fml.common.event.FMLInitializationEvent;

import cpw.mods.fml.common.event.FMLPreInitializationEvent;

import cpw.mods.fml.common.registry.GameRegistry;

 

@Mod(modid = HAT.MODID, version = HAT.VERSION)

public class HAT

{

    public static final String MODID = "hat";

    public static final String VERSION = "1.0";

   

   

    @SidedProxy(clientSide = "hat.ClientProxy", serverSide = "hat.CommonProxy")

    public static CommonProxy proxy;

 

  //Palm Defining

                          public static Block palmlog;

 

palmlog = new PalmLog().setBlockName("palmlog").setCreativeTab(hatblocksTab);

 

GameRegistry.registerBlock(palmlog, "palmlog");

 

 

 

 

 

package hat.blocks.palmblocks;

 

import hat.HAT;

 

import java.util.Random;

 

import net.minecraft.block.Block;

import net.minecraft.block.BlockRotatedPillar;

import net.minecraft.block.material.Material;

import net.minecraft.client.renderer.texture.IIconRegister;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.item.Item;

import net.minecraft.util.IIcon;

import net.minecraft.world.IBlockAccess;

import net.minecraft.world.World;

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

 

public abstract class PalmLog extends BlockRotatedPillar

{

 

    public static final String[] TOP ={"Palm_Wood_Log_Top"};

    public static final String[] SIDE ={"Palm_Wood_Log_Side"};

    public IIcon topIcon[];

    public IIcon sideIcon[];

   

    public PalmLog()

    {

        super(Material.wood);

        this.setHardness(2.0F);

        this.setStepSound(soundTypeWood);

    }

 

    public static int func_150165_c(int p_150165_0_)

    {

        return p_150165_0_ & 3;

    }

 

    /**

    * Returns the quantity of items to drop on block destruction.

    */

    public int quantityDropped(Random p_149745_1_)

    {

        return 1;

    }

 

    public Item getItemDropped(int p_149650_1_, Random p_149650_2_, int p_149650_3_)

    {

        return Item.getItemFromBlock(this);

    }

 

    public void breakBlock(World p_149749_1_, int p_149749_2_, int p_149749_3_, int p_149749_4_, Block p_149749_5_, int p_149749_6_)

    {

        byte b0 = 4;

        int i1 = b0 + 1;

 

        if (p_149749_1_.checkChunksExist(p_149749_2_ - i1, p_149749_3_ - i1, p_149749_4_ - i1, p_149749_2_ + i1, p_149749_3_ + i1, p_149749_4_ + i1))

        {

            for (int j1 = -b0; j1 <= b0; ++j1)

            {

                for (int k1 = -b0; k1 <= b0; ++k1)

                {

                    for (int l1 = -b0; l1 <= b0; ++l1)

                    {

                        Block block = p_149749_1_.getBlock(p_149749_2_ + j1, p_149749_3_ + k1, p_149749_4_ + l1);

                        if (block.isLeaves(p_149749_1_, p_149749_2_ + j1, p_149749_3_ + k1, p_149749_4_ + l1))

                        {

                            block.beginLeavesDecay(p_149749_1_, p_149749_2_ + j1, p_149749_3_ + k1, p_149749_4_ + l1);

                        }

                    }

                }

            }

        }

    }

    public void registerBlockIcons(IIconRegister iIconRegister){

    topIcon = new IIcon[this.TOP.length];

    sideIcon = new IIcon[this.SIDE.length];

   

    for (int i =0; i < TOP.length;i++){

    topIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Top");

    sideIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Side");

    }

    }

   

    @SideOnly(Side.CLIENT)

    @Override

    protected IIcon getSideIcon(int metadata)

    {

        return sideIcon[metadata];

    }

 

    @SideOnly(Side.CLIENT)

    @Override

    protected IIcon getTopIcon(int metadata)

    {

        return topIcon[metadata];

    }

 

 

    @Override

    public boolean canSustainLeaves(IBlockAccess world, int x, int y, int z)

    {

        return true;

    }

 

    @Override

    public boolean isWood(IBlockAccess world, int x, int y, int z)

    {

        return true;

    }

}

 

Link to comment
Share on other sites

Unless you are purposely snipping parts of your code, there are two problems.

You have not created any event handlers for FML to initialize your mod. So, none of your main mod code is getting executed.

Put

@EventHandler
public static void load(FMLPreinitializationEvent loadEvent) {
//  put your block and item creation code in here
}

Do the same for FMLInitializationEvent with another method.

The other thing is:

for (int i =0; i < TOP.length;i++){
          topIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Top");
          sideIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Side");
       }

needs to be:

int i;
for (i =0; i < TOP.length;i++){
      topIcon[i] = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log_Top" + i);
      }
for (i =0; i < SIDE.length;i++){
      sideIcon[i] = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log_Side" + i);
      }

If TOP.length == SIDE.length, you can merge the loops, like you had. You need to use the [ i ] notation.

Link to comment
Share on other sites

yeah i snipped bits to but on here because i didnt think people would appreciate having to look through this

package hat;

 

 

import hat.blocks.dyeblocks.dyeblock1;

import hat.blocks.dyeblocks.dyeblock10;

import hat.blocks.dyeblocks.dyeblock11;

import hat.blocks.dyeblocks.dyeblock12;

import hat.blocks.dyeblocks.dyeblock13;

import hat.blocks.dyeblocks.dyeblock14;

import hat.blocks.dyeblocks.dyeblock15;

import hat.blocks.dyeblocks.dyeblock16;

import hat.blocks.dyeblocks.dyeblock2;

import hat.blocks.dyeblocks.dyeblock3;

import hat.blocks.dyeblocks.dyeblock4;

import hat.blocks.dyeblocks.dyeblock5;

import hat.blocks.dyeblocks.dyeblock6;

import hat.blocks.dyeblocks.dyeblock7;

import hat.blocks.dyeblocks.dyeblock8;

import hat.blocks.dyeblocks.dyeblock9;

import hat.blocks.palmblocks.palmleaves;

import hat.blocks.palmblocks.PalmLog;

import hat.blocks.palmblocks.palmlogcomplex;

import hat.blocks.palmblocks.palmplank;

import hat.blocks.palmblocks.palmsapling;

import hat.items.combat.mace;

import hat.items.materials.cingot;

import hat.items.materials.cmixture;

import hat.items.materials.singot;

import hat.items.materials.smixture;

import hat.items.materials.wax;

import hat.tabs.icons.blocktabicon;

import hat.tabs.icons.combattabicon;

import hat.tabs.icons.materialtabicon;

import net.minecraft.block.Block;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.init.Blocks;

import net.minecraft.init.Items;

import net.minecraft.item.Item;

import net.minecraft.item.Item.ToolMaterial;

import net.minecraft.item.ItemStack;

import net.minecraftforge.common.util.EnumHelper;

import net.minecraftforge.oredict.OreDictionary;

import cpw.mods.fml.common.Mod;

import cpw.mods.fml.common.Mod.EventHandler;

import cpw.mods.fml.common.SidedProxy;

import cpw.mods.fml.common.event.FMLInitializationEvent;

import cpw.mods.fml.common.event.FMLPreInitializationEvent;

import cpw.mods.fml.common.registry.GameRegistry;

 

@Mod(modid = HAT.MODID, version = HAT.VERSION)

public class HAT

{

    public static final String MODID = "hat";

    public static final String VERSION = "1.0";

   

   

    @SidedProxy(clientSide = "hat.ClientProxy", serverSide = "hat.CommonProxy")

    public static CommonProxy proxy;

   

    //Tabs

    //tab method = new tab();

   

   

   

   

   

    public static CreativeTabs hatblocksTab = new CreativeTabs("hatblocksTab"){

    @Override

    public Item getTabIconItem() {

            return Item.getItemFromBlock(palmplank);

}

    };

   

    public static CreativeTabs hatmaterialsTab = new CreativeTabs("hatmaterialsTab"){

        @Override

  public Item getTabIconItem() {

            return materialtabicon;

  }

        };

       

        public static CreativeTabs hatcombatTab = new CreativeTabs("hatcombatTab"){

            @Override

      public Item getTabIconItem() {

              return combattabicon;

      }

          };

         

          public static CreativeTabs hatmusicTab = new CreativeTabs("hatmusicTab"){

              @Override

        public Item getTabIconItem() {

                  return Items.baked_potato;

        }

              };

             

              public static CreativeTabs hatlightningTab = new CreativeTabs("hatlightningTab"){

                  @Override

            public Item getTabIconItem() {

                    return Items.baked_potato;

            }

                };

 

                public static CreativeTabs hatmachinesTab = new CreativeTabs("hatmachinesTab"){

                    @Override

              public Item getTabIconItem() {

                        return Items.baked_potato;

              }

                    };

 

                    public static CreativeTabs hattrapsTab = new CreativeTabs("hattrapsTab"){

                        @Override

                  public Item getTabIconItem() {

                          return Items.baked_potato;

                  }

                      };

 

                      public static CreativeTabs hattransportTab = new CreativeTabs("hattransportTab"){

                          @Override

                    public Item getTabIconItem() {

                              return Items.baked_potato;

                    }

                          };

                         

                          public static CreativeTabs hatmiscTab = new CreativeTabs("hatmiscTab"){

                              @Override

                        public Item getTabIconItem() {

                                return Items.baked_potato;

                        }

                            };

                         

                          //Dye Block Defining

                        public static Block dyeblock1;

                          public static Block dyeblock2;

                          public static Block dyeblock3;

                          public static Block dyeblock4;

                          public static Block dyeblock5;

                          public static Block dyeblock6;

                          public static Block dyeblock7;

                          public static Block dyeblock8;

                          public static Block dyeblock9;

                          public static Block dyeblock10;

                          public static Block dyeblock11;

                          public static Block dyeblock12;

                          public static Block dyeblock13;

                          public static Block dyeblock14;

                          public static Block dyeblock15;

                          public static Block dyeblock16;

                         

                          //Palm Defining

                          public static Block palmlog;

                          public static Block palmplank;

                          public static Block palmleaves;

                          public static Block palmsapling;

                         

                          //material

                          public static ToolMaterial macematerial = EnumHelper.addToolMaterial("macematerial", 3, 1000, 5.0F, 6.0F, 10);

                         

                          //Item Defining

                          public static Item wax = new wax().setUnlocalizedName("wax").setCreativeTab(hatmaterialsTab);

                          public static Item cingot = new cingot().setUnlocalizedName("cingot").setCreativeTab(hatmaterialsTab);

                          public static Item cmixture = new cmixture().setUnlocalizedName("cmixture").setCreativeTab(hatmaterialsTab);

                          public static Item singot = new singot().setUnlocalizedName("singot").setCreativeTab(hatmaterialsTab);

                          public static Item smixture = new smixture().setUnlocalizedName("smixture").setCreativeTab(hatmaterialsTab);

                         

                          //weapon Defining

                          public static Item mace;

                         

                          //icon item defining

                          public static Item blocktabicon = new blocktabicon().setUnlocalizedName("blocktabicon");

                          public static Item materialtabicon = new materialtabicon().setUnlocalizedName("materialtabicon");

                          public static Item combattabicon = new combattabicon().setUnlocalizedName("combattabicon");

                         

                          //Dye block settings

        @EventHandler

        public void preInit(FMLPreInitializationEvent event){

        dyeblock1 = new dyeblock1().setBlockName("dyeblock1").setCreativeTab(hatblocksTab);

        GameRegistry.registerBlock(dyeblock1, "dyeblock1");

       

        dyeblock2 = new dyeblock2().setBlockName("dyeblock2").setCreativeTab(hatblocksTab);

        GameRegistry.registerBlock(dyeblock2, "dyeblock2");

       

          dyeblock3 = new dyeblock3().setBlockName("dyeblock3").setCreativeTab(hatblocksTab);

          GameRegistry.registerBlock(dyeblock3, "dyeblock3");

       

        dyeblock4 = new dyeblock4().setBlockName("dyeblock4").setCreativeTab(hatblocksTab);

        GameRegistry.registerBlock(dyeblock4, "dyeblock4");

       

          dyeblock5 = new dyeblock5().setBlockName("dyeblock5").setCreativeTab(hatblocksTab);

          GameRegistry.registerBlock(dyeblock5, "dyeblock5");

       

          dyeblock6 = new dyeblock6().setBlockName("dyeblock6").setCreativeTab(hatblocksTab);

          GameRegistry.registerBlock(dyeblock6, "dyeblock6");

       

          dyeblock7 = new dyeblock7().setBlockName("dyeblock7").setCreativeTab(hatblocksTab);

          GameRegistry.registerBlock(dyeblock7, "dyeblock7");

       

          dyeblock8 = new dyeblock8().setBlockName("dyeblock8").setCreativeTab(hatblocksTab);

          GameRegistry.registerBlock(dyeblock8, "dyeblock8");

       

          dyeblock9 = new dyeblock9().setBlockName("dyeblock9").setCreativeTab(hatblocksTab);

          GameRegistry.registerBlock(dyeblock9, "dyeblock9");

       

          dyeblock10 = new dyeblock10().setBlockName("dyeblock10").setCreativeTab(hatblocksTab);

          GameRegistry.registerBlock(dyeblock10, "dyeblock10");

       

          dyeblock11 = new dyeblock11().setBlockName("dyeblock11").setCreativeTab(hatblocksTab);

          GameRegistry.registerBlock(dyeblock11, "dyeblock11");

       

          dyeblock12 = new dyeblock12().setBlockName("dyeblock12").setCreativeTab(hatblocksTab);

          GameRegistry.registerBlock(dyeblock12, "dyeblock12");

       

        dyeblock13 = new dyeblock13().setBlockName("dyeblock13").setCreativeTab(hatblocksTab);

        GameRegistry.registerBlock(dyeblock13, "dyeblock13");

       

        dyeblock14 = new dyeblock14().setBlockName("dyeblock14").setCreativeTab(hatblocksTab);

        GameRegistry.registerBlock(dyeblock14, "dyeblock14");

       

        dyeblock15 = new dyeblock15().setBlockName("dyeblock15").setCreativeTab(hatblocksTab);

        GameRegistry.registerBlock(dyeblock15, "dyeblock15");

       

        dyeblock16 = new dyeblock16().setBlockName("dyeblock16").setCreativeTab(hatblocksTab);

        GameRegistry.registerBlock(dyeblock16, "dyeblock16");

       

        //Palm Settings

            palmlog = new PalmLog().setBlockName("palmlog").setCreativeTab(hatblocksTab);

        palmplank = new palmplank().setBlockName("palmplank").setCreativeTab(hatblocksTab);

        // palmleaves = new palmleaves().setBlockName("palmleaves").setCreativeTab(hatblocksTab);

        //palmsapling = new palmsapling().setBlockName("palmsapling").setCreativeTab(hatblocksTab);

       

        //weapon defining

            Item mace = new mace(macematerial).setUnlocalizedName("mace").setCreativeTab(hatcombatTab);

       

            //Food

           

        //Dye Block Registry

       

        //Palm Registry

            GameRegistry.registerBlock(palmplank, "palmplank");

            OreDictionary.registerOre("plankWood", palmplank);

        GameRegistry.registerBlock(palmlog, "palmlog");       

        // GameRegistry.registerBlock(palmleaves, "palmleaves");

       

        //Item Registry

        GameRegistry.registerItem(wax, "wax");

        GameRegistry.registerItem(cingot, "cingot");

        GameRegistry.registerItem(cmixture, "cmixture");

        GameRegistry.registerItem(singot, "singot");

        GameRegistry.registerItem(smixture, "smixture");

       

        //weapon registry

        GameRegistry.registerItem(mace, "mace");

       

        //Tab icon registry

        GameRegistry.registerItem(blocktabicon, "blocktabicon");

        GameRegistry.registerItem(materialtabicon, "materialtabicon");

        GameRegistry.registerItem(combattabicon, "combattabicon");

       

        //Dye Block Recipes

        GameRegistry.addRecipe(new ItemStack(dyeblock4, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1) });

        GameRegistry.addRecipe(new ItemStack(dyeblock3, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,1) });

          GameRegistry.addRecipe(new ItemStack(dyeblock5, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,2) });

        GameRegistry.addRecipe(new ItemStack(dyeblock6, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,3) });

        GameRegistry.addRecipe(new ItemStack(dyeblock7, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,4) });

        GameRegistry.addRecipe(new ItemStack(dyeblock8, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,5) });

        GameRegistry.addRecipe(new ItemStack(dyeblock9, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,6) });

        GameRegistry.addRecipe(new ItemStack(dyeblock2, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,7) });

        GameRegistry.addRecipe(new ItemStack(dyeblock10, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,8) });

        GameRegistry.addRecipe(new ItemStack(dyeblock11, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,9) });

        GameRegistry.addRecipe(new ItemStack(dyeblock12, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,10) });

        GameRegistry.addRecipe(new ItemStack(dyeblock13, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,11) });

        GameRegistry.addRecipe(new ItemStack(dyeblock14, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,12) });

        GameRegistry.addRecipe(new ItemStack(dyeblock15, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,13) });

        GameRegistry.addRecipe(new ItemStack(dyeblock16, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,14) });

        GameRegistry.addRecipe(new ItemStack(dyeblock1, 1), new Object[] {"  ","BB ","BB ", 'B', new ItemStack(Items.dye,1,15)});

       

            //Vanilla Changed Recipes

        GameRegistry.addShapelessRecipe(new ItemStack(Items.string, 4), new Object [] {Blocks.wool});

        GameRegistry.addShapelessRecipe(new ItemStack(Blocks.mossy_cobblestone, 4), new Object [] {Blocks.cobblestone, Blocks.vine});

        GameRegistry.addShapelessRecipe(new ItemStack(Items.name_tag, 2), new Object [] {Items.string, Items.paper});

        GameRegistry.addRecipe(new ItemStack(Items.iron_horse_armor, 1), new Object[] {"  I","II "," W ", 'I', new ItemStack(Items.iron_ingot,1), 'W', new ItemStack(Blocks.wool, 1)});

        GameRegistry.addRecipe(new ItemStack(Items.golden_horse_armor, 1), new Object[] {"  I","II "," W ", 'I', new ItemStack(Items.gold_ingot,1), 'W', new ItemStack(Blocks.wool, 1)});

        GameRegistry.addRecipe(new ItemStack(Items.diamond_horse_armor, 1), new Object[] {"  I","II "," W ", 'I', new ItemStack(Items.diamond,1), 'W', new ItemStack(Blocks.wool, 1)});

       

        //material

        GameRegistry.addRecipe(new ItemStack(cmixture, 1), new Object[] {"  ","RGR","  ", 'R', new ItemStack(Items.redstone,1), 'G', new ItemStack(Items.gold_ingot, 1)});

        GameRegistry.addRecipe(new ItemStack(smixture, 1), new Object[] {"  ","RGR","  ", 'R', new ItemStack(Items.coal,1), 'G', new ItemStack(Items.iron_ingot, 1)});

        GameRegistry.addRecipe(new ItemStack(smixture, 1), new Object[] {"  ","RGR","  ", 'R', new ItemStack(Items.coal,1,1), 'G', new ItemStack(Items.iron_ingot, 1)});

       

        //smelting

        GameRegistry.addSmelting(Items.reeds, new ItemStack(wax), 0F);

        GameRegistry.addSmelting(cmixture, new ItemStack(cingot), 0F);

        GameRegistry.addSmelting(smixture, new ItemStack(singot), 0F);

       

        }

                     

        @EventHandler

    public void init(FMLInitializationEvent event)

    {

       

    }

}

 

 

 

so that's my main class and my log class:

package hat.blocks.palmblocks;

 

import hat.HAT;

 

import java.util.Random;

 

import net.minecraft.block.Block;

import net.minecraft.block.BlockRotatedPillar;

import net.minecraft.block.material.Material;

import net.minecraft.client.renderer.texture.IIconRegister;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.item.Item;

import net.minecraft.util.IIcon;

import net.minecraft.world.IBlockAccess;

import net.minecraft.world.World;

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

 

public abstract class PalmLog extends BlockRotatedPillar

{

 

    public static final String[] TOP ={"Palm_Wood_Log_Top"};

    public static final String[] SIDE ={"Palm_Wood_Log_Side"};

    public IIcon topIcon[];

    public IIcon sideIcon[];

   

    public PalmLog()

    {

        super(Material.wood);

        this.setHardness(2.0F);

        this.setStepSound(soundTypeWood);

    }

 

    public static int func_150165_c(int p_150165_0_)

    {

        return p_150165_0_ & 3;

    }

 

    /**

    * Returns the quantity of items to drop on block destruction.

    */

    public int quantityDropped(Random p_149745_1_)

    {

        return 1;

    }

 

    public Item getItemDropped(int p_149650_1_, Random p_149650_2_, int p_149650_3_)

    {

        return Item.getItemFromBlock(this);

    }

 

    public void breakBlock(World p_149749_1_, int p_149749_2_, int p_149749_3_, int p_149749_4_, Block p_149749_5_, int p_149749_6_)

    {

        byte b0 = 4;

        int i1 = b0 + 1;

 

        if (p_149749_1_.checkChunksExist(p_149749_2_ - i1, p_149749_3_ - i1, p_149749_4_ - i1, p_149749_2_ + i1, p_149749_3_ + i1, p_149749_4_ + i1))

        {

            for (int j1 = -b0; j1 <= b0; ++j1)

            {

                for (int k1 = -b0; k1 <= b0; ++k1)

                {

                    for (int l1 = -b0; l1 <= b0; ++l1)

                    {

                        Block block = p_149749_1_.getBlock(p_149749_2_ + j1, p_149749_3_ + k1, p_149749_4_ + l1);

                        if (block.isLeaves(p_149749_1_, p_149749_2_ + j1, p_149749_3_ + k1, p_149749_4_ + l1))

                        {

                            block.beginLeavesDecay(p_149749_1_, p_149749_2_ + j1, p_149749_3_ + k1, p_149749_4_ + l1);

                        }

                    }

                }

            }

        }

    }

    public void registerBlockIcons(IIconRegister iIconRegister){

    topIcon = new IIcon[this.TOP.length];

    sideIcon = new IIcon[this.SIDE.length];

   

    for (int i =0; i < TOP.length;i++){

    topIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Top" + i);

    sideIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Side" + i);

    }

    }

   

    @SideOnly(Side.CLIENT)

    @Override

    protected IIcon getSideIcon(int metadata)

    {

        return sideIcon[metadata];

    }

 

    @SideOnly(Side.CLIENT)

    @Override

    protected IIcon getTopIcon(int metadata)

    {

        return topIcon[metadata];

    }

 

 

    @Override

    public boolean canSustainLeaves(IBlockAccess world, int x, int y, int z)

    {

        return true;

    }

 

    @Override

    public boolean isWood(IBlockAccess world, int x, int y, int z)

    {

        return true;

    }

}

which still have the "Cannot initiate" error as above

 

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hello, I'm trying to modify the effects of native enchantments for bows and arrows in Minecraft. After using a decompilation tool, I found that the specific implementations of native bow and arrow enchantments (including `ArrowDamageEnchantment`, `ArrowKnockbackEnchantment`, `ArrowFireEnchantment`, `ArrowInfiniteEnchantment`, `ArrowPiercingEnchantment`) do not contain any information about the enchantment effects (such as the `getDamageProtection` function for `ProtectionEnchantment`, `getDamageBonus` function for `DamageEnchantment`, etc.). Upon searching for the base class of arrows, `AbstractArrow`, I found a function named setEnchantmentEffectsFromEntity`, which seems to be used to retrieve the enchantment levels of the tool held by a `LivingEntity` and calculate the specific values of the enchantment effects. However, after testing with the following code, I found that this function is not being called:   @Mixin(AbstractArrow.class) public class ModifyArrowEnchantmentEffects {     private static final Logger LOGGER = LogUtils.getLogger();     @Inject(         method = "setEnchantmentEffectsFromEntity",         at = @At("HEAD")     )     private void logArrowEnchantmentEffectsFromEntity(CallbackInfo ci) {         LOGGER.info("Arrow enchantment effects from entity");     } }   Upon further investigation, I found that within the onHitEntity method, there are several lines of code:               if (!this.level().isClientSide &amp;&amp; entity1 instanceof LivingEntity) {                EnchantmentHelper.doPostHurtEffects(livingentity, entity1);                EnchantmentHelper.doPostDamageEffects((LivingEntity)entity1, livingentity);             }   These lines of code actually call the doPostHurt and doPostAttack methods of each enchantment in the enchantment list. However, this leads back to the issue because native bow and arrow enchantments do not implement these functions. Although their base class defines the functions, they are empty. At this point, I'm completely stumped and seeking assistance. Thank you.
    • I have been trying to make a server with forge but I keep running into an issue. I have jdk 22 installed as well as Java 8. here is the debug file  
    • it crashed again     What the console says : [00:02:03] [Server thread/INFO] [Easy NPC/]: [EntityManager] Server started! [00:02:03] [Server thread/INFO] [co.gi.al.ic.IceAndFire/]: {iceandfire:fire_dragon_roost=true, iceandfire:fire_lily=true, iceandfire:spawn_dragon_skeleton_fire=true, iceandfire:lightning_dragon_roost=true, iceandfire:spawn_dragon_skeleton_lightning=true, iceandfire:ice_dragon_roost=true, iceandfire:ice_dragon_cave=true, iceandfire:lightning_dragon_cave=true, iceandfire:cyclops_cave=true, iceandfire:spawn_wandering_cyclops=true, iceandfire:spawn_sea_serpent=true, iceandfire:frost_lily=true, iceandfire:hydra_cave=true, iceandfire:lightning_lily=true, iceandfireixie_village=true, iceandfire:myrmex_hive_jungle=true, iceandfire:myrmex_hive_desert=true, iceandfire:silver_ore=true, iceandfire:siren_island=true, iceandfire:spawn_dragon_skeleton_ice=true, iceandfire:spawn_stymphalian_bird=true, iceandfire:fire_dragon_cave=true, iceandfire:sapphire_ore=true, iceandfire:spawn_hippocampus=true, iceandfire:spawn_death_worm=true} [00:02:03] [Server thread/INFO] [co.gi.al.ic.IceAndFire/]: {TROLL_S=true, HIPPOGRYPH=true, AMPHITHERE=true, COCKATRICE=true, TROLL_M=true, DREAD_LICH=true, TROLL_F=true} [00:02:03] [Server thread/INFO] [ne.be.lo.WeaponRegistry/]: Encoded Weapon Attribute registry size (with package overhead): 41976 bytes (in 5 string chunks with the size of 10000) [00:02:03] [Server thread/INFO] [patchouli/]: Sending reload packet to clients [00:02:03] [Server thread/WARN] [voicechat/]: [voicechat] Running in offline mode - Voice chat encryption is not secure! [00:02:03] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Using server-ip as bind address: 0.0.0.0 [00:02:03] [Server thread/WARN] [ModernFix/]: Dedicated server took 22.521 seconds to load [00:02:03] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Voice chat server started at 0.0.0.0:25565 [00:02:03] [Server thread/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.player.Player from class tschipp.carryon.common.carry.CarryOnDataManager [00:02:03] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@2941ffd5 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 0 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 1 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 2 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 3 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 4 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 5 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 6 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 7 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 8 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 9 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 10 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 11 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 12 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 13 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 14 [00:02:19] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@ebc7ef2 [00:02:19] [Server thread/INFO] [minecraft/PlayerList]: ZacAdos[/90.2.17.162:49242] logged in with entity id 1062 at (-1848.6727005281205, 221.0, -3054.2468255848935) [00:02:19] [Server thread/ERROR] [ModernFix/]: Skipping entity ID sync for com.talhanation.smallships.world.entity.ship.Ship: java.lang.NoClassDefFoundError: net/minecraft/client/CameraType [00:02:19] [Server thread/INFO] [minecraft/MinecraftServer]: - Gloop - ZacAdos joined the game [00:02:19] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Updating all forceload tickets for cc56befd-d376-3526-a760-340713c478bd [00:02:19] [Server thread/INFO] [se.mi.te.da.DataManager/]: Sending data to client: ZacAdos [00:02:19] [Server thread/INFO] [voicechat/]: [voicechat] Received secret request of - Gloop - ZacAdos (17) [00:02:19] [Server thread/INFO] [voicechat/]: [voicechat] Sent secret to - Gloop - ZacAdos [00:02:21] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Successfully authenticated player cc56befd-d376-3526-a760-340713c478bd [00:02:22] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Successfully validated connection of player cc56befd-d376-3526-a760-340713c478bd [00:02:22] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Player - Gloop - ZacAdos (cc56befd-d376-3526-a760-340713c478bd) successfully connected to voice chat stop [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping the server [00:02:34] [Server thread/INFO] [mo.pl.ar.ArmourersWorkshop/]: stop local service [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players [00:02:34] [Server thread/INFO] [minecraft/ServerGamePacketListenerImpl]: ZacAdos lost connection: Server closed [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: - Gloop - ZacAdos left the game [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Updating all forceload tickets for cc56befd-d376-3526-a760-340713c478bd [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_end [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_nether [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (world): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage: All dimensions are saved [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Stopping IO worker... [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Stopped IO worker! [00:02:34] [Server thread/INFO] [Calio/]: Removing Dynamic Registries for: net.minecraft.server.dedicated.DedicatedServer@7dc879e1 [MineStrator Daemon]: Checking server disk space usage, this could take a few seconds... [MineStrator Daemon]: Updating process configuration files... [MineStrator Daemon]: Ensuring file permissions are set correctly, this could take a few seconds... [MineStrator Daemon]: Pulling Docker container image, this could take a few minutes to complete... [MineStrator Daemon]: Finished pulling Docker container image container@pterodactyl~ java -version openjdk version "17.0.10" 2024-01-16 OpenJDK Runtime Environment Temurin-17.0.10+7 (build 17.0.10+7) OpenJDK 64-Bit Server VM Temurin-17.0.10+7 (build 17.0.10+7, mixed mode, sharing) container@pterodactyl~ java -Xms128M -Xmx6302M -Dterminal.jline=false -Dterminal.ansi=true -Djline.terminal=jline.UnsupportedTerminal -p libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar:libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/net/minecraftforge/JarJarFileSystems/0.3.16/JarJarFileSystems-0.3.16.jar --add-modules ALL-MODULE-PATH --add-opens java.base/java.util.jar=cpw.mods.securejarhandler --add-opens java.base/java.lang.invoke=cpw.mods.securejarhandler --add-exports java.base/sun.security.util=cpw.mods.securejarhandler --add-exports jdk.naming.dns/com.sun.jndi.dns=java.naming -Djava.net.preferIPv6Addresses=system -DignoreList=bootstraplauncher-1.1.2.jar,securejarhandler-2.1.4.jar,asm-commons-9.5.jar,asm-util-9.5.jar,asm-analysis-9.5.jar,asm-tree-9.5.jar,asm-9.5.jar,JarJarFileSystems-0.3.16.jar -DlibraryDirectory=libraries -DlegacyClassPath=libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/net/minecraftforge/accesstransformers/8.0.4/accesstransformers-8.0.4.jar:libraries/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar:libraries/net/minecraftforge/eventbus/6.0.3/eventbus-6.0.3.jar:libraries/net/minecraftforge/forgespi/6.0.0/forgespi-6.0.0.jar:libraries/net/minecraftforge/coremods/5.0.1/coremods-5.0.1.jar:libraries/cpw/mods/modlauncher/10.0.8/modlauncher-10.0.8.jar:libraries/net/minecraftforge/unsafe/0.2.0/unsafe-0.2.0.jar:libraries/com/electronwill/night-config/core/3.6.4/core-3.6.4.jar:libraries/com/electronwill/night-config/toml/3.6.4/toml-3.6.4.jar:libraries/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar:libraries/net/jodah/typetools/0.8.3/typetools-0.8.3.jar:libraries/net/minecrell/terminalconsoleappender/1.2.0/terminalconsoleappender-1.2.0.jar:libraries/org/jline/jline-reader/3.12.1/jline-reader-3.12.1.jar:libraries/org/jline/jline-terminal/3.12.1/jline-terminal-3.12.1.jar:libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar:libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar:libraries/net/minecraftforge/JarJarSelector/0.3.16/JarJarSelector-0.3.16.jar:libraries/net/minecraftforge/JarJarMetadata/0.3.16/JarJarMetadata-0.3.16.jar:libraries/net/minecraftforge/fmlloader/1.19.2-43.3.0/fmlloader-1.19.2-43.3.0.jar:libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-extra.jar:libraries/com/github/oshi/oshi-core/5.8.5/oshi-core-5.8.5.jar:libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:libraries/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar:libraries/com/mojang/authlib/3.11.49/authlib-3.11.49.jar:libraries/com/mojang/brigadier/1.0.18/brigadier-1.0.18.jar:libraries/com/mojang/datafixerupper/5.0.28/datafixerupper-5.0.28.jar:libraries/com/mojang/javabridge/1.2.24/javabridge-1.2.24.jar:libraries/com/mojang/logging/1.0.0/logging-1.0.0.jar:libraries/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar:libraries/io/netty/netty-buffer/4.1.77.Final/netty-buffer-4.1.77.Final.jar:libraries/io/netty/netty-codec/4.1.77.Final/netty-codec-4.1.77.Final.jar:libraries/io/netty/netty-common/4.1.77.Final/netty-common-4.1.77.Final.jar:libraries/io/netty/netty-handler/4.1.77.Final/netty-handler-4.1.77.Final.jar:libraries/io/netty/netty-resolver/4.1.77.Final/netty-resolver-4.1.77.Final.jar:libraries/io/netty/netty-transport/4.1.77.Final/netty-transport-4.1.77.Final.jar:libraries/io/netty/netty-transport-classes-epoll/4.1.77.Final/netty-transport-classes-epoll-4.1.77.Final.jar:libraries/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-x86_64.jar:libraries/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-aarch_64.jar:libraries/io/netty/netty-transport-native-unix-common/4.1.77.Final/netty-transport-native-unix-common-4.1.77.Final.jar:libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar:libraries/net/java/dev/jna/jna/5.10.0/jna-5.10.0.jar:libraries/net/java/dev/jna/jna-platform/5.10.0/jna-platform-5.10.0.jar:libraries/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar:libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar:libraries/org/apache/logging/log4j/log4j-api/2.17.0/log4j-api-2.17.0.jar:libraries/org/apache/logging/log4j/log4j-core/2.17.0/log4j-core-2.17.0.jar:libraries/org/apache/logging/log4j/log4j-slf4j18-impl/2.17.0/log4j-slf4j18-impl-2.17.0.jar:libraries/org/slf4j/slf4j-api/1.8.0-beta4/slf4j-api-1.8.0-beta4.jar cpw.mods.bootstraplauncher.BootstrapLauncher --launchTarget forgeserver --fml.forgeVersion 43.3.0 --fml.mcVersion 1.19.2 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20220805.130853 [00:02:42] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [00:02:42] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-12-amd64 [00:02:43] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.0/fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.0/javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.0/lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.0/mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:44] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [00:02:44] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /home/container/mods/resourcefullib-forge-1.19.2-1.1.24.jar [00:02:44] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection Latest log [29Mar2024 00:02:42.803] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [29Mar2024 00:02:42.805] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-12-amd64 [29Mar2024 00:02:43.548] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [29Mar2024 00:02:43.876] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.0/fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.877] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.0/javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.877] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.0/lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.878] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.0/mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:44.033] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [29Mar2024 00:02:44.034] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /home/container/mods/resourcefullib-forge-1.19.2-1.1.24.jar [29Mar2024 00:02:44.034] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection
    • I am unable to do that. Brigadier is a mojang library that parses commands.
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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