Jump to content

Recommended Posts

Posted
18 hours ago, Tim_ said:

Hi is there a way to fire an event if another event happens?

What are you trying to achieve? Firing an event at the wrong time sounds like a bad idea.

Posted
@SubscribeEvent
    public static void ChiselMine(TickEvent.PlayerTickEvent mine) {
        Player player = mine.player;
        Item itemInHand = player.getMainHandItem().getItem();
        Level pLevel = player.level;
        BlockState eyeBlockstate = pLevel.getBlockState(player.eyeBlockPosition());
        Block eyeBlock = eyeBlockstate.getBlock();
        BlockPos eyeBlockPos = player.eyeBlockPosition();
        if (itemInHand.equals(ModItems.CHISEL.get())) {
            if (Minecraft.getInstance().options.keyUse.isDown()) {
                System.out.println("Use is down! Time is: " + pLevel.getGameTime());
                if (player.distanceToSqr(eyeBlockPos.getX(), eyeBlockPos.getY(), eyeBlockPos.getZ()) <= 5) {
                    System.out.println("BlockPos comparing succeeded! Time is: " + pLevel.getGameTime());
                    if (checkForBlock(eyeBlock)) {
                        System.out.println("Block comparing succeeded! Time is: " + pLevel.getGameTime());
                    }
                }
            }
        }
    }
    public static boolean checkForBlock(Block clickedBlock) {
        System.out.println("Block comparing!");
        if (clickedBlock == ModBlocks.IRON_ORE_SMALL.get()){
            dropItem = ModItems.IRON_CHUNK.get(); return true;
        }else if (clickedBlock == ModBlocks.LEAD_ORE_SMALL.get()){
            dropItem = ModItems.LEAD_CHUNK.get(); return true;
        }else {
            return false;
        }
    }

thats my code i know now that eyeblockpos isnt the block the player is looking at just ignore that but u might understand what im trying to achieve it would be way easier if i could fire a playerUseOnBlock event instead in the tickevent

Posted
3 minutes ago, MistaOmega said:

Regardless I guess, if you want to fire an event. forge has a ForgeEventFactory class you can create events from.

how do i use the ForgeEventFactory ?

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



×
×
  • Create New...

Important Information

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