• 0

    posted a message on [Forge] Matter Overdrive (Replication,Energy Weapons,Black Holes and Androids)

    I haven't been able to find any android houses, could you post a picture of the outside please?

    Posted in: Minecraft Mods
  • 0

    posted a message on [1.4.6]v2 Custom Ore Generation (updated Jan. 5th)
    Quote from shadoskil

    4 posts up he said. "Update: I have been having significant computer + internet issues for the last 3 weeks. Hopefully they get cleared up soon. Thank you all for your patience."

    Derp. I apologize, I don't know how I didn't see that.
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.4.6]v2 Custom Ore Generation (updated Jan. 5th)
    So do we have an ETA on when the update is coming for 1.5?
    Posted in: Minecraft Mods
  • 0

    posted a message on MultiMC 5 [Windows / Linux / Mac]
    Hello everyone. I just got MultiMC and require some help. I just installed Ubuntu today (latest distro) so bear with me. I got wxGTK and followed some tutorials I found, but cannot get it to run. I am on an amd 64x system. Any help for this noob would be appreciated.
    Posted in: Minecraft Tools
  • 0

    posted a message on Direwolf20's Modded Lets Play series
    Quote from dazbuzz

    Fabricator is from Xycraft, all the Xycraft machines are still in testing, so you will only see them on the forgecraft server.

    Darn. Ok, thanks.
    Posted in: Let's Plays
  • 0

    posted a message on Direwolf20's Modded Lets Play series
    On the latest SMP episode you used a thing called a fabricator, what mod is that from? I am in a custom Mindcrack pack and can't find it, nor can I find it on the Wiki.
    Posted in: Let's Plays
  • 0

    posted a message on Need help with mod, Cannot obtain in game!
    I fixed it, there was no crash. I simply couldn't craft it, but I fixed it by changing Item.RawCardboard to mod_RawCardboard.RawCardboard.
    Posted in: Modification Development
  • 0

    posted a message on [1.4.7] Jbond98's Beginner/Advanced ModLoader Minecraft Modding Tutorials! -Everything Updated to 1.4.7! [Updated 1/23/2013]
    Quote from Kai2rulez

    mod_rawCardboard.RawCardboard.itemID

    Just replace "item.rawCardboard" with this in any spots. Also. Fix any misspellings I did for that.

    Thanks, works so far.
    Posted in: Tutorials
  • 0

    posted a message on [1.4.7] Jbond98's Beginner/Advanced ModLoader Minecraft Modding Tutorials! -Everything Updated to 1.4.7! [Updated 1/23/2013]
    I'm having a problem. I am trying to use an item from my mod in a recipe for another, but it won't recognize it. Here is my code:
    mod_rawCardboard:

    package net.minecraft.src;
    
    public class mod_RawCardboard extends BaseMod
    {
    
    
    public static final Item RawCardboard = new ItemRawCardboard(500).setItemName("Rawcardboard");
    
    public void load()
    {
    RawCardboard.iconIndex = ModLoader.addOverride("/gui/items.png", "rawcardboard.png");
    ModLoader.addName(RawCardboard, "Raw Cardboard");
    
    ModLoader.addRecipe(new ItemStack(RawCardboard, 1), new Object[] {
    "###", "#%#", "###", Character.valueOf('#'), Item.paper, Character.valueOf('%'), Item.bucketWater
    });
    RawCardboard.setCreativeTab(CreativeTabs.tabMisc);
    }
    public String getVersion()
    {
    return "1.0";
    }
    public static final Item CardboardTube = new ItemRawCardboard(501).setItemName("CardboardTube");
    
    public void load1()
    {
    CardboardTube.iconIndex = ModLoader.addOverride("/gui/items.png", "rawcardboard.png");
    ModLoader.addName(CardboardTube, "Cardboard Tube");
    
    ModLoader.addRecipe(new ItemStack(CardboardTube, 1), new Object[] {
    "# #", "# #", "# #", Character.valueOf('#'), Item.RawCardboard, });
    CardboardTube.setCreativeTab(CreativeTabs.tabMisc);
    }
    }


    ItemRawCardboard:
    package net.minecraft.src;
    public class ItemRawCardboard extends Item
    {
    
    public ItemRawCardboard(int i)
    {
    super(i);
    maxStackSize = 64;
    
    }
    public String Version()
    {
    return "1.0";
    }
    }

    Posted in: Tutorials
  • 0

    posted a message on Need help with mod, Cannot obtain in game!
    I completely changed my code, here it is now:

    mod_RawCardboard:
    package net.minecraft.src;
    public class mod_RawCardboard extends BaseMod
    {
    public static final Item RawCardboard = new ItemRawCardboard(500).setItemName("Raw Cardboard");
    
    public void load()
    {
    RawCardboard.iconIndex = ModLoader.addOverride("/gui/items.png", "rawcardboard.png");
    ModLoader.addName(RawCardboard, "Raw Cardboard");
    RawCardboard.setCreativeTab(CreativeTabs.tabMaterials);
    }
    
    public String getVersion()
    {
    return "1.0";
    }
    }


    ItemRawCardboard:
    package net.minecraft.src;
    public class ItemRawCardboard extends Item
    {
    public ItemRawCardboard(int i)
    {
    super(i);
    maxStackSize = 64;
    
    }
    public String Version()
    {
    return "1.0";
    }
    }


    EDIT: Here is my new code with crafting recipe, I cannot craft it.

    mod_RawCardboard
    public class mod_RawCardboard extends BaseMod
    {
    
    
    public static final Item RawCardboard = new ItemRawCardboard(500).setItemName("Raw Cardboard");
    
    public void load()
    {
    RawCardboard.iconIndex = ModLoader.addOverride("/gui/items.png", "rawcardboard.png");
    ModLoader.addName(RawCardboard, "Raw Cardboard");
    
    ModLoader.addRecipe(new ItemStack(RawCardboard, 1), new Object[] {
    "###", "#%#", "###", Character.valueOf('#'), Item.paper, Character.valueOf('%'), Item.bucketWater
    });
    RawCardboard.setCreativeTab(CreativeTabs.tabMisc);
    }
    
    
    public String getVersion()
    {
    return "1.0";
    }
    }


    The other file didn't change.
    I'm an idiot, I was using maps instead of paper. thank you to anyone who read all this, and I apologize lol.

    DOUBLE EDIT:
    Trying to add the second part of my mod, making the raw cardboard be used in a recipe for a cardboard tube, and cannot get it to work.

    package net.minecraft.src;
    
    public class mod_RawCardboard extends BaseMod
    {
    
    
    public static final Item RawCardboard = new ItemRawCardboard(500).setItemName("Rawcardboard");
    
    public void load()
    {
    RawCardboard.iconIndex = ModLoader.addOverride("/gui/items.png", "rawcardboard.png");
    ModLoader.addName(RawCardboard, "Raw Cardboard");
    
    ModLoader.addRecipe(new ItemStack(RawCardboard, 1), new Object[] {
    "###", "#%#", "###", Character.valueOf('#'), Item.paper, Character.valueOf('%'), Item.bucketWater
    });
    RawCardboard.setCreativeTab(CreativeTabs.tabMisc);
    }
    public String getVersion()
    {
    return "1.0";
    }
    public static final Item CardboardTube = new ItemRawCardboard(501).setItemName("CardboardTube");
    
    public void load1()
    {
    CardboardTube.iconIndex = ModLoader.addOverride("/gui/items.png", "rawcardboard.png");
    ModLoader.addName(CardboardTube, "Cardboard Tube");
    
    ModLoader.addRecipe(new ItemStack(CardboardTube, 1), new Object[] {
    "# #", "# #", "# #", Character.valueOf('#'), Item.RawCardboard, });
    CardboardTube.setCreativeTab(CreativeTabs.tabMisc);
    }
    }


    ItemRawCardboard:
    package net.minecraft.src;
    public class ItemRawCardboard extends Item
    {
    
    public ItemRawCardboard(int i)
    {
    super(i);
    maxStackSize = 64;
    
    }
    public String Version()
    {
    return "1.0";
    }
    }

    Posted in: Modification Development
  • 0

    posted a message on Need help with mod, Cannot obtain in game!
    EDIT: Still doesn't work, underlines setItemName still. Here is my current code with the changes suggested:
    mod_RawCardboard:
    package net.minecraft.src;
    public class mod_RawCardboard extends BaseMod
    {
    public static final Item rawCardboard = new RawCardboardItem(2000).setItemName("Raw Cardboard");
    public mod_RawCardboard()
    {
    rawCardboard.iconIndex = ModLoader.addOverride("/gui/items.png", "/raw_cardboard.png");
    ModLoader.addRecipe(new ItemStack(rawCardboard, 1), new Object[] {
    "###", "#%#", "##", Character.valueOf('#'), Item.paper, Character.valueOf('%'), Item.bucketWater
    });
    }
    
    @Override
    public String getVersion()
    {
    return "Kelt's Derp Mod";
    }
    @Override
    public void load()
    {
    }
    public Item setItemName(String name)
    {
    ModLoader.setItemName(name);
    ModLoader.addName(this, name);
    return this;
    }
    }


    And RawCardBoardItem:
    package net.minecraft.src;
    public class RawCardboardItem extends Item
    {
    
    
    public RawCardboardItem(int i)
    {
    super(i);
    }
    
    }
    Posted in: Modification Development
  • 0

    posted a message on Need help with mod, Cannot obtain in game!
    Hello everyone. I made part of a mod (not telling what it is) and cannot craft it or spawn it in. I am in MCP 1.4.7 as well as MC 1.4.7. Here is the code:
    mod_RawCardboard
    package net.minecraft.src;
    public class mod_RawCardboard extends BaseMod
    {
    public static final Item rawCardboard = new RawCardboardItem(2000).setItemName("Raw Cardboard");
    public mod_RawCardboard()
    {
    rawCardboard.iconIndex = ModLoader.addOverride("/gui/items.png", "/raw_cardboard.png");
    ModLoader.addRecipe(new ItemStack(rawCardboard, 1), new Object[] {
    "###", "#%#", "##", Character.valueOf('#'), Item.paper, Character.valueOf('%'), Item.bucketWater
    });
    }
    
    @Override
    public String getVersion()
    {
    return "Kelt's Derp Mod";
    }
    @Override
    public void load()
    {
    }
    }


    RawCardboardItem
    package net.minecraft.src;
    public class RawCardboardItem extends Item
    {
    
    
    public RawCardboardItem(int i)
    {
    super(i);
    }
    
    public Item setItemName(String name)
    {
    super.setItemName(name);
    ModLoader.addName(this, name);
    return this;
    }
    }


    Any help is appreciated. I am very new to this, in case you can't tell.
    Posted in: Modification Development
  • 0

    posted a message on Zen Village - [Whitelist] [Factions] [Mythic Mobs - WIP] [PUB WARS - Brewery] [MCMMO] [GoldisMoney] [PVP/Survival]
    I disagree Ras. The server will, unfortunately, be going into abusive hands. They abused their power within the first 5 minutes I heard of them taking over.
    Posted in: PC Servers
  • 1

    posted a message on Zen Village - [Whitelist] [Factions] [Mythic Mobs - WIP] [PUB WARS - Brewery] [MCMMO] [GoldisMoney] [PVP/Survival]
    I am deeply regretting joining this server. Bubba is claiming it is taking 2 DAYS to download the map, which is absurd. He then said that everything we did today (12/14/12) will be rolled back. He then began muting people for denying his claims and voicing their opinions. This is very unfortunate.

    EDIT: Bubba is also force TP'ing to people, and muting everyone who says things he doesn't like.

    EDIT2: They are now kicking and muting people they disagree with, and Bubba is flying around in creative. They are saying we have no right to vote. If this continues, I'm not coming back, donation or not.
    Posted in: PC Servers
  • 0

    posted a message on Zen Village - [Whitelist] [Factions] [Mythic Mobs - WIP] [PUB WARS - Brewery] [MCMMO] [GoldisMoney] [PVP/Survival]
    Server's down, for anyone with the ability to put it back up who sees this.
    Posted in: PC Servers
  • To post a comment, please .