mehsaysthesheep Posted December 20, 2012 Share Posted December 20, 2012 Halp plox! Link to comment Share on other sites More sharing options...
GreenWolf13 Posted December 20, 2012 Share Posted December 20, 2012 No. Link to comment Share on other sites More sharing options...
prasselpikachu Posted December 20, 2012 Share Posted December 20, 2012 I'd really, really help pl0x, if I knew who he / she is. Link to comment Share on other sites More sharing options...
mehsaysthesheep Posted December 20, 2012 Author Share Posted December 20, 2012 But you said it's not updated, so I want to make my own RP! Link to comment Share on other sites More sharing options...
GreenWolf13 Posted December 20, 2012 Share 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. Link to comment Share on other sites More sharing options...
nedned2k Posted December 20, 2012 Share 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. Link to comment Share on other sites More sharing options...
mehsaysthesheep Posted December 20, 2012 Author Share 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 } } Link to comment Share on other sites More sharing options...
GreenWolf13 Posted December 20, 2012 Share 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. Link to comment Share on other sites More sharing options...
mehsaysthesheep Posted December 20, 2012 Author Share 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! Link to comment Share on other sites More sharing options...
Xylord Posted December 21, 2012 Share Posted December 21, 2012 But I like package handlers! *packet Link to comment Share on other sites More sharing options...
Jorcer Posted December 21, 2012 Share 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... Link to comment Share on other sites More sharing options...
zuppy3772 Posted December 21, 2012 Share Posted December 21, 2012 mmm, HELEN KELLER Link to comment Share on other sites More sharing options...
Valkon Posted December 21, 2012 Share Posted December 21, 2012 mmm, HELEN KELLER She is an inspiration to us all. Link to comment Share on other sites More sharing options...
GreenWolf13 Posted December 21, 2012 Share Posted December 21, 2012 mmm, HELEN KELLER /me backs away slowly That escalated rather quickly. Link to comment Share on other sites More sharing options...
zuppy3772 Posted December 21, 2012 Share Posted December 21, 2012 jizzcopter Link to comment Share on other sites More sharing options...
zuppy3772 Posted December 21, 2012 Share Posted December 21, 2012 Oh sorry, auto correct. that was meant to be kisscopter Link to comment Share on other sites More sharing options...
GreenWolf13 Posted December 21, 2012 Share Posted December 21, 2012 What autocorrect are you using? Actually, I don't want to know. Link to comment Share on other sites More sharing options...
zuppy3772 Posted December 21, 2012 Share Posted December 21, 2012 Idk, this is a public computer in the middle of a shop Link to comment Share on other sites More sharing options...
Jorcer Posted December 21, 2012 Share Posted December 21, 2012 Oh sorry, auto correct. that was meant to be kisscopter That isn't comforting at all. Link to comment Share on other sites More sharing options...
zuppy3772 Posted December 21, 2012 Share Posted December 21, 2012 it is for me. Link to comment Share on other sites More sharing options...
zuppy3772 Posted December 21, 2012 Share Posted December 21, 2012 penis Link to comment Share on other sites More sharing options...
Xylord Posted December 21, 2012 Share Posted December 21, 2012 penis This is a whole new level of trolling. I've never seen such a shocking statement before. Link to comment Share on other sites More sharing options...
Jorcer Posted December 21, 2012 Share 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. Link to comment Share on other sites More sharing options...
zuppy3772 Posted December 21, 2012 Share Posted December 21, 2012 penis Link to comment Share on other sites More sharing options...
vitorsly Posted December 21, 2012 Share Posted December 21, 2012 What is this? Seriously. I don't understand why people like this exist. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now