Jump to content

register halfslabs


microjunk

Recommended Posts

In 1.4.7 half slabs were just another custom block really. Now in 1.5.1 they dont seem so easy, the way the class was setup in 1.4.7 no longer works in 1.5.1. Getting on to the point, I discovered how to set them up in 1.5.1 from a thread here that has now been labled solved. The slabs work, and even the double, however the block has no ingame name.....

 

This is my block class...

 

 

public class BlockBlackWoodSlab extends BlockHalfSlab

{

//public static final String[] slabType = { "blackWood" };

 

public BlockBlackWoodSlab(int par1, boolean par2)

{

super(par1, par2, Material.wood);

setLightOpacity(0);

setBurnProperties(this.blockID, 5, 20);

setUnlocalizedName("blackWoodSlab");

    useNeighborBrightness[par1] = true;

}

 

@Override

public void registerIcons(IconRegister par1IconRegister)

{

this.blockIcon = par1IconRegister.registerIcon("MTJT:blackPlanks");

}

 

public int idDropped(int par1, Random par2Random, int par3)

{

return MTJT.blackWoodSingleSlab.blockID;

}

 

public String getFullSlabName(int metadata)

{

return null;

}

 

@SideOnly(Side.CLIENT)

private static boolean isBlockSingleSlab(int blockId)

{

    return blockId == MTJT.blackWoodSingleSlab.blockID;

}

 

}

 

 

 

from the mod class

 

 

//load section

blackWoodDoubleSlab = (BlockHalfSlab)(new BlockBlackWoodSlab(blackWoodDoubleSlabID, true)).setHardness(1.6F).setResistance(7.5F).setStepSound(Block.soundWoodFootstep);

blackWoodSingleSlab = (BlockHalfSlab)(new BlockBlackWoodSlab(blackWoodSingleSlabID, false)).setHardness(1.6F).setResistance(7.5F).setStepSound(Block.soundWoodFootstep).setCreativeTab(MTJT.tabTreeBlocks);

 

GameRegistry.registerBlock(blackWoodDoubleSlab, "blackWoodDoubleSlab");

GameRegistry.registerBlock(blackWoodSingleSlab, "blackWoodSingleSlab");

 

LanguageRegistry.addName(blackWoodDoubleSlab,"BlackWood DoubleSlab");

LanguageRegistry.addName(blackWoodSingleSlab,"BlackWood SingleSlab");

 

//post init

Item.itemsList[blackWoodSingleSlab.blockID] = (new ItemSlab(blackWoodSingleSlab.blockID - 256, (BlockHalfSlab)blackWoodSingleSlab, (BlockHalfSlab)blackWoodDoubleSlab, false)).setUnlocalizedName("blackWoodSingleSlab");

 

 

 

Using the above works great, had no problems with my slabs working correctly using this method. Hoever they have no names...from the thread I saw to set it this way

 

 

 

LanguageRegistry.instance().addStringLocalization(((BlockHalfSlab)blackWoodSingleSlab).getFullSlabName(0)+".name", "blackWoodSingleSlab");

 

 

 

Though this does not work, using this I still have no names in game.....so if anyone knows how, I would greatly appreciate the help...

 

thanks Microjunk

Link to comment
Share on other sites

under your super all of your things should be this.set not just set.

i dont know if just using set works but i definately this.set works

i.e this.setUnlocalisedName(blcakWoodSlab);

 

This makes no difference, plus I thought this too, before posting. Thanks though. So I still need help with this...

Link to comment
Share on other sites

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

    • Hello, new coder and first time posting, sorry if I get stuff wrong Been having a really difficult time trying to figure out this potion effect. I want to give a potion effect that denies the wither effect on the player. I've looked over a lot of different tutorials, and through some other mods and made something that sort of works but it was based on applyEffectTick and the players would still take a tick of damage before the potion effect kicked in. When looking up other ways to do this I saw there was like the PotionEvent but whenever I try to use it, I get errors of how it cannot be defined. This is my code right now that doesn't work package io.github.AndroPups.tsmp_models.effect; import net.minecraft.world.effect.MobEffect; import net.minecraft.world.effect.MobEffectCategory; import net.minecraft.world.effect.MobEffects; import net.minecraft.world.entity.LivingEntity; public class NoWitherEffect extends MobEffect { public NoWitherEffect(MobEffectCategory mobEffectCategory, int color) { super(mobEffectCategory.BENEFICIAL, color); } public static void onPotionAdded(PotionEvent.PotionAddedEvent event) { LivingEntity entity = event.getEntityLiving(); MobEffect potionEffect = event.getPotionEffect().getEffect(); if (potionEffect == MobEffects.WITHER); { entity.removeEffect(MobEffects.WITHER); } } @Override public boolean isDurationEffectTick(int duration, int amplifier) { return true; } } And this code works but occasionally still applies damage because of ticking effect.   package io.github.AndroPups.tsmp_models.effect; import net.minecraft.world.effect.MobEffect; import net.minecraft.world.effect.MobEffectCategory; import net.minecraft.world.effect.MobEffects; import net.minecraft.world.entity.LivingEntity; public class NoWitherEffect extends MobEffect { public NoWitherEffect(MobEffectCategory mobEffectCategory, int color) { super(mobEffectCategory.BENEFICIAL, color); } @Override public void applyEffectTick(LivingEntity pLivingEntity, int pAmplifier) { if (!pLivingEntity.level().isClientSide()) { if (pLivingEntity.hasEffect(MobEffects.WITHER)); { pLivingEntity.getEffect(MobEffects.WITHER); } } } @Override public boolean isDurationEffectTick(int duration, int amplifier) { return true; } } I've tried to see if PotionEvent was removed from recent Forge updates but can't really find any information on it. Any information at all would be helpful! Thanks!
    • Right after "private final Item item;" you will need "private final float chance;" Then you will need to add that variable to your constructor the same way you did for Item. It should work after that.
    • I am playing on Mac, tried to install a mod to the Forge mod folder, restarted Minecraft to activate it and now the game is crashing on launch with error code 1. Because I'm on Mac, I can't remotely access the mods folder without having to get into the Minecraft title screen to click the mods tab. Is there any way I can extract the file remotely, or is there a way to uninstall Forge so I can reinstall it with no mods?
    • I don't know how I missed it, but I did. The access transformer file had a capital T in it. Fixed that and the problem has been solved. I feel really stupid, but thank you for asking about that, because it had me rechecking until I finally saw it. I'm marking this solved.
  • Topics

×
×
  • Create New...

Important Information

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