Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/23/19 in all areas

  1. Scroll to the bottom of the page, please WARNING: After switching you might notice some posts with white around their text... this is caused by users copypasting rich text into their posts.
    1 point
  2. Set through the code in the debugger. Try creating a new AxisAlignedBB
    1 point
  3. Why not make it extend BowItem anyways? You can just override the methods and give it your own behavior. Then everyone will know it is a bow. Of course there is. You can change the boundingBox field in the entities class.
    1 point
  4. return new ModelResourceLocation(stack.getItem().getRegistryName() + "_" + Math.min(stack.getCount(),3), "inventory");
    1 point
  5. You are launching a vanilla server. To launch a Forge server you have to launch the Forge jar.
    1 point
  6. Not really, no. If the block isn't fully opaque, the game assumes it is transparent, and begins rendering the sides of neighboring blocks.
    1 point
  7. It only culls them if it is told to and this is controlled by a series of factors. Stuff like if it is opaque. Generally things that aren't full cubes are not culled because of the simple way minecraft checks if culling should happen. Is there a block on this side. Cool don't render this side then.
    1 point
  8. Probably not the best option ya know. Taking a little peaksie into RangedBowAttackGoal it seems to wait for the bow to be ready to fire just like how the player does you can see this on line 129-130. So your option is to either extend RangedBowAttackGoal/Goal(parent class) and implement your own cooldown of sorts. OR create your own bow for the skeleton to use that has it's own cooldown set to a lower value. I like this option because it gives a drop for the SkeletonKing to drop.
    1 point
  9. This is not a proper resource location it should look like this. new ResourceLocation("modid", "textures/path/to/file.png");
    0 points
×
×
  • Create New...

Important Information

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