DoctorBooooom Posted February 13, 2014 Posted February 13, 2014 In minecraft 1.6 i have this code: http://pastebin.com/XbsgnjfW How i can realise it on minecraft 1.7? I found method onBlockDestroyedByPlayer, but there no player param. And second question: i wrote all text messages in code... how i must move them in lang file? Quote
ShetiPhian Posted February 13, 2014 Posted February 13, 2014 removeBlockByPlayer is now removedByPlayer You need to create a language file (make sure its UTF-8 encoded) assets/<modID>/lang/<langID>.lang Example File: en_US.lang tile.unlocalized_block_name.name=Localized Block Name item.unlocalized_item_name.name=Localized Item Name msg.message_name.txt=Displayed Message To use names on blocks and items: Block.setBlockName("unlocalized_block_name"); Item.setUnlocalizedName("unlocalized_item_name"); To send to player: entityPlayer.addChatMessage(new ChatComponentTranslation("msg.message_name.txt")); Quote
Recommended Posts
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.