Jump to content

Custom fire block won't burn entities, works fine on blocks.


WolfAmaril

Recommended Posts

Minecraft hardcodes the Blocks that burn entities. The corresponding forge-hook is

isBurning

, override that in your Block class.

Darn you beat me to it lol guess i need to get faster at searching through the minecraft code.

You've got to be pretty quick on the draw to beat dieSieben, that's for sure...

Link to comment
Share on other sites

OK, that fixed half my problems.

Only problem left is the stupid thing doesn't go out when punched, you need to break the block that's on fire to extinguish it.

Any ideas, or am I just missing the code to give it a proper bounding box?

 

package com.wolfamaril.coloredflame.block;

 

 

 

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

import net.minecraft.block.material.MapColor;

import net.minecraft.client.renderer.texture.IIconRegister;

import net.minecraft.util.IIcon;

import net.minecraft.world.IBlockAccess;

import net.minecraft.world.World;

 

import java.util.Random;

 

public abstract class BlockFireColoredBase extends BlockColoredFlame

{

    public BlockFireColoredBase()

    {

        super();

        this.setLightLevel(1.0F);

    }

 

    @SideOnly(Side.CLIENT)

    private IIcon[] icon;

 

public boolean isBurning(IBlockAccess world, int x, int y, int z)

{

    return true;

}

    public boolean isOpaqueCube()

    {

        return false;

    }

 

    public boolean renderAsNormalBlock()

    {

        return false;

    }

 

    public int getRenderType()

    {

        return 3;

    }

 

    public int quantityDropped(Random dropped)

    {

        return 0;

    }

 

    public int tickRate(World world)

    {

        return 30;

    }

 

    @SideOnly(Side.CLIENT)

    public void registerBlockIcons(IIconRegister fireIcon)

    {

        this.icon = new IIcon[] {fireIcon.registerIcon(this.getTextureName() + "_layer_0"), fireIcon.registerIcon(this.getTextureName() + "_layer_1")};

    }

 

    @SideOnly(Side.CLIENT)

    public IIcon getFireIcon(int fireIconInt)

    {

        return this.icon[fireIconInt];

    }

 

    /**

    * Gets the block's texture. Args: side, meta

    */

    @SideOnly(Side.CLIENT)

    public IIcon getIcon(int p_149691_1_, int p_149691_2_)

    {

        return this.icon[0];

    }

 

    public MapColor getMapColor(int mapColor)

    {

        return MapColor.tntColor;

    }

}

 

Link to comment
Share on other sites

So I poked around, got a few errors, and now have this

public void onBlockClicked(World world, int x, int y, int z, EntityPlayer player)

    {

        World.extinguishFire(player, x, y, z,);

    }

 

However, I'm now getting "non-static method cannot be referenced from a static context"

So how do I fix that, as nowhere in the class I'm working on does it call anything static.

Link to comment
Share on other sites

Congratulations, you just figured out the reason I'm writing basic mods for minecraft.

The answer: Cause the Java classes available to me are next to useless.

 

So either help, or stop filling up this thread and let somebody who's willing to help do it.

 

Also, I'd already figured out the part about needing an instance of world, and getting it from the onBlockClicked method. I just don't know how to put it into my extinguishFire method.

 

Here's the code https://github.com/WolfAmaril/ColoredFlame/blob/master/src/main/java/com/wolfamaril/coloredflame/block/BlockFireColoredBase.java

Link to comment
Share on other sites

Ok, pretty sure I almost got it, but I the problem is performing a correct override breaks the extinguishFire method, which requires the int blockDirection, and adding the int blockDirection to my onBlockClicked deceleration breaks the override.

 

Where would I start fixing this?

 

Wait, no, I think I have an idea. Is there a forge hook to get the direction a block was clicked from?

Link to comment
Share on other sites

If there is i dont know it but you could just leave that out altogether. It wouldnt work exactly like vanilla fire but it would go out when you hit it. I think that is used to check that you hit the bottom of the block so without it it wouldnt matter where you click as long as you hit the fire block. I may be wrong. 

 

Edit: You may be able to use ray tracing.

I am the author of Draconic Evolution

Link to comment
Share on other sites

After some research, experimenting, and playing around with mods that are made by people vastly more skilled in Java than I, I have determined one thing.

 

This is probably one of the hardest things to attempt to do with a mod.

That is to say, make a custom fire block that goes out when hit.

Also, I am tired, it's the start of (my) weekend, so I'm just gonna sleep on it for a bit.

Link to comment
Share on other sites

Oh come on dont make it sound so impossible. I happen to have a custom fire block im my mod that also dose not go out when you left click it (Thats the way i want it) It took me 2 minutes to achieve what you are trying to do using PlayerInteractEvent.

 

Here is part of what i came up with.

@SubscribeEvent
public void playerInteract(PlayerInteractEvent event){
if (event.action == PlayerInteractEvent.Action.LEFT_CLICK_BLOCK){
	if (event.world.getBlock(event.x, event.y + 1, event.z) == "Your fire block"){
		event.world.setBlockToAir(event.x, event.y + 1, event.z);
	}
}
}

That will extinguish the fire if you click the block under it. However it will not work if the fire is on the side of a block i will let you figure that part out for yourself but i have done most of the work for you.

 

Hint: ForgeDirection will be a big help.

 

I am the author of Draconic Evolution

Link to comment
Share on other sites

Oh come on dont make it sound so impossible. I happen to have a custom fire block im my mod that also dose not go out when you left click it (Thats the way i want it) It took me 2 minutes to achieve what you are trying to do using PlayerInteractEvent.

 

Here is part of what i came up with.

@SubscribeEvent
public void playerInteract(PlayerInteractEvent event){
if (event.action == PlayerInteractEvent.Action.LEFT_CLICK_BLOCK){
	if (event.world.getBlock(event.x, event.y + 1, event.z) == "Your fire block"){
		event.world.setBlockToAir(event.x, event.y + 1, event.z);
	}
}
}

That will extinguish the fire if you click the block under it. However it will not work if the fire is on the side of a block i will let you figure that part out for yourself but i have done most of the work for you.

 

Hint: ForgeDirection will be a big help.

 

 

Just spent a few hours trying to get this to work and, while I understand the theory behind it, I can't seem to get the Subscribe event so work right, and my EventHandler class is just kinda meh.

Link to comment
Share on other sites

Link to comment
Share on other sites

Hmm... That all looks correct try adding a System.out to the event handler to to check that it is actually getting called. Also maby rename your event handler class because there are a lot of classes called EventHandler.

 

Edit: Have you done anything to your block to make it possible to actually hit it? When you try to hit fire (including my custom fire block) you actually hit the block under/behind it because fire has no selection bounding box. The way the code i gave you works is it detects when a player left clicks a block (any block) and checks if the block above that block is your fire block if so it sets the block above the block you clicked to air.

 

Edit2: Looking at your code it looks like FireColoredBase is your base block and all of the actual blocks that exist in world extend that? If that is true

event.world.getBlock(event.x, event.y + 1, event.z) == ModBlocks.FireColoredBase

will never return true because FireColoredBase dosnt actually exist in world. To fix that use instanceof FireColoredBase instead of == ModBlocks.FireColoredBase

 

Edit3: Assuming that BlockFireColoredBase is a base class that you dont want to exist in game you should not have an instance of it in your ModBlocks class the isBurning override should be in the class itself and it should not be registered. (But thats assuming you dont want it registered in game)

One last thing... Look into java naming convention http://www.oracle.com/technetwork/java/codeconventions-135099.html

I am the author of Draconic Evolution

Link to comment
Share on other sites

IT WORKS IT WORKS THANK YOU IT WORKS!

 

I'd registered FireColoredBase to try and make instanceof works, but turns out that was wrong, so now it's not registered, so that's fixed.

 

Will probably just give my fire block a normal full block bounding box to make it easier to click and not have to add lots of code. That shouldn't make it solid form what I've seen.

 

What part of the naming convention did I screw up? My Java prof taught about 4 different naming conventions (none of which I'm actually convinced are the right one).

Link to comment
Share on other sites

I'm not sure about which one you messed up, but naming something EventHandler, when you need to import an EventHandler class will really screw with the compiler unless you specify with the fully qualified name for the class you are wanting to use.

 

For example:

com.yourname.class.EventHandler would be a fully qualified name to determine which event handler class it should be using.

Link to comment
Share on other sites

I was referring to the way you named your block instances in your ModBlocks class  e.g. "FireColoredBlack" should be "fireColoredBlack" Also giving your fire block a bounding box would make things simpler but i think fire with a bounding box would be a bit weird. It wont take much to get the code i gave you yo work properly.

 

Here is another really big hint

ForgeDirection face = ForgeDirection.getOrientation(event.face);
int x = event.x + face.offsetX;
int y = event.y + face.offsetY;
int z = event.z + face.offsetZ;
System.out.println(event.world.getBlock(x, y, z));

I am the author of Draconic Evolution

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

    • DAFTAR SCATTER HITAM MAXWIN DAFTAR SCATTER HITAM MAXWIN DAFTAR SCATTER HITAM MAXWIN Scatter Hitam adalah salah satu fitur terbaru slot pg soft scatter hitam mahjong ways yang memberikan bonus jackpot yang sangat besar dengan taruhan termurah dan selalu memberikan peluang menang maxwin bagi pecinta slot online di Indonesia. TAG :  Scatter Hitam Scatter Hitam Scatter Hitam Scatter Hitam Scatter Hitam Scatter Hitam Scatter Hitam Scatter Hitam
    • DAFTAR SCATTER HITAM MAXWIN DAFTAR SCATTER HITAM MAXWIN DAFTAR SCATTER HITAM MAXWIN Scatter hitam merupakan salah satu fitur bonus jackpot maxwin terbaru yang di keluarkan oleh provider pg soft resmi dari slot mahjong ways. Mendapatkan 2 scatter hitam mahjong ways anda bisa merasakan hadiah bonus freespin dan bonus uang sebesar 5 juta. TAG : Scatter Hitam Scatter Hitam Scatter Hitam Scatter Hitam Scatter Hitam Scatter Hitam
    • DAFTAR DI >>SINI<< DAFTAR DI >>SINI<< DAFTAR DI >>SINI<<   Daftar sekarang di Slot SeaBank untuk menikmati slot online paling gacor hari ini! Dengan proses deposit aman dan cepat via SeaBank, Anda langsung bisa merasakan keseruan dan peluang menang besar. Gabung bersama kami untuk pengalaman bermain slot yang terpercaya dan penuh jackpot. Klik link daftar kami sekarang! Slot gacor merupakan salah satu situs slot yang terus berkembang mengikuti perkembangan teknologi saat ini hingga muncul situs slot gacor gampang menang yang selalu memberikan kemenangan kepada pemain yang royal untuk bermain slot terbaru & slot tergacor setiap harinya. Salah satu provider yang selalu berkembang mengikuti jaman adalah MAXWINBET77 karena situs ini selalu menyediakan slot online terbaru sehingga sangat banyak orang yang gemar untuk berkunjungi provider MAXWINBET77, Bahkan situs ini juga menyediakan fitur dan tema yang beragam sehingga pemain tidak akan merasa bosan untuk bermain permainan situs slot gacor hari ini dan menikmati sensasi bermain yang hanya ada di situs MAXWINBET77. Terdapat ribuan situs slot gacor terbaru yang bisa kalian mainkan setiap hari untuk meningkatkan kemampuan dalam bermain slot gampang menang. Jikalau kalian ingin mendapatkan jackpot maxwin kalian harus mendaftar terlebih dahulu melalui link slot gacor yang telah tersedia di mesin pencarian ponsel kalian seperti Google, UC Browser, Chrome dan mesin pencarian lainnya, lalu kalian bisa mencari info link slot gacor hari ini untuk kalian yang ingin menikmati permainan yang bisa membuat kalian menjadi kayaraya tanpa harus bekerja setiap harinya. Login MAXWINBET77 merupakan saran utama yang bisa kalian pakai untuk meningkatkan cara bermain kalian dan menghasilkan uang yang sangat banyak tanpa harus keluar dari rumah dan mencari tempat bermain slot online yang nyaman. Situs MAXWINBET77 memiliki RTP yang sangat tinggi, dimana pemain akan lebih mudah untuk mendapatkan kemenangan maxwin dengan sangat mudah jika kalian sungguh mengikuti alur RTP yang telah disediakan oleh costumer service, kalian juga bisa mendapatkan pola slot tergacor yang bisa kalian dapatkan dengan meminta kepada costumer service yang bersedia untuk melayani member yang kesusahan dalam melakukan transaksi dan bersedia untuk memberikan member pola slot terbaru yang sangat dipercayai akan mendapatkan kemenangan sensasional x500 di tahun 2024 ini. Hal yang harus kalian perhatiin ketika bermain slot gacor gampang menang adalah mengandalin fitur dan bonus yang tersedia untuk pemain slot gacor MAXWINBET77 dapatkan. Untuk bermain di Link MAXWINBET77 kalian bisa menggunakan metode transaksi bermacam-macam seperti E-Money dan M-Banking. Banyak sekali metode transaksi yang disediakan oleh MAXWINBET77 untuk memainkan provider MAXWINBET77 contoh metode transaksi M-Banking yang bisa di pakai untuk bermain slot online adalah BCA, BRI, BNI, Mandiri dan ada lagi metode transaksi E-Money yang bisa kalian pakai seperti OVO, DANA, Pulsa, GOPAY dan masih banyak lagi yang disediakan untuk memberikan kesempatan bermain dan mendapatkan kemenangan maxwin saat bermain slot gacor malam ini.
    • 📺👉 LINK DAFTAR SLOT GACOR 📺👉 LINK DAFTAR SLOT GACOR 📺👉 LINK DAFTAR SLOT GACOR SITUS SLOT GACOR 88 MAXWIN X500 HARI INI TERBAIK DAN TERPERCAYA GAMPANG MENANG Dunia Game gacor terus bertambah besar seiring berjalannya waktu, dan sudah tentu dunia itu terus berkembang serta merta bersamaan dengan berkembangnya SLOT GACOR sebagai website number #1 yang pernah ada dan tidak pernah mengecewakan sekalipun. Dengan banyaknya member yang sudah mempercayakan untuk terus menghasilkan uang bersama dengan SLOT GACOR pastinya mereka sudah percaya untuk bermain Game online bersama dengan kami dengan banyaknya testimoni yang sudah membuktikan betapa seringnya member mendapatkan jackpot besar yang bisa mencapai ratusan juta rupiah. Best online Game website that give you more money everyday, itu lah slogan yang tepat untuk bermain bersama SLOT GACOR yang sudah pasti menang setiap harinya dan bisa menjadikan bandar ini sebagai patokan untuk mendapatkan penghasilan tambahan yang efisien dan juga sesuatu hal yang fix setiap hari nya. Kami juga mendapatkan julukan sebagai Number #1 website bocor yang berarti terus memberikan member uang asli dan jackpot setiap hari nya, tidak lupa bocor itu juga bisa diartikan dalam bentuk berbagi promosi untuk para official member yang terus setia bermain bersama dengan kami. Berbagai provider Game terus bertambah banyak setiap harinya dan terus melakukan support untuk membuat para official member terus bisa menang dan terus maxwin dalam bentuk apapun maka itu langsung untuk feel free to try yourself, play with SLOT GACOR now or never !  
    • 📺👉 LINK DAFTAR SLOT GACOR 📺👉 LINK DAFTAR SLOT GACOR 📺👉 LINK DAFTAR SLOT GACOR SITUS SLOT GACOR 88 MAXWIN X500 HARI INI TERBAIK DAN TERPERCAYA GAMPANG MENANG Dunia Game gacor terus bertambah besar seiring berjalannya waktu, dan sudah tentu dunia itu terus berkembang serta merta bersamaan dengan berkembangnya SLOT GACOR sebagai website number #1 yang pernah ada dan tidak pernah mengecewakan sekalipun. Dengan banyaknya member yang sudah mempercayakan untuk terus menghasilkan uang bersama dengan SLOT GACOR pastinya mereka sudah percaya untuk bermain Game online bersama dengan kami dengan banyaknya testimoni yang sudah membuktikan betapa seringnya member mendapatkan jackpot besar yang bisa mencapai ratusan juta rupiah. Best online Game website that give you more money everyday, itu lah slogan yang tepat untuk bermain bersama SLOT GACOR yang sudah pasti menang setiap harinya dan bisa menjadikan bandar ini sebagai patokan untuk mendapatkan penghasilan tambahan yang efisien dan juga sesuatu hal yang fix setiap hari nya. Kami juga mendapatkan julukan sebagai Number #1 website bocor yang berarti terus memberikan member uang asli dan jackpot setiap hari nya, tidak lupa bocor itu juga bisa diartikan dalam bentuk berbagi promosi untuk para official member yang terus setia bermain bersama dengan kami. Berbagai provider Game terus bertambah banyak setiap harinya dan terus melakukan support untuk membuat para official member terus bisa menang dan terus maxwin dalam bentuk apapun maka itu langsung untuk feel free to try yourself, play with SLOT GACOR now or never !
  • Topics

×
×
  • Create New...

Important Information

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