Jump to content

Mecblader

Members
  • Posts

    225
  • Joined

  • Last visited

Converted

  • Gender
    Male
  • Personal Text
    Reasonably knowledged about Minecraft, Modding,

Recent Profile Visitors

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

Mecblader's Achievements

Creeper Killer

Creeper Killer (4/8)

0

Reputation

  1. Are ItemStacks still limited to a max stack size of 64, or is it possible to have more than 64 now?
  2. OK, so I have overridden the whole RenderPlayer class, via reflection during the the post init period in my client proxy class, with my new class that extends RenderPlayer, but none of the methods seem to be called, did I do it wrong. My reflection code(keep in mind that I have not done reflection very often before, I know about it, but not much experience with it) My RenderPlayerClass(Don't really think you'll need it, but here is it anyway)
  3. I would do that, but my mod is meant to be a a standalone mod, except forge of course. My mod completely overhauls minecraft, meaning that is will not be and is not intended to be compatible with other mods and I wanted it be be a pickup and go kind of mod, meaning that I don't really want the user to have to download the api and then use it.
  4. Well basically I added a different fishing system into minecraft an I want to make the player bend over and render the item, being a fishing net, in the water.
  5. I want it to happen whenever a player right clicks an item in my mod.
  6. Then do you know of another way to create a player animation?
  7. I tried using that as an event a tried registering the event with both: MinecraftForge.EVENT_BUS.register(new CLASSGOESHERE); & FMLCommonHandler.instance().bus().register(new CLASSGOESHERE());, but the event is not being called. I have worked with other events before, but am I using this one wrong?
  8. I would also like to give you a tip, don't take this the wrong way, but maybe you should learn Java a bit more and have a good understanding of it before you start modding minecraft. The reason why i say this is that modding minecraft is actually a tricky thing, in my own opinion, despite my 4-5 years of experience programming in Java, not even including the experience I have from programming in other languages before learning Java. So i strongly suggest that you, and others who might not be great at programming in Java, or are trying to learn how to program in Java by modding minecraft, to learn and fully understand Java and this is not directed at you, but others that may not know, the people on this forum do not take the time out of their day to teach you how to program in Java, they generally only assist in helping to solve your problem and answer questions about modding minecraft.
  9. Hello, I was just wondering how complicated it would be to add new player model animations, or poses, whenever a certain event is triggered. If it is reasonable, in terms of effort, then how would i have to go about adding new player model animations?
  10. An alternative, which may make your mod incompatible with other mods that use these entities, would be to replace all vanilla entities, or at least the ones you want, with your own custom entities that are basically a modifies clone of the original entities in minecraft.
  11. The title basically explains it. I am using the method world.spawnParticle(ars...);, I know that one of the parameters are asking for the particle type and I used EnumParticleTypes.SPELL, and this spawn normal white potion particle effects, but I need colored particles, how could I achieve this?
  12. Hello, I am trying to make a piece of head wear in my mod. Two fairly straight forward questions, one I have my head piece made, but how do I render it with my textures, and two, how could I disable durability on my armor piece?
×
×
  • Create New...

Important Information

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