Jump to content

Recommended Posts

Posted

Hello everyone!

I have added a few slabs in my Mod, but if I place one Slab onto another they don't turn into a Double slab.. What do I have to add?

 

Source:

 

ModBlockSlab:

 

package com.buildingblocks.block;

import cpw.mods.fml.common.registry.GameRegistry;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

import java.util.List;
import java.util.Random;

import com.buildingblocks.Main;

import net.minecraft.block.BlockSlab;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.init.Blocks;
import net.minecraft.item.Item;
import net.minecraft.item.ItemBlock;
import net.minecraft.item.ItemStack;
import net.minecraft.util.IIcon;

public class ModBlockSlab extends BlockSlab
{
    public static final String[] field_150005_b = new String[] {"serpentinite", "syenite", "slate", "chrysocolla", "obsidian"};
    private static final String __OBFID = "CL_00000337";
    private final boolean type;

    public ModBlockSlab(String unlocalizedName, Material material, float hardness, float resistance, Class<? extends ItemBlock> itemBlock, boolean isDoubleSlab, boolean type)
    {
        super(isDoubleSlab, material);
        this.setBlockName(unlocalizedName);
        this.setHardness(hardness);
        this.setResistance(resistance);
        this.setCreativeTab(Main.BLOCK_TAB);
        this.type = type;
        
        GameRegistry.registerBlock(this, itemBlock, unlocalizedName);
    }

/**
     * Gets the block's texture. Args: side, meta
     */
    @Override
@SideOnly(Side.CLIENT)
    public IIcon getIcon(int side, int meta)
    {
        if (!type)
        {
        	switch (meta & 7)
        	{
        	case 0: return ModBlocks.Serpentinite.getBlockTextureFromSide(side);
        	case 1: return ModBlocks.Syenite.getBlockTextureFromSide(side);
        	case 2: return ModBlocks.Slate.getBlockTextureFromSide(side);
        	case 3: return ModBlocks.Chrysocolla.getBlockTextureFromSide(side);
        	case 4: return Blocks.obsidian.getBlockTextureFromSide(side);
        	default: return Blocks.beacon.getBlockTextureFromSide(side);
        	}
        } else {
        	switch (meta & 7)
        	{
        	case 0: return ModBlocks.SerpentiniteBrick.getBlockTextureFromSide(side);
        	case 1: return ModBlocks.SyeniteBrick.getBlockTextureFromSide(side);
        	case 2: return ModBlocks.SlateBrick.getBlockTextureFromSide(side);
        	case 3: return ModBlocks.ChrysocollaBrick.getBlockTextureFromSide(side);
        	case 4: return ModBlocks.ObsidianBrick.getBlockTextureFromSide(side);
        	default: return Blocks.beacon.getBlockTextureFromSide(side);
        	}
        }
    }

    @Override
public Item getItemDropped(int p_149650_1_, Random p_149650_2_, int p_149650_3_)
    {
        return Item.getItemFromBlock(ModBlocks.Slab);
    }

    /**
     * Returns an item stack containing a single instance of the current block type. 'i' is the block's subtype/damage
     * and is ignored for blocks which do not support subtypes. Blocks which cannot be harvested should return null.
     */
    @Override
protected ItemStack createStackedBlock(int p_149644_1_)
    {
        return new ItemStack(Item.getItemFromBlock(ModBlocks.Slab), 2, p_149644_1_ & 7);
    }

    @Override
public String func_150002_b(int p_150002_1_)
    {
        if (p_150002_1_ < 0 || p_150002_1_ >= field_150005_b.length)
        {
            p_150002_1_ = 0;
        }

        return super.getUnlocalizedName() + "." + field_150005_b[p_150002_1_];
    }

    /**
     * returns a list of blocks with the same ID, but different meta (eg: wood returns 4 blocks)
     */
    @Override
@SideOnly(Side.CLIENT)
    public void getSubBlocks(Item p_149666_1_, CreativeTabs p_149666_2_, List p_149666_3_)
    {
        if (p_149666_1_ != Item.getItemFromBlock(ModBlocks.DoubleSlab))
        {
            for (int i = 0; i < field_150005_b.length; ++i)
            {
                p_149666_3_.add(new ItemStack(p_149666_1_, 1, i));
            }
        }
    }

    @Override
@SideOnly(Side.CLIENT)
    public void registerBlockIcons(IIconRegister p_149651_1_) {}
}

 

ItemBlockSlab:

 

package com.buildingblocks.block.itemblock;

import com.buildingblocks.block.ModBlocks;

import net.minecraft.block.Block;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Blocks;
import net.minecraft.item.ItemBlockWithMetadata;
import net.minecraft.item.ItemStack;
import net.minecraft.util.IIcon;
import net.minecraft.world.World;

public class ItemBlockSlab extends ItemBlockWithMetadata {

public ItemBlockSlab(Block basisBlock) {
	super(basisBlock, basisBlock);
}

public ItemBlockSlab(Block basisBlock, Block extraBlock) {
	super(basisBlock, extraBlock);
}

@Override
public IIcon getIconFromDamage(int meta) {
	if (this.getUnlocalizedName().equals("tile.slab") || this.getUnlocalizedName().equals("tile.double_slab"))
        {
        	switch (meta & 7)
        	{
        	case 0: return ModBlocks.Serpentinite.getBlockTextureFromSide(0);
        	case 1: return ModBlocks.Syenite.getBlockTextureFromSide(0);
        	case 2: return ModBlocks.Slate.getBlockTextureFromSide(0);
        	case 3: return ModBlocks.Chrysocolla.getBlockTextureFromSide(0);
        	case 4: return Blocks.obsidian.getBlockTextureFromSide(0);
        	default: return Blocks.beacon.getBlockTextureFromSide(0);
        	}
        } else {
        	switch (meta & 7)
        	{
        	case 0: return ModBlocks.SerpentiniteBrick.getBlockTextureFromSide(0);
        	case 1: return ModBlocks.SyeniteBrick.getBlockTextureFromSide(0);
        	case 2: return ModBlocks.SlateBrick.getBlockTextureFromSide(0);
        	case 3: return ModBlocks.ChrysocollaBrick.getBlockTextureFromSide(0);
        	case 4: return ModBlocks.ObsidianBrick.getBlockTextureFromSide(0);
        	default: return Blocks.beacon.getBlockTextureFromSide(0);
        	}
        }
}

@Override
public int getMetadata(int par1) {
	return par1;
}

@Override
public String getUnlocalizedName(ItemStack stack) {
	String name = "corrupted";
	switch( stack.getItemDamage() )
	{
	case 0: name = "serpentinite"; break;
	case 1: name = "syenite"; break;
	case 2: name = "slate"; break;
	case 3: name = "chrysocolla"; break;
	case 4: name = "obsidian"; break;
	}

	return this.getUnlocalizedName() + "." + name;
}
}

 

 

 

Which methods do I have to overwrite that it works?

Posted

I solved it now on my own with the following Code:

 

@Override
public boolean onItemUse(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int side, float hitX, float hitY, float hitZ) {
	Block block = world.getBlock(x, y, z);
	if (block instanceof ModBlockSlab && !((ModBlockSlab)block).isDoubleSlab())
	{
		boolean brickBlock = false; boolean brickItem = false;
		if (((ModBlockSlab)block).isBrickSlab()) brickBlock = true;
		if (((ModBlockSlab)this.field_150939_a).isBrickSlab()) brickItem = true;

		int meta = world.getBlockMetadata(x, y, z) & 7;
		Main.logPlainText("brickBlock=" + brickBlock + "; brickItem=" + brickItem);
		if (brickBlock == brickItem && meta == stack.getItemDamage())
		{
			world.setBlock(x, y, z, brickBlock ? ModBlocks.DoubleBrickSlab : ModBlocks.DoubleSlab, meta, 3);
			--stack.stackSize;
			return true;
		}
	}

	return super.onItemUse(stack, player, world, x, y, z, side, hitX, hitY, hitZ);
}

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Just shows this if this is what you mean:  Data  assets/minecraft/models/item/bamboo_mosaic_slab.json  Data  assets/minecraft/models/item/turtle_helmet_quartz_trim.json  Processor failed, invalid outputs:    /home/aron/.minecraft/libraries/net/minecraft/client/1.20.1-20230612.114412/client-1.20.1-20230612.114412- slim.jar      Expected: de86b035d2da0f78940796bb95c39a932ed84834      Actual:   aea60124ca903ecbb2e825805e318f9d89ac867c    /home/aron/.minecraft/libraries/net/minecraft/client/1.20.1-20230612.114412/client-1.20.1-20230612.114412- extra.jar      Expected: 8c5a95cbce940cfdb304376ae9fea47968d02587      Actual:   76e87dbc119daed8dc1861c17160e0c4b6f34d2e There was an error during installation Also I gave the .jar file full permissions too.
    • I checked the hash like you said and it came back as OK each time, also may I ask what you mean by debug mode during installation?  
    • My name is Clara Bennett, and I almost let cryptocurrency destroy me.  Two years ago, after selling my green e-commerce startup, I plunged headfirst into the crypto world. yield farming , I was all in. I believed I wasn’t just investing; I was participating in the next great technological revolution. Within months, my portfolio skyrocketed to $200,000. I even started sketching ideas for a blockchain-based microloan platform to empower small entrepreneurs around the world. Crypto felt like pure freedom and limitless potential. I thought I was untouchable. I thought wrong. It happened through a single email. It looked like a standard security update from my wallet provider polished, routine, and harmless. I interacted with it briefly, thinking it was legitimate. Hours later, I checked my account and realized my entire wallet had been drained. Every token, every coin, gone. I sat there in disbelief, replaying the moment over and over. I had built my career on being cautious with technology, yet somehow, I had still been compromised. The blockchain’s promise of "irreversible transactions" now felt like a cruel joke  .Devastated and desperate, I scoured forums for solutions. Most people told me there was no hope once crypto is gone, it’s gone. Still, I refused to give up. That’s when I stumbled across FUNDS RETRIEVER ENGINEER . I decided to reach out. From the beginning, they were empathetic, and honest about the challenges. They explained their process step-by-step, focusing on tracing transactions, tracking down phishing operators, and leveraging advanced blockchain analytics. It wasn't an overnight fix. It took weeks of meticulous investigation, technical recovery work, and legal coordination .But in the end, their persistence paid off. FUNDS RETRIEVER ENGINEER  was able to trace the stolen funds across multiple wallets and exchanges. Through a combination of technical expertise and strategic action, they managed to recover the full amount I had lost. Today, my crypto portfolio is intact once again. More importantly, I’ve regained my confidence though I am now much wiser and far more cautious. I learned the hard way that while crypto offers incredible opportunities, it also demands extreme vigilance. Thanks to FUNDS RETRIEVER ENGINEER , I recovered my lost funds and  also reclaimed my future in the digital economy. For help  W H A T S A P P:  +1  8  0 2 9 5 2 3 4 7 0 E   m  a I L       F U N D S R  E T R  I E V E R  [@]  E  N  G  I  N  E  E  R.  C  O  M
    • 1. Did you try to remove your system cache or something? 2. Also check jar hash before installing (if it's ok): sha1sum jar_name.jar > jar_name.jar.sha1 sha1sum -c jar_name.jar.sha1 Do this a few times with some interval. This can find out if your hash can be different somehow (garbage files inside).  Also try using sha224sum / sha256sum / sha384sum / sha512sum / shasum. And do you have any debug mode during installation?   UPDATED: and it can be just fixing by chmod'ing jar file. Check its -lZ 
  • Topics

×
×
  • Create New...

Important Information

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