Jump to content

Recommended Posts

Posted

How would one go about stopping the spawn of a vanilla block, say, the Pumpkin and replacing it with a modded block? On world generation, that is, not on growing.

Developing the Spiral Power Mod .

こんにちは!お元気ですか?

Posted

Hi,

You could subscribe to DecorateBiomeEvent.Decorate and check event.getType() to PUMPKIN.

It triggers before all pumpkins in the chunk. So you cancel it with setResult, then you do whatever you want.

Posted
  On 1/7/2017 at 1:34 PM, Rohzek said:

So, I can block the spawn with:

setResult(Result.DENY);

 

That actually didn't seem to block them from spawning, for some reason.

 

Could you show the code where you catch the event ?

Posted

Mind that will only work for things like pumpkins. If you wanted to replace--say--cobblestone in villages, you'd have a much harder time.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted
  On 1/7/2017 at 2:36 PM, Koward said:

Could you show the code where you catch the event ?

@Mod.EventBusSubscriber
public class DecorateBiomeEventSP 
{
@SubscribeEvent
public static void onDecorateBiome(DecorateBiomeEvent.Decorate event)
{
	World world = event.getWorld();
	BlockPos pos = event.getPos();
	EventType type = event.getType();

	if(type == EventType.PUMPKIN)
	{
		event.setResult(Result.DENY);
		world.setBlockState(pos, SPBlocks.PUMPKIN_SP.getDefaultState());
	}
}
}

  Quote

Mind that will only work for things like pumpkins. If you wanted to replace--say--cobblestone in villages, you'd have a much harder time.

 

I'm only replacing the melons and pumpkins. The melons use the same texture so I just changed the drop you get with the harvest drops event to my custom one, but my custom pumpkin removes the face (and will make you carve one on, to get the vanilla pumpkin... unless I can make a custom block work to spawn the snow golem) so I'm trying to replace them.

Developing the Spiral Power Mod .

こんにちは!お元気ですか?

Posted

You know what? It needed to be registered on the terrain event bus, not the event bus. Now, it's working but my attempt at placing my own block in it's place crashes.

World world = event.getWorld();
BlockPos pos = event.getPos();
EventType type = event.getType();

if(type == EventType.PUMPKIN)
{
event.setResult(Result.DENY);
if(!world.isRemote)
{
	LogHelper.debug("I blocked a pumpkin spawn");
	world.setBlockState(pos, SPBlocks.PUMPKIN_SP.getDefaultState());
}
}

 

EDIT:

 

Because the pos it always spits out, is at y level 0. I'm quite confused here.

Developing the Spiral Power Mod .

こんにちは!お元気ですか?

Posted

As I said the event is triggered once before all pumpkins are generated in chunk. Not for each pumpkin.

You have to mimic the way pumpkins are generated.

In vanilla (note : build 1.10.2 2185, check if it's the same for you, it's in BiomeDecorator.java), that is :

        if (random.nextInt(32) == 0)
        {
            int i5 = random.nextInt(16) + 8;
            int k9 = random.nextInt(16) + 8;
            int j13 = worldIn.getHeight(this.chunkPos.add(i5, 0, k9)).getY() * 2;

            if (j13 > 0)
            {
                int k16 = random.nextInt(j13);
                (new WorldGenPumpkin()).generate(worldIn, random, this.chunkPos.add(i5, k16, k9));
            }
        }

(Use the random of the Decorate event, else you'll break seeds).

 

I found this by looking with my IDE where the Decorate event was called, and I saw the one where the type PUMPKIN is checked.

If you paste this code in your event, vanilla pumpkins will generate. Now if you want something different, you have to create a new WorldGenPumpkin. Just extend it and override the methods you need (probably at least generate() as it's called there).

 

The pos that's given by the event are coordinates of the chunk (or at least the chunk cross-shaped intersection, but that's the idea). So it's basically a position on a 2D map seen from above, and a y value would be meaningless. That's why y = 0. Anyway you do not need it for pumpkins.

If you wanted to edit trees that would have been trickier because some data used to calculate them are not passed to the event, but for pumpkins everything seems okay.

Posted

Okay, yeah thanks.

 

I made my own WorldGenPumpkin to spawn my mod block, and dropped it in with that, and it worked.

(You sort of need it for the pumpkins. The event pos replaces this.chunkpos in that generation command)

 

 

Developing the Spiral Power Mod .

こんにちは!お元気ですか?

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

    • Just shows this if this is what you mean:  Data  assets/minecraft/models/item/bamboo_mosaic_slab.json  Data  assets/minecraft/models/item/turtle_helmet_quartz_trim.json  Processor failed, invalid outputs:    /home/aron/.minecraft/libraries/net/minecraft/client/1.20.1-20230612.114412/client-1.20.1-20230612.114412- slim.jar      Expected: de86b035d2da0f78940796bb95c39a932ed84834      Actual:   aea60124ca903ecbb2e825805e318f9d89ac867c    /home/aron/.minecraft/libraries/net/minecraft/client/1.20.1-20230612.114412/client-1.20.1-20230612.114412- extra.jar      Expected: 8c5a95cbce940cfdb304376ae9fea47968d02587      Actual:   76e87dbc119daed8dc1861c17160e0c4b6f34d2e There was an error during installation Also I gave the .jar file full permissions too.
    • I checked the hash like you said and it came back as OK each time, also may I ask what you mean by debug mode during installation?  
    • My name is Clara Bennett, and I almost let cryptocurrency destroy me.  Two years ago, after selling my green e-commerce startup, I plunged headfirst into the crypto world. yield farming , I was all in. I believed I wasn’t just investing; I was participating in the next great technological revolution. Within months, my portfolio skyrocketed to $200,000. I even started sketching ideas for a blockchain-based microloan platform to empower small entrepreneurs around the world. Crypto felt like pure freedom and limitless potential. I thought I was untouchable. I thought wrong. It happened through a single email. It looked like a standard security update from my wallet provider polished, routine, and harmless. I interacted with it briefly, thinking it was legitimate. Hours later, I checked my account and realized my entire wallet had been drained. Every token, every coin, gone. I sat there in disbelief, replaying the moment over and over. I had built my career on being cautious with technology, yet somehow, I had still been compromised. The blockchain’s promise of "irreversible transactions" now felt like a cruel joke  .Devastated and desperate, I scoured forums for solutions. Most people told me there was no hope once crypto is gone, it’s gone. Still, I refused to give up. That’s when I stumbled across FUNDS RETRIEVER ENGINEER . I decided to reach out. From the beginning, they were empathetic, and honest about the challenges. They explained their process step-by-step, focusing on tracing transactions, tracking down phishing operators, and leveraging advanced blockchain analytics. It wasn't an overnight fix. It took weeks of meticulous investigation, technical recovery work, and legal coordination .But in the end, their persistence paid off. FUNDS RETRIEVER ENGINEER  was able to trace the stolen funds across multiple wallets and exchanges. Through a combination of technical expertise and strategic action, they managed to recover the full amount I had lost. Today, my crypto portfolio is intact once again. More importantly, I’ve regained my confidence though I am now much wiser and far more cautious. I learned the hard way that while crypto offers incredible opportunities, it also demands extreme vigilance. Thanks to FUNDS RETRIEVER ENGINEER , I recovered my lost funds and  also reclaimed my future in the digital economy. For help  W H A T S A P P:  +1  8  0 2 9 5 2 3 4 7 0 E   m  a I L       F U N D S R  E T R  I E V E R  [@]  E  N  G  I  N  E  E  R.  C  O  M
    • 1. Did you try to remove your system cache or something? 2. Also check jar hash before installing (if it's ok): sha1sum jar_name.jar > jar_name.jar.sha1 sha1sum -c jar_name.jar.sha1 Do this a few times with some interval. This can find out if your hash can be different somehow (garbage files inside).  Also try using sha224sum / sha256sum / sha384sum / sha512sum / shasum. And do you have any debug mode during installation?   UPDATED: and it can be just fixing by chmod'ing jar file. Check its -lZ 
  • Topics

×
×
  • Create New...

Important Information

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