Jump to content

crzytlp

Members
  • Posts

    11
  • Joined

  • Last visited

Everything posted by crzytlp

  1. yeah i tried this solution and its worked but want to know why its like this first time. its should be right spot i think
  2. Hi guys. I'm new on modding and java but my question not for java. I'm learning modding Pahimar's videos... Here its my mod -- https://github.com/Taifuru/Tutorial/ And I'm learning tileentity's from this tutorial -- http://www.minecraftforge.net/wiki/Rendering_a_Techne_Model_as_a_Block And its my problem the not rendering the right spot
  3. Your mistake is in this line: LanguageRegistry.addName("talipBlock", "Talip Block"); Where you do "talipBlock" When in quotation marks ("..."), a type is called a String. What you are doing is naming a String. This is not what you should do, which is naming the Object (Block) that you are naming. In this your code should look something like this: LanguageRegistry.addName(talipBlock, "Talip Block"); In that code you are making a reference to the public static Block talipBlock; which is what you want to do. edit: This is something that is really recommended before you start modding. Thanks for your help. I have already started but i new.
  4. what does it mean my naming a String. How can ı fix it ?
  5. Im fixed it but i getting same crash again why ? moy code http://paste.minecraftforge.net/view/f0276025 and my crash screen http://paste.minecraftforge.net/view/024ac11d
  6. I have same error and ı m begginer for modding. my main code is here http://paste.minecraftforge.net/view/617882fd and this is crash report http://paste.minecraftforge.net/view/81eed469
×
×
  • Create New...

Important Information

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