Jump to content

Problem at running gradlew.bat


KaikonX

Recommended Posts

After learning some java i was ready to start modding Minecraft so i downloaded everything i needed and everything was going perfect until... i went to command prompt to run gradlew.bat setupDecompWorkspace--refresh-dependencies where i got this error.

****************************

Powered By MCP:           

http://mcp.ocean-labs.de/ 

Searge, ProfMobius, Fesh0r,

R4wk, ZeuX, IngisKahn     

MCP Data version : unknown

****************************

Download http://files.minecraftforge.net/maven/net/minecraftforge/forge/1.7.2-10.12.0.1024/forge-1.7.2-10.12.0.1024-userdev.jar

 

FAILURE: Build failed with an exception.

 

* What went wrong:

The setupDecompWorkspace will only work with Java 7! This is fixed in ForgeGradle 1.2

 

* Try:

Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

 

I am currently using java8 and i understand the error came from there but do i really need to downgrade the java version? Or is there another way?

Link to comment
Share on other sites

aup, you really need to downgrade. I did the same thing only to realise the same thing today. Because Java 8 is only just out, nothing has had time to update (like mods when a new version of Minecraft comes out). Make sure you have both JRE and JDK 7 and you set your path environment variable to point to it (there are a million guides of this, just search "JDK path environment variable" and repeat for JRE). Happy coding!

I have no idea what I'm doing.

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • you need a damage source and use it to hurt the entity thing   DamageSource damagesource;                 //damagesource = level.damageSources().playerAttack((Player) le);//.trident(le, thing);                 damagesource = level.damageSources().mobAttack(player);                 if (thing.hurt(damagesource, damage)) {                     thing.setLastHurtMob(player);                 }    
    • Hellow good days  i have a custome block dead adventurer shaped i use to spawn mobs  but the mobs i spawn has no equipment zombies without nothing and skeletons without bows     minecraft has a series of json files organizing items and block by categories  then there is the minecraft:data/minecraft/tags/items/swords.json   {   "values": [     "minecraft:diamond_sword",     "minecraft:stone_sword",     "minecraft:golden_sword",     "minecraft:netherite_sword",     "minecraft:wooden_sword",     "minecraft:iron_sword"   ] }   and i got mi own json file with the mines /home/usuario/workspace/1.20.4/mercmod/src/main/resources/data/minecraft/tags/items/swords.json {   "values": [     "minecraft:stick",     "mercmod:knife_steel",     "mercmod:sword_steel",     "mercmod:warhammer_steel",     "mercmod:battleaxe_steel",     "mercmod:crowbar",     "mercmod:lance_steel"   ] }   ############################ i wanna use this files, read them, randomly select one and set it for the mob mainhand i spawning    i wanna do something like  ArrayList<String> list = ItemTags.SWORDS.something_getKeys();       data/minecraft/tags/items/arrows.json data/minecraft/tags/items/axes.json data/minecraft/tags/items/hoes.json data/minecraft/tags/items/pickaxes.json data/minecraft/tags/items/shovels.json data/minecraft/tags/items/swords.json
    • https://mclo.gs/GkmIjij  Please, help
    • the world capability works for the current world and its different for every dimension  sound like what you need  the only thing is you cannot access data from a diferent world things like reading a data of the overworld from the nether would nwork
    • use inventorytick() whit the slot number you can know if its into an armour slot         //########## ########## ##########     public void inventoryTick(ItemStack helditem, Level warudo, Entity en, int slot, boolean value) {         Long wtick = 0L;         int tick = 0;         // System.out.println("\n#inventoryTick#\n");         if( !warudo.isClientSide ){             wtick = warudo.dayTime();             if( wtick % 20 == 0 && en instanceof Player ) {                 item_handler ih = get_itemhandler(helditem);                 //inicializar tiempo                 if (ih.start_time < 1L) {                     ih.start_time = wtick;                 }                 ih.time = (int) ( wtick - ih.start_time );                 tick = ih.time;                 //cada 5 seg causar daño por fuego al player                 if (tick > 0 && tick % 100 == 0) {                     en.setSecondsOnFire(1);                 }                 //despues de un minuto el lingote se enfria y vielve a ser hierro                 if ( tick > 1200 ) { //                     helditem = new ItemStack( Items.IRON_INGOT, helditem.getCount() );                     ((Player) en).getInventory().setItem(slot, helditem );                 }             }         }     }
  • Topics

×
×
  • Create New...

Important Information

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