Jump to content

Zcelo12

Members
  • Posts

    100
  • Joined

  • Last visited

Everything posted by Zcelo12

  1. Now, I use a custom bow and arrows, because I didn't know how to make them in Forge
  2. Yep. I don't know how to use them. I only have the AddRenderer in my mod_file.java, EntityPoisonArrow/RenderPoisonArrow and ItemPoisonArrow. But the bow don't use my entity.
  3. Ok. The problem is, that the bow not uses my entity. It still uses the standard arrow. My code looks the same like the code in this topic: http://minecraftforge.net/forum/index.php/topic,92.msg467.html#msg467 He has the same problem. I think i have to create a new Renderer or something, but how?
  4. What did you mean with notify an Update?
  5. Hello, I want to create poison arrows. The problem is that i don't know how to do that. I already found a tutorial, but this one is with Modloader and I'Ve to create a custom bow. Is there a tutorial how i can only create custom arrows with Forge?
  6. I tried that already. I also used the Bonemeal Tutorial in the forge wiki. When I use the Bonemeal, there still is the same texture.
  7. Hey, At the moment, I'm porting my mod from ModLoader to Forge. The only step i missed is porting the textures for crops. In ModLoader it looks like this: public int getBlockTextureFromSideAndMetadata(int i, int j) { if(j == 0) { return blockIndexInTexture; } if(j == 1) { return mod_Namehere.growNamehere1; } if(j == 2) { return mod_Namehere.growNamehere2; } if(j == 3) { return mod_Namehere.growNamehere3; } if(j == 4) { return mod_Namehere.growNamehere4; } if(j == 5) { return mod_Namehere.growNamehere5; } if(j == 6) { return mod_Namehere.growNamehere6; } if(j == 7) { return mod_Namehere.growNamehere7; } if(j == { return mod_Namehere.growNamehere8; } return j; } But how i have to do that in Forge?
  8. Hey guy's, I would like to send the player a message when he enter the game. I tried it with following methods: public void onConnect(NetworkManager network) { ModLoader.getMinecraftInstance().thePlayer.addChatMessage("Food & Plants V1.9 BETA by Vitalij Abt enabled"); } and... public void onLogin(NetworkManager network, Packet1Login login) { ModLoader.getMinecraftInstance().thePlayer.addChatMessage("Food & Plants V1.9 BETA by Vitalij Abt enabled"); } but i don't get a message when i enter the game.
  9. Thanks a lot. Ouh ok, i didn't know that before
  10. Hey guy's, I tried to install the recommend Forge Build number 152. I downloaded the source and put it in my MCP-Folder. It contains only the client source (bin/resources folder) . The minecraft.jar is modded with ModLoader only. When i start the installation i get errors. Here is my log: http://pastebin.com/hUC5vJ5t Can anyone help me? Best wishes, Zcelo12
×
×
  • Create New...

Important Information

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