Jump to content

[1.6] [HELP]Custom furnace not working outside of eclipse minecraft


xcoopergangx

Recommended Posts

I made a custom furnace that the GUI texture works fine in the eclispe minecraft, but when I open the furnace in regular minecraft it shows black and purple squares.

 

 

Custom GUI code.

 

package minecraftmod;

import net.minecraft.client.gui.inventory.GuiContainer;
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.StatCollector;

import org.lwjgl.opengl.GL11;

import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

@SideOnly(Side.CLIENT)
public class TutGuiFurnace extends GuiContainer
{
    private TileEntityDarkFurnace furnaceInventory;

    public TutGuiFurnace(InventoryPlayer par1InventoryPlayer, TileEntityDarkFurnace par2TileEntityFurnace)
    {
        super(new ContainerTutFurnace(par1InventoryPlayer, par2TileEntityFurnace));
        this.furnaceInventory = par2TileEntityFurnace;
    }

    /**
     * Draw the foreground layer for the GuiContainer (everything in front of the items)
     */
    protected void drawGuiContainerForegroundLayer(int par1, int par2)
    {
        String s = this.furnaceInventory.isInvNameLocalized() ? this.furnaceInventory.getInvName() : StatCollector.translateToLocal(this.furnaceInventory.getInvName());
        this.fontRenderer.drawString(s, this.xSize / 2 - this.fontRenderer.getStringWidth(s) / 2, 6, 4210752);
        this.fontRenderer.drawString(StatCollector.translateToLocal("container.inventory"), 8, this.ySize - 96 + 2, 4210752);
    }

    /**
     * Draw the background layer for the GuiContainer (everything behind the items)
     */
    protected void drawGuiContainerBackgroundLayer(float par1, int par2, int par3)
    {
        GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
        this.mc.func_110434_K().func_110577_a(new ResourceLocation("titaniummod:/textures/gui/furnace.png"));
        int k = (this.width - this.xSize) / 2;
        int l = (this.height - this.ySize) / 2;
        this.drawTexturedModalRect(k, l, 0, 0, this.xSize, this.ySize);
        int i1;

        if (this.furnaceInventory.isBurning())
        {
            i1 = this.furnaceInventory.getBurnTimeRemainingScaled(12);
            this.drawTexturedModalRect(k + 56, l + 36 + 12 - i1, 176, 12 - i1, 14, i1 + 2);
        }

        i1 = this.furnaceInventory.getCookProgressScaled(24);
        this.drawTexturedModalRect(k + 79, l + 34, 176, 14, i1 + 1, 16);
    }
}

 

 

 

 

Link to comment
Share on other sites

Sigh.

new ResourceLocation("titaniummod", "textures/gui/furnace.png")

Start looking at older threads, questions like these have been answered before.

 

so instead of giving the anwser again you just retype exacly a pice of code he pasted ??

or is it a hint that location is not right ??

 

i cant make heads or tales out of your awnser ...

Link to comment
Share on other sites

(i dont know the answer btw BUT) i agree with guff that its kind of annoying when people ask question that have already been answered, they're losing time because they have to wait longer then if they searched and we're losing time because we have to read and repeat a solution already answered.  plus the search engine on the forum is good

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

whats wrong with the helping others in the world .. no one has time Anny more lol :S..

Anny way i can see your problem it might be true but still. i went into the history back far .. and still dint find the solutions hes talking about..

so maybe he did look but dint find it?like me ??

I'm searching for the same awnser because i want to have a custom GUI .. but when i load the location i get black and pink GUI .. meaning it cant find my GUI.

 

just need to know hot do get the right location for it in mcp`for MC 1.6.2 .. in 1.5.1 is easy its almost the same as 1.4.7 but 1.6.2 is so different with the textures i cant make heads or tale out of it..

so would you be so kind to direct met to the solution ??

Link to comment
Share on other sites

Nope that didnt work, as I said the code works perfectly fine in the Eclipse copy of Minecraft. As earth said I did look and found nothing that actually related to and/or fixed my error. The problem is that it wont load in the actual version of minecraft. Instead of you guys giving answers that you assume will work, how about you look at your own code and see whats happening in my situation to see if that code applies here. I do appreciate your answers but its annoying when you guys just paste a line of code expecting it to work.

 

What just happened!? this is with your code. (in eclipse environment)

 

femlqp.png

Link to comment
Share on other sites

I know I saw that yesterday but what is this?

 

    public static ResourceLocation houseGen_Img = new ResourceLocation("mschouses", "gui/BlockBase.png");

 

is that the class name?

Link to comment
Share on other sites

public static ResourceLocation [color=red]houseGen_Img[/color] = new ResourceLocation("mschouses", "gui/BlockBase.png");

 

the red thing???  you're asking what "houseGen_Img" is ?

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

yes, unless it's impossible for me to ask questions on a help forum without people making fools out of beginners. Im asking why is the housegen there is that where i should put my class name?

Link to comment
Share on other sites

Item asd; would be telling forge what you are creating, it is like making something new (if we are talking forge here)

 

int i; is an integer (correct me if im wrong)

 

asd is the item your creating, now can we get back to helping me

Link to comment
Share on other sites

I know what variables are and I learned from thenewboston im not stupid, I know java all I need help with is some fucking texture loading. I am so sorry I cant learn new methods in 10 seconds because mojang changes them every update.

Link to comment
Share on other sites

thx guff got it working again :))

 

huis is working again.

textures are workign again when i place the block.

 

now i need to fix the texture when your holding the block .. becose it dusnt show the front texture only sides and top .. when i hold my block

 

that'll be your metadata, i guess.

 

if you use the metadata to determine the side of the face in the following way (or similarly) then it will not render the face

public Icon getIcon(int side, int meta)
{
    if(side == 0) return iconBottom;
    else if(side == 1) return iconTop;
    else if(side == meta) return iconFront;
    else return iconSide;
}

 

in your hand the meta will most likely be 0, so all textures will be the side, top or bottom. you can ether change if(side==meta) to if(side==meta ^ (meta==0 && side==3/*this may be different, possibly 2,3,4,5*/))

alternatively you can change the metadata dropped to the number you would have used above

Link to comment
Share on other sites

this wroks fine.. at the place block texture

 

public Icon getIcon(int side, int meta)

{

    if(side == 0) return iconBottom;

    else if(side == 1) return iconTop;

    else if(side == meta) return iconFront;

    else return iconSide;

}

 

but when you are holding the block and seeing it in NEI or creative tab it still dusnt show the front :S

 

this is the code before i changed it to the top code.

 

return par1 == 1 ? this.blockIconTop : (par1 == 0 ? this.blockIconTop : (par1 != par2 ? this.blockIcon : this.blockIconFront));

 

i jsut dont udnerstadn when your holding the item it dusnt show the front but when you place it it does .. it evne updates correctly :S

 

greets

 

 

Link to comment
Share on other sites

that's what I was sayinh, when you hold the block the meta is 0, therefore it will never reach the front icon, and will only render top bottom and sides. By changing the code to:

public Icon getIcon(int side, int meta)
{
    if(side == 0) return iconBottom;
    else if(side == 1) return iconTop;
    else if(side == meta || (meta == 0 && side == 2/*this may need a different value, possible values are 2,3,4,5*/)) return iconFront;
    else return iconSide;
}

 

you check to see if the meta is 0, which implies to the game that it is in your hand. If that is true, then it will render the front icon on one of the sides, rather than omitting it.

Link to comment
Share on other sites

are you remembering to include the texture in your zip file (with the correct path)? just saying it's been done before...

 

new ResourceLocation("titaniummod", "textures/GUI/furnace.png")

 

so yeah still no good awnser on how to fix GUI textures outside of eclipse ??

 

I'm running into that problem now to and i have all the pathnames and locations written down correct .. but in eclipse it works ..

and when i test my mod all block/item textures work perfect ..

but my GUI wont work it shows pink/black squares as GUI .. so that means it cant find the path or the path isn't correct ..

 

and hes i have all the path names in my.zip files

dusnt seem to work and iv tryd allot of pathfiles  even the original pathfile for the furnace GUI dint work ..

 

so help ?

Link to comment
Share on other sites

There are lots of threads with "textures" on the title...maybe they are related ?  ::)

 

Anyway, you didn't give your code nor textures path, so by pure guess: try with lower case ? :)

 

so yea iv tryd searching for it .. but ditn find anny awnser.

 

 

package Earth.Combiner.MachineUtilety;

import Earth.Combiner.CombinerCore;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.gui.inventory.GuiContainer;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.client.resources.I18n;
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.util.ResourceLocation;

import org.lwjgl.opengl.GL11;

@SideOnly(Side.CLIENT)
public class GuiCombMachine extends GuiContainer
{
    private static final ResourceLocation field_110410_t = new ResourceLocation("combinercore", "/textures/gui/combheater.png");
    
    private TileEntityCombMachine commachineInventory;

    public GuiCombMachine(InventoryPlayer par1InventoryPlayer, TileEntityCombMachine par2TileEntityCombMachine)
    {
        super(new ContainerCombMachine(par1InventoryPlayer, par2TileEntityCombMachine));
        this.commachineInventory = par2TileEntityCombMachine;
    }

    /**
     * Draw the foreground layer for the GuiContainer (everything in front of the items)
     */
    protected void drawGuiContainerForegroundLayer(int par1, int par2)
    {
        String s = this.commachineInventory.isInvNameLocalized() ? this.commachineInventory.getInvName() : I18n.func_135053_a(this.commachineInventory.getInvName());
        this.fontRenderer.drawString(s, this.xSize / 2 - this.fontRenderer.getStringWidth(s) / 2, 6, 4210752);
        this.fontRenderer.drawString(I18n.func_135053_a("container.inventory"), 8, this.ySize - 96 + 2, 4210752);
    }

    /**
     * Draw the background layer for the GuiContainer (everything behind the items)
     */
    protected void drawGuiContainerBackgroundLayer(float par1, int par2, int par3)
    {
        GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
        this.mc.func_110434_K().func_110577_a(field_110410_t);
        int k = (this.width - this.xSize) / 2;
        int l = (this.height - this.ySize) / 2;
        this.drawTexturedModalRect(k, l, 0, 0, this.xSize, this.ySize);
        int i1;

        if (this.commachineInventory.isCombining())
        {
        	this.drawTexturedModalRect(k+31, l+38, 176, 32, 12, 12);
            i1 = this.commachineInventory.getCombTimeRemainingScaled(12);
            this.drawTexturedModalRect(k + 78, l + 54 + 12 - i1, 176, 12 - i1, 14, i1 + 2);
        }

        i1 = this.commachineInventory.getCombDurProgressScaled(24);
        this.drawTexturedModalRect(k + 70, l + 34, 176, 14, i1 + 1, 16);
    }
}

 

 

here is my code ...

 

the location and textures are all lower case idd .. this works in eclipse but dusnt work outside of ecplipse ... and yes im using same version mc and same version of forge outside of

eclipse ...

 

and i am talking about the texture of the gui not the gui itselve .. the gui itselve works but the texture wont work outside of eclipse ..

 

anny sugestions on why it dusnt work outside eclipse ??

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Dalam dunia perjudian online yang berkembang pesat, mencari platform yang dapat memberikan kemenangan maksimal dan hasil terbaik adalah impian setiap penjudi. OLXTOTO, dengan bangga, mempersembahkan dirinya sebagai jawaban atas pencarian itu. Sebagai platform terbesar untuk kemenangan maksimal dan hasil optimal, OLXTOTO telah menciptakan gelombang besar di komunitas perjudian online. Satu dari banyak keunggulan yang dimiliki OLXTOTO adalah koleksi permainan yang luas dan beragam. Dari togel hingga slot online, dari live casino hingga permainan kartu klasik, OLXTOTO memiliki sesuatu untuk setiap pemain. Dibangun dengan teknologi terkini dan dikembangkan oleh para ahli industri, setiap permainan di platform ini dirancang untuk memberikan pengalaman yang tak tertandingi bagi para penjudi. Namun, keunggulan OLXTOTO tidak hanya terletak pada variasi permainan yang mereka tawarkan. Mereka juga menonjol karena komitmen mereka terhadap keamanan dan keadilan. Dengan sistem keamanan tingkat tinggi dan proses audit yang ketat, OLXTOTO memastikan bahwa setiap putaran permainan berjalan dengan adil dan transparan. Para pemain dapat merasa aman dan yakin bahwa pengalaman berjudi mereka di OLXTOTO tidak akan terganggu oleh masalah keamanan atau keadilan. Tak hanya itu, OLXTOTO juga terkenal karena layanan pelanggan yang luar biasa. Tim dukungan mereka selalu siap sedia untuk membantu para pemain dengan segala pertanyaan atau masalah yang mereka hadapi. Dengan respon cepat dan solusi yang efisien, OLXTOTO memastikan bahwa pengalaman berjudi para pemain tetap mulus dan menyenangkan. Dengan semua fitur dan keunggulan yang ditawarkannya, tidak mengherankan bahwa OLXTOTO telah menjadi pilihan utama bagi jutaan penjudi online di seluruh dunia. Jika Anda mencari platform yang dapat memberikan kemenangan maksimal dan hasil optimal, tidak perlu mencari lebih jauh dari OLXTOTO. Bergabunglah dengan OLXTOTO hari ini dan mulailah petualangan Anda menuju kemenangan besar dan hasil terbaik!
    • Selamat datang di OLXTOTO, situs slot gacor terpanas yang sedang booming di industri perjudian online. Jika Anda mencari pengalaman bermain yang luar biasa, maka OLXTOTO adalah tempat yang tepat untuk Anda. Dapatkan sensasi tidak biasa dengan variasi slot online terlengkap dan peluang memenangkan jackpot slot maxwin yang sering. Di sini, Anda akan merasakan keseruan yang luar biasa dalam bermain judi slot. DAFTAR OLXTOTO DISINI LOGIN OLXTOTO DISINI AKUN PRO OLXTOTO DISINI   Jackpot Slot Maxwin Sering Untuk Peluang Besar Di OLXTOTO, kami tidak hanya memberikan hadiah slot biasa, tapi juga memberikan kesempatan kepada pemain untuk memenangkan jackpot slot maxwin yang sering. Dengan demikian, Anda dapat meraih keberuntungan besar dan memenangkan ribuan rupiah sebagai hadiah jackpot slot maxwin kami. Jackpot slot maxwin merupakan peluang besar bagi para pemain judi slot untuk meraih keuntungan yang lebih besar. Dalam permainan kami, Anda tidak harus terpaku pada kemenangan biasa saja. Kami hadir dengan jackpot slot maxwin yang sering, sehingga Anda memiliki peluang yang lebih besar untuk meraih kemenangan besar dengan hadiah yang menggiurkan. Dalam permainan judi slot, pengalaman bermain bukan hanya tentang keseruan dan hiburan semata. Kami memahami bahwa para pemain juga menginginkan kesempatan untuk meraih keberuntungan besar. Oleh karena itu, OLXTOTO hadir dengan jackpot slot maxwin yang sering untuk memberikan peluang besar kepada para pemain kami. Peluang Besar Menang Jackpot Slot Maxwin Peluang menang jackpot slot maxwin di OLXTOTO sangatlah besar. Anda tidak perlu khawatir tentang batasan atau pembatasan dalam meraih jackpot tersebut. Kami ingin memberikan kesempatan kepada semua pemain kami untuk merasakan sensasi menang dalam jumlah yang luar biasa. Jackpot slot maxwin kami dibuka untuk semua pemain judi slot di OLXTOTO. Anda memiliki peluang yang sama dengan pemain lainnya untuk memenangkan hadiah jackpot yang besar. Kami percaya bahwa semua orang memiliki kesempatan untuk meraih keberuntungan besar, dan itulah mengapa kami menyediakan jackpot slot maxwin yang sering untuk memenuhi harapan dan keinginan Anda.   Kesimpulan OLXTOTO adalah situs slot gacor terbaik yang memberikan pengalaman bermain judi slot online yang tak terlupakan. Dengan variasi slot online terlengkap dan peluang memenangkan jackpot slot maxwin yang sering, OLXTOTO menjadi pilihan terbaik bagi para pemain yang mencari kesenangan dan kemenangan besar dalam perjudian online. Di samping itu, OLXTOTO juga menawarkan layanan pelanggan yang ramah dan responsif, siap membantu setiap pemain dalam mengatasi masalah teknis atau pertanyaan seputar perjudian online. Kami menjaga integritas game dan memberikan lingkungan bermain yang adil serta menjalankan kebijakan perlindungan pelanggan yang cermat. Bergabunglah dengan OLXTOTO sekarang dan nikmati pengalaman bermain slot online yang luar biasa. Jadilah bagian dari komunitas perjudian yang mengagumkan ini dan raih kesempatan untuk meraih kemenangan besar. Dapatkan akses mudah dan praktis ke situs OLXTOTO dan rasakan sensasi bermain judi slot yang tak terlupakan.  
    • OLXTOTO: Platform Maxwin dan Gacor Terbesar Sepanjang Masa Di dunia perjudian online yang begitu kompetitif, mencari platform yang dapat memberikan kemenangan maksimal (Maxwin) dan hasil terbaik (Gacor) adalah prioritas bagi para penjudi yang cerdas. Dalam upaya ini, OLXTOTO telah muncul sebagai pemain kunci yang mengubah lanskap perjudian online dengan menawarkan pengalaman tanpa tandingan.     Sejak diluncurkan, OLXTOTO telah menjadi sorotan industri perjudian online. Dikenal sebagai "Platform Maxwin dan Gacor Terbesar Sepanjang Masa", OLXTOTO telah menarik perhatian pemain dari seluruh dunia dengan reputasinya yang solid dan kinerja yang luar biasa. Salah satu fitur utama yang membedakan OLXTOTO dari pesaingnya adalah komitmen mereka untuk memberikan pengalaman berjudi yang unik dan memuaskan. Dengan koleksi game yang luas dan beragam, termasuk togel, slot online, live casino, dan banyak lagi, OLXTOTO menawarkan sesuatu untuk semua orang. Dibangun dengan teknologi terkini dan didukung oleh tim ahli yang berdedikasi, platform ini memastikan bahwa setiap pengalaman berjudi di OLXTOTO tidak hanya menghibur, tetapi juga menguntungkan. Namun, keunggulan OLXTOTO tidak hanya terletak pada permainan yang mereka tawarkan. Mereka juga terkenal karena keamanan dan keadilan yang mereka berikan kepada para pemain mereka. Dengan sistem keamanan tingkat tinggi dan audit rutin yang dilakukan oleh otoritas regulasi independen, para pemain dapat yakin bahwa setiap putaran permainan di OLXTOTO adalah adil dan transparan. Tidak hanya itu, OLXTOTO juga dikenal karena layanan pelanggan yang luar biasa. Dengan tim dukungan yang ramah dan responsif, para pemain dapat yakin bahwa setiap pertanyaan atau masalah mereka akan ditangani dengan cepat dan efisien. Dengan semua fitur dan keunggulan yang ditawarkannya, tidak mengherankan bahwa OLXTOTO telah menjadi platform pilihan bagi para penjudi online yang mencari kemenangan maksimal dan hasil terbaik. Jadi, jika Anda ingin bergabung dengan jutaan pemain yang telah merasakan keajaiban OLXTOTO, jangan ragu untuk mendaftar dan mulai bermain hari ini!  
    • OLXTOTO adalah bandar slot yang terkenal dan terpercaya di Indonesia. Mereka menawarkan berbagai jenis permainan slot yang menarik dan menghibur. Dengan tampilan yang menarik dan grafis yang berkualitas tinggi, pemain akan merasa seperti berada di kasino sungguhan. OLXTOTO juga menyediakan layanan pelanggan yang ramah dan responsif, siap membantu pemain dengan segala pertanyaan atau masalah yang mereka hadapi. Daftar =  https://surkale.me/Olxtotodotcom1
    • DAFTAR & LOGIN BIGO4D   Bigo4D adalah situs slot online yang populer dan menarik perhatian banyak pemain slot di Indonesia. Dengan berbagai game slot yang unik dan menarik, Bigo4D menjadi tempat yang ideal untuk pemula dan pahlawan slot yang berpengalaman. Dalam artikel ini, kami akan membahas tentang Bigo4D sebagai situs slot terbesar dan menarik yang saat ini banyak dijajaki oleh pemain slot online.
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.