prasselpikachu Posted December 20, 2012 Posted December 20, 2012 I'd really, really help pl0x, if I knew who he / she is. Quote
mehsaysthesheep Posted December 20, 2012 Author Posted December 20, 2012 But you said it's not updated, so I want to make my own RP! Quote
GreenWolf13 Posted December 20, 2012 Posted December 20, 2012 /facepalm If you can't master simple spelling and grammar, there is no way you'll be able to make a highly complex mod like Red Power. Also, I didn't say it wasn't updated, I said it wasn't publicly released. There are like 2 bugs left that need to be squashed, and then it will be released. Quote
nedned2k Posted December 20, 2012 Posted December 20, 2012 But you said it's not updated, so I want to make my own RP! Good luck with that.... Actually, no, I'm not even going to be sarcastic here, there is literally less than zero percent chance of you actually doing that, let alone before Eloraam releases RP. You need to learn java, then you need to learn how to mod minecraft, then you need to spend months trying to figure out how Eloraam in her infinite wisdom managed to do something. Judging your patience by your lack of effort in making this thread, you'll be lucky if you can make a dirt to diamonds mod. Quote
mehsaysthesheep Posted December 20, 2012 Author Posted December 20, 2012 Good luck with that.... You'll be lucky if you can make a dirt to diamonds mod. Here you go: package sheeper.dirt2diamonds; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraftforge.common.MinecraftForge; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.Init; import cpw.mods.fml.common.Mod.Instance; import cpw.mods.fml.common.Mod.PostInit; import cpw.mods.fml.common.Mod.PreInit; import cpw.mods.fml.common.SidedProxy; import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw.mods.fml.common.event.FMLPostInitializationEvent; import cpw.mods.fml.common.event.FMLPreInitializationEvent; import cpw.mods.fml.common.network.NetworkMod; import cpw.mods.fml.common.registry.GameRegistry; @Mod(modid = "Dirt2Diamonds", name = "Dirt2Diamonds", version = "1.0.0") @NetworkMod(clientSideRequired = true, serverSideRequired = false, channels = { "Dirt2Diamonds" }, packetHandler = PacketHandler.class) public class Dirt2Diamonds { @Instance("Dirt2Diamonds") public static Dirt2Diamonds instance; @SidedProxy(clientSide = "sheeper.Dirt2Diamonds.client.ClientProxy", serverSide = "sheeper.Dirt2Diamonds.CommonProxy") public static CommonProxy proxy; @PreInit public void preInit (FMLPreInitializationEvent event) { // Stub Method } @Init public void load (FMLInitializationEvent event) { proxy.registerRenderers(); ItemStack dirtStack = new ItemStack(Block.dirt); ItemStack diamondsStack = new ItemStack(Item.diamond, 64); GameRegistry.addShapelessRecipe(dirtStack, diamondsStack); } @PostInit public void postInit (FMLPostInitializationEvent event) { // Stub Method } } Quote
GreenWolf13 Posted December 20, 2012 Posted December 20, 2012 Yeah, that would take me about 2 minutes. It literally is just copy pasting code from the forge wiki, and changing a few values. Also, you don't need a packet handler. Another sign that you just copy pasted code. Quote
mehsaysthesheep Posted December 20, 2012 Author Posted December 20, 2012 Yeah, that would take me about 2 minutes. It literally is just copy pasting code from the forge wiki, and changing a few values. Also, you don't need a packet handler. Another sign that you just copy pasted code. But I like package handlers! Quote
Jorcer Posted December 21, 2012 Posted December 21, 2012 *packet I really hope he meant packet because I am sure there is something called a "package handler" and I don't want to meet one... Quote
Valkon Posted December 21, 2012 Posted December 21, 2012 mmm, HELEN KELLER She is an inspiration to us all. Quote
GreenWolf13 Posted December 21, 2012 Posted December 21, 2012 mmm, HELEN KELLER /me backs away slowly That escalated rather quickly. Quote
zuppy3772 Posted December 21, 2012 Posted December 21, 2012 Oh sorry, auto correct. that was meant to be kisscopter Quote
GreenWolf13 Posted December 21, 2012 Posted December 21, 2012 What autocorrect are you using? Actually, I don't want to know. Quote
zuppy3772 Posted December 21, 2012 Posted December 21, 2012 Idk, this is a public computer in the middle of a shop Quote
Jorcer Posted December 21, 2012 Posted December 21, 2012 Oh sorry, auto correct. that was meant to be kisscopter That isn't comforting at all. Quote
Xylord Posted December 21, 2012 Posted December 21, 2012 penis This is a whole new level of trolling. I've never seen such a shocking statement before. Quote
Jorcer Posted December 21, 2012 Posted December 21, 2012 This is a whole new level of trolling. I've never seen such a shocking statement before. I may need to leave the internet! This is surly the most audacious poster ever. Quote
vitorsly Posted December 21, 2012 Posted December 21, 2012 What is this? Seriously. I don't understand why people like this exist. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.