• 1

    posted a message on [Modeler] Techne - New Website - Techne2 in progress

    Seems like it never will. Wish someone would change the name of this thread to end with "Discontinued", instead of "in progress" :)


    In its day it was a great program, but I see less and less people using it.

    Posted in: Minecraft Tools
  • 1

    posted a message on I need help with some advanced modding! PLZ HELP!
    Quote from lemonszz»

    While I understand your eagerness to jump into modding, you should learn how programming works before you continue. It will help you understand simple things like this.


    Ya, from the thread title, I thought I might read about something advanced, but this is just about basic Java syntax :)
    Posted in: Modification Development
  • 1

    posted a message on [WIP] ARKCraft: Survival Evolved - Dinos, Taming, Breeding, and More!
    Quote from spires33»

    I can't wait!!

    Will you make it so that the color combos are random? i know this is a lot to ask, but it would be awesome!


    So by random, you mean like the raptor has multiple different colors?

    We will do this on some of the dinos (like the Raptor), but not all of them I think. If it works out, you should even see a rainbow raptor :)
    Posted in: WIP Mods
  • 1

    posted a message on How the make mod/team

    Another suggestion is that instead of jumping in thinking you will lead a mod team and somehow know what to do, you instead join an existing mod team that needs help. Do whatever you feel comfortable with. Learn bit by bit until you have the experience to make your own mod.


    So another way to say this, is instead of asking for help, ask if you can help out.


    There are plenty of mods looking for help, including the one I'm working on :)

    Posted in: Modification Development
  • 1

    posted a message on HEEEELP!!!! (Problem with Furnace Progress Bar)

    These are the two lines in the crash report that we care about:

    java.lang.NullPointerException: Rendering screen
    at com.mrzorse.startrek.gui.GuiIngotFurnace.drawGuiContainerBackgroundLayer(GuiIngotFurnace.java:49)

    I think this is line 49:
    if (this.tileFurnace.isBurning())

    You are not initializing tileFurnace, change these lines of code from:

    private TileEntityIngotFurnace tileFurnace;

    public GuiIngotFurnace(InventoryPlayer invPlayer, TileEntityIngotFurnace tile) {
    super(new ContainerIngotFurnace(invPlayer, tile));
    }
    To:

    private TileEntityIngotFurnace tileFurnace;

    public GuiIngotFurnace(InventoryPlayer invPlayer, TileEntityIngotFurnace tile) {
    super(new ContainerIngotFurnace(invPlayer, tile));
    this.tileFurnace = tile;
    }
     
    Posted in: Modification Development
  • 1

    posted a message on Gui does not show first file

    I do recommend you read a tutorial. If you are doing anything at all different than the couple of ways this is done in MC, then you will really need to understand how it works. I've only been coding GUIs for a little over a month, but I've done 5 so far, with two of them similar, but the other 4 very different. Each had its own challenges. Each has taken me over 10 hours. Maybe now, I can do one in about 3 or 4 hours. The kind I've been doing are the furnace type variety, where they are doing stuff even when the GUI is closed, and that is the more difficult type to do.Not sure what type yours is exactly.

    Posted in: Modification Development
  • 1

    posted a message on Gui does not show first file

    You need to find a better tutorial.


    You add the buttons in the initGui, not the drawGuiContainerForegroundLayer.

    Posted in: Modification Development
  • 1

    posted a message on Preventing hot-to-cold biome transitions

    I think one problem with the strategy you've come up with, is it looks like your logic is assuming that a biome is only adjacent to one other biome. But in fact a biome could be, and is likely to be adjacent to 2 or possibly even 3 or 4 biomes. No way you can avoid a "bad" transition if you have just 4 categories.

    Posted in: Modification Development
  • 1

    posted a message on [WIP] ARKCraft: Survival Evolved - Dinos, Taming, Breeding, and More!

    So the pipe towater the crop (I am coding that), but what is the wire for? I don't think we will have anything too advanced for awhile except for probably a gun.

    Posted in: WIP Mods
  • 1

    posted a message on W.I.P - Draco Animus: Minecraft through a Dragon's Eyes ~ On Hold ~ In need of experienced coder

    That is a very bizzarre place to crash. I think it is saying my StructureList class file is missing. That doesn't sound like any mod incompatibility, unless another mod is removing the class file. It sounds more like you have a corrupt jar file.

    Posted in: WIP Mods
  • To post a comment, please .