
SoggyMustache
Members-
Posts
61 -
Joined
-
Last visited
Everything posted by SoggyMustache
-
package tk.soggymustache.blocksmod.block.custom; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.init.Blocks; public class CustomBlockClass extends Block{ public CustomBlockClass(Material materialIn) { super(materialIn); } { this.setStepSound(stepSound.GLASS); this.setHardness(0.2F); this.setResistance(0.4F); Blocks.fire.setFireInfo(ModBlock.CustomBlock, 8, 30); } }
-
I added that but it does not destroy the block like if you lit leaves.
-
Could I use this ? this.isFireSource(world, pos, side);
-
No matter what I do I can't get my custom block to burn I thought that I just needed to make the material wood is that not the case anymore?
-
Great it is working now! For any one looking at this in the future here is what mine looks like http://pastebin.com/FqEbaTD9
-
ChatComponentString does not work it just errors
-
I have a working connection handler but minecraft 1.9 removed alot of the chat components I used before does any one know what they have been changed to
-
any time I try joining my world with lan it kicks me out on the non host account http://pastebin.com/8f0gxUTP it also shows this in game
-
I am working on a mod in 1.9 and I want to make it so the entity cannot move on any block but snow or snow layer does any one know what I need to get this working
-
You could try creating a custom .json and making it the same dimensions as a normal minecraft texture and just replace the back with something different then the front.
-
[1.8] Event handler saying things in chat
SoggyMustache replied to SoggyMustache's topic in Modder Support
WHen I put that in i add .sendChat.Msg() and in the () it needs a IChatComponent but I cant figure out how to make one -
[1.8] Event handler saying things in chat
SoggyMustache replied to SoggyMustache's topic in Modder Support
Im not the best coder but would it go like this @SubscribeEvent public void playerLog(PlayerEvent.PlayerLoggedInEvent event) { ServerConfigurationManager.sendChatMsg("Hi"); } -
[1.8] Event handler saying things in chat
SoggyMustache replied to SoggyMustache's topic in Modder Support
That didnt work what else could I do. -
[1.8] Event handler saying things in chat
SoggyMustache replied to SoggyMustache's topic in Modder Support
I have a player login event. and I want it so when someone goes into the world it will say something in the chat almost as if a command block said it. -
I have made an event handler but I can figure out how to make it so when I log into the world it will display a message in the game chat and not in the eclipse console. Does any one know what to do
-
That didnt work any other ideas
-
I want to make it so that my items will look 3d in the inventory just like how they do in 3d person.
-
Changing it didn't work but I just transferred all the code to a new mod environment and it worked so thanks for you help.
-
ok http://pastebin.com/Tpdbg6DP