Jump to content
  • Home
  • Files
  • Docs
Status Updates
  • All Content

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Trhod177

Trhod177

Members
 View Profile  See their activity
  • Content Count

    8
  • Joined

    October 19, 2018
  • Last visited

    February 20

Community Reputation

0 Neutral

About Trhod177

  • Rank
    Tree Puncher

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Trhod177

    Ticking entity crash 1.12.2 [solved]

    Trhod177 replied to Trhod177's topic in Modder Support

    I want to make it so the different tools give different drops and i saw other people saying to do it this way.
    • January 19, 2019
    • 5 replies
  2. Trhod177

    Ticking entity crash 1.12.2 [solved]

    Trhod177 replied to Trhod177's topic in Modder Support

    Woops i dont know why that happened but the link is corrected Link
    • January 19, 2019
    • 5 replies
  3. Trhod177 Trhod177 changed their profile photo January 19, 2019
  4. Trhod177

    Ticking entity crash 1.12.2 [solved]

    Trhod177 posted a topic in Modder Support

    I am trying to change what items are dropped by certain blocks when i tested it, it crashed with an error about a ticking entity. CrashLog My EventHandlerClass(link updated)if necessary
    • January 19, 2019
    • 5 replies
  5. Trhod177

    [1.12.2] How do i stop my block from dropping itself [Solved]

    Trhod177 replied to Trhod177's topic in Modder Support

    Thanks that fix it..
    • November 15, 2018
    • 3 replies
  6. Trhod177

    [1.12.2] How do i stop my block from dropping itself [Solved]

    Trhod177 posted a topic in Modder Support

    i have a block that a want to multiple items (which it does) but i cant figure out how to get it to stop dropping itself Code
    • November 15, 2018
    • 3 replies
  7. Trhod177

    [1.12.2] Help with modifying block drops

    Trhod177 replied to Trhod177's topic in Modder Support

    Ok then how do distinguish between sand and redsand
    • October 20, 2018
    • 6 replies
  8. Trhod177

    [1.12.2] Help with modifying block drops

    Trhod177 replied to Trhod177's topic in Modder Support

    what do you mean by
    • October 19, 2018
    • 6 replies
  9. Trhod177 started following [1.12.2] Help with modifying block drops October 19, 2018
  10. Trhod177

    [1.12.2] Help with modifying block drops

    Trhod177 posted a topic in Modder Support

    I've been trying to change the onHarvestBlock event to change what sand and red sand drops when you mine it, normal sand works fine but i cant get red sand to drop the proper item. Here is my code @Mod.EventBusSubscriber public class PocketSandEventHandler { @SubscribeEvent public void onHarvestBlock(BlockEvent.HarvestDropsEvent event) { final EntityPlayer PLAYER = event.getHarvester(); if(null == PLAYER || null == PLAYER.getHeldItemMainhand()) return; if(ConfigHandler.overridesanddrops == true) { if(event.getState().getBlock() == Blocks.SAND) { event.getDrops().add(new ItemStack(ItemInit.sandpile, 4)); event.getDrops().remove(0); } } if(ConfigHandler.overrideredsanddrops == true) { if(event.getState().getBlock() == Blocks.SAND.getStateFromMeta(1)) { event.getDrops().add(new ItemStack(ItemInit.redsandpile, 4)); event.getDrops().remove(1); } } } }
    • October 19, 2018
    • 6 replies
  • All Activity
  • Home
  • Trhod177
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community