Jump to content

Caucorico

Members
  • Posts

    8
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Caucorico's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. Hi, If you really want to use the old laucher, can you send us your Launcher logs ? It could be helpful. Caucorico
  2. In your IDEA, there is the gradle Tab on the right. And when you click on the icon, a file/repository list is displayed. In this repository there is a task named setupDecompWorkspace. Are you sure that it is not here ?
  3. Hi, do you have run the setupDecompWorkspace task ? Best regards, Caucorico
  4. Hi, I had the same problem, you can see how I fix it on this topic : https://www.minecraftforge.net/forum/topic/74528-forge-1144-28045-does-not-build-correctly-the-profile-of-the-launcher-solvable-but-not-solved/?tab=comments#comment-357470 Best regards, Caucorico
  5. Hi DaemonUmbra, Okay, the url is intentionally blank but it seems that the program doesn't check it. I just verified, the forge-1.14.4-28.0.45.jar is correctly installed in ~/.minecraft/libraries/net/minecraftforge/1.14.4-28.0.45. So, indeed, the launcher should not try to download it. But, the error throws by the launcher show that it trying anyway. I'm not the only one that had the same problem : Are you sure that all the launchers checks if the url is empty ? Best regards, Caucorico
  6. Hello, I have tried to install Forge 1.14.4 - 28.0.45 with the installer, but it doesn't work. The forge profile use the latest version of Minecraft instead of the forge version. I use the 1.6.89-j launcher. So, when I looked at the launcher logs, I saw this error : The first line of the error talks about the file : ~/.minecraft/versions/1.14.4-forge-28.0.45/1.14.4-forge-28.0.45.json So, as shown in the error, I searched a MalformedURL and I found it ! In the JSON file : There is the net.minecraftforge:forge:1.14.4-28.0.45 url that is empty. (line 36). So, I tried to find the url of this jar and I found the url of : forge-1.14.4-28.0.45-universal.jar at https://files.minecraftforge.net/maven/net/minecraftforge/forge/1.14.4-28.0.45/forge-1.14.4-28.0.45-universal.jar I think this is the good file. So, I have set the url with this file and I restart the launcher. The launcher seems to works fine after the modification. I don't know if you are aware of this problem, but it is probably a good idea to fix this issue. Best regards, Caucorico
  7. Thank you Pyrossade, I will look all these information. I will also keep all my experimentation and their results to do some documentation and I will post it. And if I understand how work a generation method, i will explain it too.
  8. Hello, So, I am trying to understand how works the feature generation. I had succesfully create my Feature (extends net.minecraft.world.gen.feature) but I don't understand how the game add it to the world : biome.addFeature( GenerationStage.Decoration.UNDERGROUND_ORES, // What is this parameter for? Does it change the behavior? Biome.createDecoratedFeature( new BlockAgateSandOreFeature(), new ProbabilityConfig(0.5f), Placement.COUNT_RANGE, // I see there is some options in Placement class but I don't found doc about it new CountRangeConfig(15,70,80,81) // Depends of last one ) ); Does anyone know how it works? Thanks, My apologizes for my bad english.
×
×
  • Create New...

Important Information

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