Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Tim_

Members
  • Joined

  • Last visited

Everything posted by Tim_

  1. Hi is there a way to get the block the player is looking at if i only have the player?
  2. how do i use the ForgeEventFactory ?
  3. @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
  4. Hi is there a way to fire an event if another event happens?
  5. can u pls explain a bit how a tickevent works?
  6. So i want to check if a player is still looking at a specific block. Can i do it like an event so the event fires if the player stops looking at a specific block and if so how i haven't found an event that does this.
  7. Tim_ replied to Tim_'s topic in Modder Support
    Okay i think i understand a bit more now and will try it in a few days when I have time thx very much for ur help
  8. Tim_ replied to Tim_'s topic in Modder Support
    I just wanted to explain it better and i dont want to do a custom loot drop cause the block has to stay there
  9. Hello i want to give a player an item(reward) after the player was right-clicking a block(targetBlock) with an item(useItem) for an amount of time(t) how do i do that? I tried with a player interaction event but it fires every few ticks and doesn't stop when the player stops interacting so that doesn't work. Does anyone have an idea or a solution? If so i would be happy if u can show me. Thx
  10. Tim_ replied to Tim_'s topic in Modder Support
    i can also do left click
  11. Tim_ replied to Tim_'s topic in Modder Support
    and how am i doing it with breaking?
  12. Tim_ replied to Tim_'s topic in Modder Support
    and how am i doing it with breaking?
  13. so i want to check if a player right clicks a block for a specific tickduration and then want to give an output is that possible? and if so how?
  14. Thank you the documentation helped me a lot!!!
  15. I made a chisel item and an ore item and everytime i use the chisel on the block i want to play an animation in firstperson and then get an item how is that possible? Im on 1.18.2

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.