Jump to content

ArcLie

Members
  • Posts

    26
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

ArcLie's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. sorry I am idiot ... badly I understand your messages . My English is terrible mal would like to improve. In any case, thank you for your help
  2. You forgot your mod ID in your registerBlockIcons method. but on this experiment 1 too doesn't work. And here is MODID respectively ( AZcode.MODID + .... And also it doesn't work [22:58:57] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [22:58:57] [Client thread/ERROR] [TEXTURE ERRORS]: DOMAIN valiant [22:58:57] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------------------------------- [22:58:57] [Client thread/ERROR] [TEXTURE ERRORS]: domain valiant is missing 3 textures [22:58:57] [Client thread/ERROR] [TEXTURE ERRORS]: domain valiant is missing a resource manager - it is probably a side-effect of automatic texture processing [22:58:57] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [22:58:57] [Client thread/ERROR] [TEXTURE ERRORS]: The missing resources for domain valiant are: [22:58:57] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/B004.png [22:58:57] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/B001.png [22:58:57] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/B002.png [22:58:57] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [22:58:57] [Client thread/ERROR] [TEXTURE ERRORS]: No other errors exist for domain valiant [22:58:57] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [22:58:57] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
  3. Hi, I would need advise on calling texture block Meta ( 1 m id 0-15 sub ID (metadata ) ) I have examined several options but all ended in failure , you would advise me where you make mistakes ? According to various playthroughs on the net I have images stored at the correct ingredients but even so, they simply fail to call There are 2 experiments experiment 1 Block.class package Valiant.BuildBalik; import java.util.List; import java.util.Random; import Valiant.projectCode.AZcode; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.client.renderer.texture.IIconRegister; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.init.Blocks; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.IIcon; import cpw.mods.fml.common.registry.GameRegistry; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; public class HDBlock1 extends Block { @SideOnly(Side.CLIENT) private IIcon[] icon; public static final String[] SubName = new String[] { "B001", "B002", "B003", "B004", "B005", "B006", "B007", "B008", "B009", "B010", "B011", "B012", "B013", "B014", "B015", "B016", }; protected HDBlock1(String unlocalizedName, Material material) { super(material); this.setBlockName(unlocalizedName); this.setCreativeTab(AZ.HDBlocks); this.setHardness(2.0F); this.setResistance(6.0F); this.setStepSound(soundTypeGravel); } @Override public IIcon getIcon(int side, int meta) { if (meta >= icon.length) meta = 0; return icon[meta]; } @Override @SideOnly(Side.CLIENT) public void registerBlockIcons(IIconRegister reg) { icon = new IIcon[subName.length]; for (int i = 0; i < icon.length; i++) { //icon[ i ] = reg.registerIcon(AZcode.MODID + ":" + SubName[i]); icon[1] = reg.registerIcon("Valiant:B001"); icon[2] = reg.registerIcon(AZcode.MODID+":B002"); icon[3] = reg.registerIcon("Valiant:" + SubName[3]); } } @SideOnly(Side.CLIENT) //parne public void getSubBlocks(Item item, CreativeTabs CT, List list) { for(int i = 0; i < 16; i++) { list.add(new ItemStack(item, 1, i)); }} public int damageDropped(int metaID) { return metaID; } public int quantityDropped(Random r) { return 1; } } MainClass GameRegistry.registerBlock(HDBlock1 = new HDBlock1("metablock", Material.cloth), IHDBlock1.class, "metablock"); Nameblock package Valiant.BuildBalik; import net.minecraft.block.Block; import net.minecraft.item.ItemBlock; import net.minecraft.item.ItemBlockWithMetadata; import net.minecraft.item.ItemStack; public class IHDBlock1 extends ItemBlockWithMetadata { public IHDBlock1(Block block) { super(block, block); setHasSubtypes(true); } @Override public String getUnlocalizedName(ItemStack stack) { return this.getUnlocalizedName() + "_" + stack.getItemDamage(); } } Experiment 2 Main GM.registerBlock(HDBlock3 = new HDBlock3(), IHDBlock3.class,"CB3_3"); Name package Valiant.BuildBalik; import net.minecraft.block.Block; import net.minecraft.item.ItemBlock; import net.minecraft.item.ItemStack; public class IHDBlock3 extends ItemBlock{ public IHDBlock3(Block block) { super(block); setHasSubtypes(true); } @Override public String getUnlocalizedName(ItemStack itemStack) { String name; switch(itemStack.getItemDamage()) { case 0: name = "B033"; break; case 1: name = "B034"; break; case 2: name = "B035"; break; case 3: name = "B036"; break; case 4: name = "B037"; break; case 5: name = "B038"; break; case 6: name = "B039"; break; case 7: name = "B040"; break; case 8: name = "B041"; break; case 9: name = "B042"; break; case 10: name = "B043"; break; case 11: name = "B044"; break; case 12: name = "B045"; break; case 13: name = "B046"; break; case 14: name = "B047"; break; case 15: name = "B048"; break; default: name = "ERROR"; } return getUnlocalizedName() + "." + name; } public int getMetadata(int meta) { return meta; } } Blockclass package Valiant.BuildBalik; import java.util.List; import java.util.Random; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.client.renderer.texture.IIconRegister; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.IIcon; import cpw.mods.fml.common.registry.GameRegistry; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; public class HDBlock3 extends Block { @SideOnly(Side.CLIENT) protected IIcon[] IcoHDBlock; @SideOnly(Side.CLIENT) protected IIcon getSideIcon(int ID) { return this.IcoHDBlock[iD % this.IcoHDBlock.length]; } public static final String[] IcoReg = new String[]// plank ->|<- planks { "B033", "B034", "B035", "B036", "B037", "B038", "B039", "B040", "B041", "B042", "B043", "B044", "B045", "B046", "B047", "B048" }; public HDBlock3() { super(Material.rock); this.setCreativeTab(AZ.HDBlocks); this.setBlockName("Block"); // GameRegistry.registerBlock(this, IBValPlank.class, "X"); this.setResistance(50.0F); this.setHardness(1.0f); } @SideOnly(Side.CLIENT) public void registerBlockIcons(IIconRegister IicoReg) { this.IcoHDBlock = new IIcon[icoReg.length]; for (int i = 0; i < this.IcoHDBlock.length; ++i) { this.IcoHDBlock[i] = IicoReg.registerIcon(IcoReg[i]); } } @SideOnly(Side.CLIENT) public IIcon getIcon(int ID, int meta) { return this.getSideIcon(meta); } @SideOnly(Side.CLIENT) //parne public void getSubBlocks(Item item, CreativeTabs CT, List list) { for(int i = 0; i < 16; i++) { list.add(new ItemStack(item, 1, i)); }} public int damageDropped(int metaID) { return metaID; } public int quantityDropped(Random r) { return 1; } } THIS IS ERROR REPORT Can you help me with this problem please?
  4. Well , when I used to ForgeGrandle setup launcher so it suited me Pixel error . When I set et.minecraft.launchwrapper.Launch Then I blew error on launchwrapper , even when a normally don could connect and forge setting MCP + function normally . It can be that somehow circumvent make the setting for MCP + forge worked well for setting forgeGrandle ?
  5. Well but after version 1.6.4 it worked just fine. So what 's changed ? and how could it could be repaired?
  6. My settings worked perfectly fine .. as you say. MCP + forge launched launcher in Eclipse without problems. The problem arose when I wanted to export code from Eclipse. Your advice only run independently ForgeGrandle not work because it blew the mistake PixelFormat That means you need to find out how to resolve errors that arise in recompilovani mode in MCP. Well ... The very first message in this topic. You know me, then you or someone else please advise? I would like this matter has finally settle
  7. no... in my settings continue: - download MCP, decompilation in folder, IF decompilation is end, than I open .gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1614-1.7.10\ forgeSrc-1.7.10-10.13.4.1614-1.7.10-sources.jar open in winrar - than copy file in forgeSrc-1.7.10-10.13.4.1614-1.7.10-sources.jar and paste in file MCP\src\minecraft and if need replace file in this folder - than open eclipse and show projekt CLIENT SERVER, than I setting Launcher (THIS TOPIC http://www.minecraftforge.net/forum/index.php?topic=14048.0 -> Advanced Initial Setup) I use launcher : net.minecraft.launchwrapper.Launch Argument : --version 1.6 --tweakClass cpw.mods.fml.common.launcher.FMLTweaker --accessToken FML --userProperties {} VM Argument : -Dfml.ignoreInvalidMinecraftCertificates=true Than I copi libraries from .grandle to folder .MCP\jars\libraries and Call libraries file in eclipe. And THAN, I RUN LAUNCHER IN ECLIPSE ABSOLUTELY NORMAL. You can feel free to summarize and test mod
  8. but in this configuration (MCP+Forge) launcher normal work. in version 1.5.2, 1.6.4 I must use this. configuration. And I would have stayed. and moreover , in this configuration my launcher is operating normally. the only thing i need to start it it to me without recompilovalo tych errov . such as this shall I do in order not to show me where the scala the error . I'm in this direction as you noticed we have no choice . ForgeGrandle does not work, because I not run the launcher. But when the implant exported by Forgesource of ForgeGrandle to MCP , so I do not normally run the launcher and we can work trouble-free . The only problem I'm doing recompilation . So if you know any way to extract the mod of this process, I would like to be divorced , because the normal export while working, but when you run mode, it suits me error code given . Apparently it fails to connect , or really do not know . It is still possible to mount this code directly into MC but I really do not want to experiment . Can you think of that is as you fix it? Sorry for bug - Txt is translate in google from Swk
  9. Ok... is possible than my notebook is old, but back on MCP + FORGE. on this page reply me then is possible edit link file from library. (http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/modification-development/2613667-mcp-9-04-problem-with-scala-recompile-error) because Would it help if I shorten the address of the file ?, because I Call all file from .grandle file, and this links is long. I do not want to deal with them will waste if it does not work, or it would be useless.
  10. I don't know. I download Forge src from web http://files.minecraftforge.net/maven/net/minecraftforge/forge/index_1.7.10.html And then proceeded (this is for MCP + FORGE extract from gradlew) www.minecraftforge.net/forum/index.php?topic=14048.0 and this is for Forge extract from gradlew (WITHOUT MCP) http://www.minecraftforum.net/forums/mapping-and-modding/mapping-and-modding-tutorials/1571599-1-7-x-modding-with-forge-1-jdk-eclipse-forge-and
  11. Yes, I trying I read the LWJGL Version: 2.9.1 has problems with Win 10 When I implement Forge to MCP, and run launcher in eclipse, launcher work absolutly normal. But here, doesn't work, just because lwjgl-2.9.1.jar - [Client thread/ERROR]: Couldn't set pixel format. But how is possible, than in MCP+Forge work and in Forge without MCP not
  12. greit but how is posible than in MCP (with forge) launcher work?!
  13. --------------- Display Devices --------------- Card name: Mobile Intel(R) 4 Series Express Chipset Family Manufacturer: Intel Corporation Chip type: Mobile Intel(R) 4 Series Express Chipset Family DAC type: Internal Device Type: Full Device Device Key: Enum\PCI\VEN_8086&DEV_2A42&SUBSYS_18621043&REV_09 Display Memory: 1582 MB Dedicated Memory: 64 MB Shared Memory: 1518 MB Current Mode: 1366 x 768 (32 bit) (60Hz) Monitor Name: Generic PnP Monitor Monitor Model: unknown Monitor Id: AUO20EC Native Mode: 1366 x 768(p) (60.006Hz) Output Type: Internal Driver Name: igdumdx32.dll,igd10umd32.dll Driver File Version: 8.15.0010.2413 (English) Driver Version: 8.15.10.2413 DDI Version: 10 Feature Levels: 10.0,9.1 Driver Model: WDDM 1.1 Graphics Preemption: DMA Compute Preemption: DMA Miracast: Not Supported by Graphics driver Hybrid Graphics GPU: Not Applicable Power P-states: Not Applicable Driver Attributes: Final Retail Driver Date/Size: 3.6.2011 0:00:00, 571904 bytes WHQL Logo'd: Yes WHQL Date Stamp: Device Identifier: {D7B78E66-6902-11CF-9E7A-6838A9C2C535} Vendor ID: 0x8086 Device ID: 0x2A42 SubSys ID: 0x18621043 Revision ID: 0x0009 Driver Strong Name: oem21.inf:5f63e5348ad1f097:iCNT0:8.15.10.2413:pci\ven_8086&dev_2a42 Rank Of Driver: 00E62001 Video Accel: ModeMPEG2_A ModeMPEG2_C ModeWMV9_B ModeWMV9_C ModeVC1_B ModeVC1_C DXVA2 Modes: DXVA2_ModeMPEG2_VLD DXVA2_ModeMPEG2_IDCT DXVA2_ModeMPEG2_MOCOMP DXVA2_ModeWMV9_MoComp DXVA2_ModeWMV9_IDCT DXVA2_ModeVC1_MoComp DXVA2_ModeVC1_IDCT Deinterlace Caps: {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend D3D9 Overlay: Supported DXVA-HD: Supported DDraw Status: Enabled D3D Status: Enabled AGP Status: Enabled MPO Caps: Not Supported MPO Stretch: Not Supported MPO Media Hints: Not Supported MPO Formats: Not Supported
  14. I have made it and without effect another idea ?
×
×
  • Create New...

Important Information

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