Jump to content

Recommended Posts

Posted

Hey, as far as I can tell the block has been declared, registered in game and set up to work as a block. But it does not appear by any means it doesn't show up in the creative tabs and the crafting won't work. So here is all the code relating to the tile entity. Also I know it's possible to scale the Block with GL11 but don't know the physical how to. thanks in advance

 

Main:

  Reveal hidden contents

 

Block:

  Reveal hidden contents

 

Model:

  Reveal hidden contents

 

Tile Entity:

  Reveal hidden contents

 

Renderer:

  Reveal hidden contents

 

Client Proxy:

  Reveal hidden contents

 

Common Proxy:

  Reveal hidden contents

 

Posted

Umm... there's no @Mod() annotation. You skipped step 1 of coding a Minecraft mod.

 

@Mod(modid = "MyMod", name = "My Mod", version = "1.0.0")

public class MyMod {

  // Code

}

if (user.hasKnowledgeOfJava) {

    if (user.question.hasCode) {

        return interpetHelpfulResponse(user.getQuestion());

    } else {

        return "Could you post your code please?";

    }

} else {

    return "Learn some freaking Java!";

}

Posted

sigh there are days when I wonder what my head does, thanks for that mate. Ok I also figured scaling, Now I assume that the hit box size is defined with the render, so how do I alter the hit box size and how do I get the block to face a direction dependant on the player I can get it to place in a universal angle but i want that if the player faces north the block should face south etc

Posted

Override onBlockPlacedBy(World, int, int, int, EntityLivingBase, ItemStack) from the Block class, and edit it.

the parameters are world, x, y, z, placing_Entity, placed_ItemStack,

and you would only need the yaw of the Entity for those purpose.

I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP)

II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.

Posted

Whe you say that you assume the "hit box size is defined with the render", the black lines around the block? That is done in the RenderGlobal class: Line 1756.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

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.