Jump to content

perromercenary00

Members
  • Posts

    849
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by perromercenary00

  1. Good days. in the tlor mod and minecraftcamealive the npc speak to player trougth the chat window, how do they do that? im positively sure is it not System.out.println();
  2. goods days now a been working whit tutorial for the metablocks following this http://www.orangetutorial.com/metadata-blocks/#sthash.5mplJKtA.dpbs, well i wanna do something that is not in this tutorial, i wan metablockes whit the same texture but different boundaries soo long I'm been trying this from google public void setBlockBoundsForItemRender(int metadata){ System.out.println("############### Blockes Bounds"); switch (metadata) { case 0: setBlockBounds(0, 0.7F, 0, 1, 1, 1); break; case 1: setBlockBounds(0, 0, 0, 1.0F, 0.3F, 1.0F); break; case 2: setBlockBounds(0.25F, 0, 0.25F, 0.75F, 0.4375F, 0.75F); break; } } an is not working forge is event entering in the method soo there in not mesage "############### Blockes Bounds" but eclipse don't tag this like an error, it run but all the blocks are at full 1m^3 what i wanna du is for example create meta blocks 00 01 02 blocks00 = slab blocks01 = wall blocks02 = vertical slab the question is. Is Right to use the method setBlockBoundsForItemRender() whit metablockes, or i just have it bad declared.
  3. Solve the part of the method to return the block cordenadas on click public ItemStack onItemRightClick(ItemStack p_77659_1_, World p_77659_2_, EntityPlayer p_77659_3_){ //########################################### System.out.println("###########################################"); MovingObjectPosition mop = Minecraft.getMinecraft().renderViewEntity.rayTrace(20, 1.0F); if(mop != null) { int blockHitSide = mop.sideHit; Block blockLookingAt = p_77659_2_.getBlock(mop.blockX, mop.blockY, mop.blockZ) ; float fx=mop.blockX; float fy=mop.blockY; float fz=mop.blockZ; System.out.println("fx="+fx+" fy="+fy+" fz="+fz); } } but still need the list.
  4. Good days bad english advertishment. im in neeed of another method, this time a have an item called "itemMercenario00" i whish this method on rigth click on a block whit this item in hand return the coordenadas x y z of the block, like entitiplayer.getOnfocusBlockCordenadas(entity , x, y, z); example, i have a custom stick on mi hand, hit a block whit the stick , it return position(x, y, z); of the block hit. in the other hand i been played minecraft just like a year and half, and beging whi this of the mods this sunday, soo im very newbii whith this is there somewhere a list of everymethod avaliable in 1.7.10 something sorted like the java documentation but filled whit the notch teachings ??
  5. its something. iwass figthing whit miself and then i find the answer the answer is converthe block to string System.out.println("onNeighborBlockChange"); int x=84, y=80, z=269; if (world.getBlock(x, y, z) == Blocks.water ){ System.out.println("es agua lo que hay en el blocke"); }else{ System.out.println("no se que sera este blocke"); } String sb= world.getBlock(x, y, z).toString(); System.out.println("String sb= "+sb); ]: [mercenary00.mercenarymod.blocks.mercenaryBlock:onNeighborBlockChange:52]: onNeighborBlockChange [12:55:58] [server thread/INFO] [sTDOUT]: [mercenary00.mercenarymod.blocks.mercenaryBlock:onNeighborBlockChange:59]: es agua lo que hay en el blocke [12:55:58] [server thread/INFO] [sTDOUT]: [mercenary00.mercenarymod.blocks.mercenaryBlock:onNeighborBlockChange:64]: String SB= net.minecraft.block.BlockStaticLiquid@6e4a6525 [12:56:35] [server thread/INFO] [sTDOUT]: [mercenary00.mercenarymod.blocks.mercenaryBlock:onNeighborBlockChange:52]: onNeighborBlockChange [12:56:35] [server thread/INFO] [sTDOUT]: [mercenary00.mercenarymod.blocks.mercenaryBlock:onNeighborBlockChange:61]: no se que sera este blocke [12:56:35] [server thread/INFO] [sTDOUT]: [mercenary00.mercenarymod.blocks.mercenaryBlock:onNeighborBlockChange:64]: String SB= mercenary00.mercenarymod.blocks.mercenaryBlock@161020ce [12:56:59] [server thread/INFO] [sTDOUT]: [mercenary00.mercenarymod.blocks.mercenaryBlock:onNeighborBlockChange:52]: onNeighborBlockChange [12:56:59] [server thread/INFO] [sTDOUT]: [mercenary00.mercenarymod.blocks.mercenaryBlock:onNeighborBlockChange:61]: no se que sera este blocke [12:56:59] [server thread/INFO] [sTDOUT]: [mercenary00.mercenarymod.blocks.mercenaryBlock:onNeighborBlockChange:64]: String SB= net.minecraft.block.BlockStainedGlass@26ddc9d4 [12:56:59] [server thread/INFO] [sTDOUT]: [mercenary00.mercenarymod.blocks.mercenaryBlock:onNeighborBlockChange:52]: onNeighborBlockChange i have a question more about of method but thats another treath very gratefull
  6. Goods days bad english advertisment im doing a mod and ineed to know what block is in certain point in the space (x,y,z) soo example i need to know if the block a just put is two spaces over a block of wood, google tell mi about this method world.getBlockId() but i dont find it in eclipse 1.7.10. soo this method is wrong, has a change name is ths version o r was replaced by something else there is a pice of mi code ################################################### public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer p_149727_5_, int p_149727_6_, float p_149727_7_, float p_149727_8_, float p_149727_9_){ System.out.println("se ejecuto onBlockActivated"); int x1=x; int y1=y-2; int z1=z; int blockID = world.getBlockId(x1,y1,z1); //.getBlockId(x, y, z); /* //piece of the code from google if(blockID != 0) //air has no block representation { Block.blocksList[blockID].translateBlockName(); }//84 80 269 */ return true; } is this deprecated or is just malformed ??
  7. no idont getit yet mein preinit ############################################### @Mod.EventHandler public void preInit(FMLPreInitializationEvent event) { blocKe00 = new blocKe00(); blocKe01 = new blocKe01(); blocKe02 = new blocKe02(); blocKe03 = new blocKe03(); blocKe04 = new blocKe04(); } ############################################### //blocKe01.jar package mercenary00.mercenarymod.blocks; import java.util.Random; import cpw.mods.fml.common.registry.GameRegistry; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.init.Blocks; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.world.World; import mercenary00.mercenarymod.Mercenary; public class blocKe01 extends Block { private String name = "blocke01"; //notese the lowercase "k" public blocKe01(){ super(Material.iron); this.setCreativeTab(CreativeTabs.tabBlock); this.setBlockName(Mercenary.MODID + "_" + name); setBlockTextureName(Mercenary.MODID + ":" + name); GameRegistry.registerBlock(this, name); } public boolean onBlockActivated(World world, int x2, int y2, int z2, EntityPlayer p_149727_5_, int p_149727_6_, float p_149727_7_, float p_149727_8_, float p_149727_9_){ System.out.println("se ejecuto onBlockActivated"); //################################################################ int x3=x2+1; world.setBlock(x3, y2, z2, blocKe00 ); //here is the thing i want to create a new block 00 next to the 01 everitime i rigth click it return true; } } alll this blocks are the same exept name and textures the plan is that one block create the next on rigth click and soo on, making this esperimentss whit vanilla blocks work. but i want my blocks world.setBlock(x3, y2, z2, blocKe00 ) //crash the game
  8. good days bad English advertishment! i have some trouble using the command cos i don't know how forge is internally naming mi blocks the troubleson command is world.setBlock(x4, y2, z4, Blocks.iron_block); if a use this this way if creates and iron block wherever i tell him to do so , now i want to create in the world one of mi custom blocks and don't have the minus idea of how Blocks.iron_block = vanilla iron block mi mod has the name MODID = "modmercenario"; and my blocks are in the route /home/tenchi/Modding/forge-1.7.10-1230-src/src/main/java/mercenary00/mercenarymod/blocks the block iwanna use has the names in the lang file tile.modmercenario_blocke00.name=blocke00 the block loads has histexture working the name is also well in the materials tab soo long i been tried world.setBlock(x2, y2, z2, Blocks.blocke00); // Creates iron Block but in Blocks are none of mi blocks world.setBlock(x2, y2, z2, modmercenario.blocke00); //game crash world.setBlock(x2, y2, z2, modmercenario:blocke00); //game crash world.setBlock(x2, y2, z2, modmercenario_blocke00); //game crash world.setBlock(x2, y2, z2, tile.modmercenario_blocke00.name); //game crash sooo ?? how is forge naming my blocke00 ¿¿ ################################## THi answer is world.setBlock(x2, y2, z2, modBlocks.blocke00 );
  9. Good nigths the error was a missing dependencies afther ramdom google a tin of luck and the command ./gradlew clean setupDecompWorkspace ${ide} --refresh-dependencies it download the missings and now is working
  10. good days bad english advertisment ibeen triying to set up eclipse to work mods for 1.7.10 but the thing dont load or end whit a bunch of errors, and idont know whats is wrong but the eclipse folder is empty , and i been doing this before whit 1.7.2 so lets see Os: Debian GNU/Linux 7 64b 3.2.0-4-amd64 java 1.8.0_11 64-Bit oracle versión manualy instaled javac 1.8.0_11 64-Bit oracle versión manualy instaled eclipse-luna 4.4.0 tar.gz manualy instaled forge-1.7.10-10.13.0.1199 if i doo a hellOword indeed it works; sooo _________________________________________________________________________________________________ wget -c http://files.minecraftforge.net/maven/net/minecraftforge/forge/1.7.10-10.13.0.1199/forge-1.7.10-10.13.0.1199-src.zip tenchi@debian:~/Modding$ mkdir 1199 tenchi@debian:~/Modding$ mv forge-1.7.10-10.13.0.1199-src.zip 1199/ tenchi@debian:~/Modding$ cd 1199/ tenchi@debian:~/Modding/1199$ unzip forge-1.7.10-10.13.0.1199-src.zip Archive: forge-1.7.10-10.13.0.1199-src.zip inflating: forge-1.7.10-10.13.0.1199-changelog.txt inflating: LICENSE-fml.txt inflating: CREDITS-fml.txt inflating: MinecraftForge-License.txt inflating: MinecraftForge-Credits.txt inflating: gradlew inflating: gradlew.bat inflating: README.txt creating: src/ creating: src/main/ creating: src/main/java/ creating: src/main/java/com/ creating: src/main/java/com/example/ creating: src/main/java/com/example/examplemod/ inflating: src/main/java/com/example/examplemod/ExampleMod.java creating: src/main/resources/ inflating: src/main/resources/mcmod.info creating: eclipse/ creating: eclipse/.metadata/ creating: eclipse/.metadata/.plugins/ creating: eclipse/.metadata/.plugins/org.eclipse.core.runtime/ creating: eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/ inflating: eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs inflating: eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.epp.usagedata.gathering.prefs inflating: eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.core.prefs inflating: eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.editors.prefs inflating: eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.ui.prefs inflating: eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs inflating: eclipse/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs creating: eclipse/.metadata/.plugins/org.eclipse.debug.ui/ inflating: eclipse/.metadata/.plugins/org.eclipse.debug.ui/launchConfigurationHistory.xml creating: eclipse/.metadata/.plugins/org.eclipse.core.resources/ creating: eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/ creating: eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/Minecraft/ inflating: eclipse/.metadata/.plugins/org.eclipse.core.resources/.projects/Minecraft/.location creating: eclipse/.metadata/.plugins/org.eclipse.core.resources/.root/ inflating: eclipse/.metadata/.plugins/org.eclipse.core.resources/.root/0.tree creating: eclipse/.metadata/.plugins/org.eclipse.debug.core/ creating: eclipse/.metadata/.plugins/org.eclipse.debug.core/.launches/ inflating: eclipse/.metadata/.plugins/org.eclipse.debug.core/.launches/Client.launch inflating: eclipse/.metadata/.plugins/org.eclipse.debug.core/.launches/Server.launch inflating: build.gradle creating: gradle/ creating: gradle/wrapper/ inflating: gradle/wrapper/gradle-wrapper.jar inflating: gradle/wrapper/gradle-wrapper.properties ##########################################3 tenchi@debian:~/Modding/1199$ ./gradlew setupDecompWorkspace Download http://repo1.maven.org/maven2/org/eclipse/equinox/preferences/3.5.200-v20140224-1527/preferences-3.5.200-v20140224-1527.pom Download http://repo1.maven.org/maven2/org/eclipse/equinox/registry/3.5.400-v20140428-1507/registry-3.5.400-v20140428-1507.pom Download http://repo1.maven.org/maven2/org/eclipse/osgi/3.10.0-v20140606-1445/osgi-3.10.0-v20140606-1445.pom Download http://repo1.maven.org/maven2/org/eclipse/core/jobs/3.6.0-v20140424-0053/jobs-3.6.0-v20140424-0053.pom Download http://repo1.maven.org/maven2/org/eclipse/core/contenttype/3.4.200-v20140207-1251/contenttype-3.4.200-v20140207-1251.pom Download http://repo1.maven.org/maven2/org/eclipse/equinox/app/1.3.200-v20130910-1609/app-1.3.200-v20130910-1609.pom Download http://repo1.maven.org/maven2/org/eclipse/core/runtime/3.10.0-v20140318-2214/runtime-3.10.0-v20140318-2214.pom Download http://files.minecraftforge.net/maven/net/minecraftforge/gradle/ForgeGradle/1.2-SNAPSHOT/ForgeGradle-1.2-20140806.222429-158.jar Download http://repo1.maven.org/maven2/org/eclipse/equinox/common/3.6.200-v20130402-1505/common-3.6.200-v20130402-1505.jar Download http://repo1.maven.org/maven2/org/eclipse/equinox/registry/3.5.400-v20140428-1507/registry-3.5.400-v20140428-1507.jar Download http://repo1.maven.org/maven2/org/eclipse/equinox/app/1.3.200-v20130910-1609/app-1.3.200-v20130910-1609.jar Download http://repo1.maven.org/maven2/org/eclipse/equinox/preferences/3.5.200-v20140224-1527/preferences-3.5.200-v20140224-1527.jar Download http://repo1.maven.org/maven2/org/eclipse/osgi/3.10.0-v20140606-1445/osgi-3.10.0-v20140606-1445.jar Download http://repo1.maven.org/maven2/org/eclipse/core/jobs/3.6.0-v20140424-0053/jobs-3.6.0-v20140424-0053.jar Download http://repo1.maven.org/maven2/org/eclipse/core/contenttype/3.4.200-v20140207-1251/contenttype-3.4.200-v20140207-1251.jar Download http://repo1.maven.org/maven2/org/eclipse/core/runtime/3.10.0-v20140318-2214/runtime-3.10.0-v20140318-2214.jar The assetDir is deprecated! Use runDir instead! runDir set to eclipse/assets/.. **************************** Powered By MCP: http://mcp.ocean-labs.de/ Searge, ProfMobius, Fesh0r, R4wk, ZeuX, IngisKahn MCP Data version : unknown **************************** :extractUserDev Download http://files.minecraftforge.net/maven/net/minecraftforge/forge/1.7.10-10.13.0.1199/forge-1.7.10-10.13.0.1199-userdev.jar :extractNatives :genSrgs :getAssetsIndex :getAssets :makeStart Download http://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.11/2.3.3/akka-actor_2.11-2.3.3.pom Download http://repo1.maven.org/maven2/com/typesafe/config/1.2.1/config-1.2.1.pom Download http://repo1.maven.org/maven2/org/scala-lang/scala-actors-migration_2.11/1.1.0/scala-actors-migration_2.11-1.1.0.pom Download http://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.11.1/scala-compiler-2.11.1.pom Download http://repo1.maven.org/maven2/org/scala-lang/plugins/scala-continuations-library_2.11/1.0.2/scala-continuations-library_2.11-1.0.2.pom Download http://repo1.maven.org/maven2/org/scala-lang/plugins/scala-continuations-plugin_2.11.1/1.0.2/scala-continuations-plugin_2.11.1-1.0.2.pom Download http://repo1.maven.org/maven2/org/scala-lang/scala-library/2.11.1/scala-library-2.11.1.pom Download http://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.11.1/scala-reflect-2.11.1.pom Download https://libraries.minecraft.net/com/mojang/realms/1.3.1/realms-1.3.1.pom Download https://libraries.minecraft.net/com/mojang/authlib/1.5.16/authlib-1.5.16.pom Download http://repo1.maven.org/maven2/org/scala-lang/scala-actors/2.11.0/scala-actors-2.11.0.pom Download http://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.2/scala-xml_2.11-1.0.2.pom Download http://repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.1/scala-parser-combinators_2.11-1.0.1.pom Download http://repo1.maven.org/maven2/com/google/guava/guava/17.0/guava-17.0.pom Download http://repo1.maven.org/maven2/com/google/guava/guava-parent/17.0/guava-parent-17.0.pom Download http://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.3.2/commons-lang3-3.3.2.pom Download http://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.11/2.3.3/akka-actor_2.11-2.3.3.jar Download http://repo1.maven.org/maven2/com/typesafe/config/1.2.1/config-1.2.1.jar Download http://repo1.maven.org/maven2/org/scala-lang/scala-actors-migration_2.11/1.1.0/scala-actors-migration_2.11-1.1.0.jar Download http://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.11.1/scala-compiler-2.11.1.jar Download http://repo1.maven.org/maven2/org/scala-lang/plugins/scala-continuations-library_2.11/1.0.2/scala-continuations-library_2.11-1.0.2.jar Download http://repo1.maven.org/maven2/org/scala-lang/plugins/scala-continuations-plugin_2.11.1/1.0.2/scala-continuations-plugin_2.11.1-1.0.2.jar Download http://repo1.maven.org/maven2/org/scala-lang/scala-library/2.11.1/scala-library-2.11.1.jar Download http://files.minecraftforge.net/maven/org/scala-lang/scala-parser-combinators_2.11/1.0.1/scala-parser-combinators_2.11-1.0.1.jar Download http://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.11.1/scala-reflect-2.11.1.jar Download http://files.minecraftforge.net/maven/org/scala-lang/scala-swing_2.11/1.0.1/scala-swing_2.11-1.0.1.jar Download http://files.minecraftforge.net/maven/org/scala-lang/scala-xml_2.11/1.0.2/scala-xml_2.11-1.0.2.jar Download https://libraries.minecraft.net/com/mojang/realms/1.3.1/realms-1.3.1.jar Download https://libraries.minecraft.net/com/mojang/authlib/1.5.16/authlib-1.5.16.jar Download http://repo1.maven.org/maven2/org/scala-lang/scala-actors/2.11.0/scala-actors-2.11.0.jar Download http://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.2/scala-xml_2.11-1.0.2.jar Download http://repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.1/scala-parser-combinators_2.11-1.0.1.jar Download http://repo1.maven.org/maven2/com/google/guava/guava/17.0/guava-17.0.jar Download http://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.3.2/commons-lang3-3.3.2.jar warning: [options] bootstrap class path not set in conjunction with -source 1.6 1 warning :downloadMcpTools :downloadClient SKIPPED :downloadServer SKIPPED :mergeJars SKIPPED :deobfuscateJar Applying SpecialSource... INFO: merging AccessMap net/minecraft/item/ItemBlock/field_150939_a from AccessChange(clear=0, set=0, vis=1) with AccessChange(clear=0, set=0, vis=1) Applying Exceptor... :decompile :processSources Injecting fml files Applying fml patches Applying forge patches :remapJar :extractMinecraftSrc :recompMinecraft warning: [options] bootstrap class path not set in conjunction with -source 1.6 Note: Some input files use or override a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note: Some input files use unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. 1 warning :repackMinecraft :setupDecompWorkspace BUILD SUCCESSFUL Total time: 15 mins 18.52 secs tenchi@debian:~/Modding/1199$ ##################################### tenchi@debian:~/Modding/1199$ ./gradlew eclipse The assetDir is deprecated! Use runDir instead! runDir set to eclipse/assets/.. **************************** Powered By MCP: http://mcp.ocean-labs.de/ Searge, ProfMobius, Fesh0r, R4wk, ZeuX, IngisKahn MCP Data version : unknown **************************** :eclipseClasspath Download http://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.11/2.3.3/akka-actor_2.11-2.3.3-sources.jar Download http://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.11/2.3.3/akka-actor_2.11-2.3.3-javadoc.jar Download http://repo1.maven.org/maven2/com/typesafe/config/1.2.1/config-1.2.1-sources.jar Download http://repo1.maven.org/maven2/com/typesafe/config/1.2.1/config-1.2.1-javadoc.jar Download http://repo1.maven.org/maven2/org/scala-lang/scala-actors-migration_2.11/1.1.0/scala-actors-migration_2.11-1.1.0-sources.jar Download http://repo1.maven.org/maven2/org/scala-lang/scala-actors-migration_2.11/1.1.0/scala-actors-migration_2.11-1.1.0-javadoc.jar Download http://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.11.1/scala-compiler-2.11.1-sources.jar Download http://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.11.1/scala-compiler-2.11.1-javadoc.jar Download http://repo1.maven.org/maven2/org/scala-lang/plugins/scala-continuations-library_2.11/1.0.2/scala-continuations-library_2.11-1.0.2-sources.jar Download http://repo1.maven.org/maven2/org/scala-lang/plugins/scala-continuations-library_2.11/1.0.2/scala-continuations-library_2.11-1.0.2-javadoc.jar Download http://repo1.maven.org/maven2/org/scala-lang/plugins/scala-continuations-plugin_2.11.1/1.0.2/scala-continuations-plugin_2.11.1-1.0.2-sources.jar Download http://repo1.maven.org/maven2/org/scala-lang/plugins/scala-continuations-plugin_2.11.1/1.0.2/scala-continuations-plugin_2.11.1-1.0.2-javadoc.jar Download http://repo1.maven.org/maven2/org/scala-lang/scala-library/2.11.1/scala-library-2.11.1-sources.jar Download http://repo1.maven.org/maven2/org/scala-lang/scala-library/2.11.1/scala-library-2.11.1-javadoc.jar Download http://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.11.1/scala-reflect-2.11.1-sources.jar Download http://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.11.1/scala-reflect-2.11.1-javadoc.jar Download https://libraries.minecraft.net/com/mojang/authlib/1.5.16/authlib-1.5.16-sources.jar Download http://repo1.maven.org/maven2/org/scala-lang/scala-actors/2.11.0/scala-actors-2.11.0-sources.jar Download http://repo1.maven.org/maven2/org/scala-lang/scala-actors/2.11.0/scala-actors-2.11.0-javadoc.jar Download http://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.2/scala-xml_2.11-1.0.2-sources.jar Download http://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.11/1.0.2/scala-xml_2.11-1.0.2-javadoc.jar Download http://repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.1/scala-parser-combinators_2.11-1.0.1-sources.jar Download http://repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.11/1.0.1/scala-parser-combinators_2.11-1.0.1-javadoc.jar Download http://repo1.maven.org/maven2/com/google/guava/guava/17.0/guava-17.0-sources.jar Download http://repo1.maven.org/maven2/com/google/guava/guava/17.0/guava-17.0-javadoc.jar Download http://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.3.2/commons-lang3-3.3.2-sources.jar Download http://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.3.2/commons-lang3-3.3.2-javadoc.jar :eclipseJdt :eclipseProject :eclipse BUILD SUCCESSFUL Total time: 10 mins 27.239 secs ####################################################3 fireOn luna and set the workspace to /home/tenchi/Modding/1199/eclipse compile to test the state of the minecraft and thats it : Java HotSpot 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release [19:32:13] [main/INFO] [GradleStart]: No arguments specified, assuming client. [19:32:13] [main/INFO] [GradleStart]: Extra: [] Exception in thread "main" java.lang.RuntimeException: java.io.FileNotFoundException: /home/tenchi/.gradle/caches/minecraft/assets/indexes/{ASSET_INDEX}.json (No existe el fichero o el directorio) at com.google.common.base.Throwables.propagate(Throwables.java:160) at GradleStart.setupAssets(GradleStart.java:274) at GradleStart.startClient(GradleStart.java:82) at GradleStart.main(GradleStart.java:56) Caused by: java.io.FileNotFoundException: /home/tenchi/.gradle/caches/minecraft/assets/indexes/{ASSET_INDEX}.json (No existe el fichero o el directorio) at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.<init>(Unknown Source) at java.io.FileReader.<init>(Unknown Source) at GradleStart.loadAssetsIndex(GradleStart.java:280) at GradleStart.setupAssets(GradleStart.java:218) ... 2 more ________________________________________________________ and tath is. the eclipse folder is empty
  11. Buenos días Que método se utiliza para conocer la posición xyz de Steve o de un bloque en particular Es que estoy comenzando con esto del moding recién e aprendido a crear bloques multi textura y quiero que el bloque que e creado asigne las texturas de las caras con respecto ala posición de steve, así como con el furnace//horno que queda siempre dando la cara asía donde este steve sin importar como lo coloque lo otro que quiero saber es que como hacer que el blocke reaccione cuando steve le da clic derecho, así como las puertas que al darle clic derecho cambian abriendo o cerrandoce ?? existe ya una guía con la explicación de esos métodos??
×
×
  • Create New...

Important Information

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