Jump to content
  • Home
  • Files
  • Docs
Status Updates
  • All Content

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Maxi07

Maxi07

Members
 View Profile  See their activity
  • Content Count

    107
  • Joined

    June 22, 2020
  • Last visited

    December 30, 2020

Community Reputation

2 Neutral

About Maxi07

  • Rank
    Creeper Killer

Converted

  • Gender
    Male
  • Location
    Germany

Recent Profile Visitors

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

  1. Maxi07 started following forge 1.15.2 "you need to run the version 1.15.2 manually at least once" error, Learning minecraft mod code, Biome Generation and and 1 other October 27, 2020
  2. Maxi07

    [1.16.1] Library Mod / Dependencies

    Maxi07 replied to Maxi07's topic in ForgeGradle

    This are my current thoughts and experiments to this: I added task sourceJar(type: Jar) { classifier = 'sources' from sourceSets.main.allJava } to my build.gradle and "artifact sourceJar" to the publish Now a source jar is generated on publish. But, unlike the jar, it is not reobfed (srg) What I expect to happen is the following: 1. On publish the jar and the sources.jar get generated and reobfed (not only the jar) 2. GenEclipseRuns copies the files to .gradle\caches\forge_gradle\deobf_dependencies and mappes them. So the file is now [jar_name]_mapped_snapshot_20200723-1.16.1.jar. And the obfed sources.jar gets mapped too and is then [jar_name]_mapped_snapshot_20200723-1.16.1-sources.jar 3. GenEclipseRuns then should tell eclipse that the jar is the lib and that the source can be found in the sources.jar (I can tell eclipse manually where to find the source and javadoc files, but only if it is a java project and not a gradle project) Does this makes sense and is good system? (I am sorry, if this is completly stupid) If it is: neither 1, nor 2, nor 3 are happening I dont know if this is the system you are already working on. ------------------------------------------------------------------------------- @DaemonUmbra What is your current progress? What have you already done? Is there any way I can help speeding this up or an alternative? And thanks for trying to help me!
    • September 16, 2020
    • 60 replies
  3. Maxi07

    [1.16.1] Library Mod / Dependencies

    Maxi07 replied to Maxi07's topic in ForgeGradle

    @DaemonUmbra Anything new?
    • September 8, 2020
    • 60 replies
  4. Maxi07

    Biome Generation

    Maxi07 replied to Intijir's topic in Modder Support

    1.16.2 changed the world gen completely, some parts are already back, but not everything is working in 1.16.2 as expected now. I stick with 1.16.1, because I use world gen too.
    • September 2, 2020
    • 3 replies
  5. Maxi07

    [1.16.1] Library Mod / Dependencies

    Maxi07 replied to Maxi07's topic in ForgeGradle

    But, restoring the source code, via decompiling will never be better then the original. If using a source.jar works, why not using it? The source.jar is just not generating. But other modders manage it to generate it on publish (example: https://dvs1.progwml6.com/files/maven/mezz/jei/jei-1.16.1/7.0.1.10/), so it is possible. The Question is just how? And the default build.gradle seems to be broken: // makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable. because it is not made by default
    • September 1, 2020
    • 60 replies
  6. Maxi07

    Name and texture of the item I added in Minecraft Mod is not resolved - 1.15.2 - IntellJ IDE

    Maxi07 replied to Maces Games STUDİOS's topic in Modder Support

    textures/items and textures/blocks still have to be renamed to textures/item and textures/block and you have to replace items with item in your model too
    • August 31, 2020
    • 33 replies
  7. Maxi07

    Name and texture of the item I added in Minecraft Mod is not resolved - 1.15.2 - IntellJ IDE

    Maxi07 replied to Maces Games STUDİOS's topic in Modder Support

    You also have to rename models/items to models/item models/blocks to models/block textures/items to textures/item textures/blocks to textures/block
    • August 31, 2020
    • 33 replies
  8. Maxi07

    Name and texture of the item I added in Minecraft Mod is not resolved - 1.15.2 - IntellJ IDE

    Maxi07 replied to Maces Games STUDİOS's topic in Modder Support

    Yes, it is assets, not assests
    • August 31, 2020
    • 33 replies
  9. Maxi07

    [1.16.1] Library Mod / Dependencies

    Maxi07 replied to Maxi07's topic in ForgeGradle

    By the way, I now switched from a flatDir to a maven (similar like Ommina said), because it is a bit simpler for me. And I also learned a bit new about maven and gradle. I am 99.99% sure I need the sources.jar. I already looked where eclipse found the source for minecraft and forge, it's the sources.jar. With these files my maven looks almost like the one from other mods, except the sources.jar (and sources.jar.sha1/md5). So when I run publish the [jar name]-sources.jar has to be geratend too! I already tried adding the line makeObfSourceJar = true but then is crashed @DaemonUmbra and everyone, do you have any idea how to do this? Sorry for bad english at this post
    • August 31, 2020
    • 60 replies
  10. Maxi07

    [1.16.1] Library Mod / Dependencies

    Maxi07 replied to Maxi07's topic in ForgeGradle

    Just to make sure we stay on topic, here is my main question
    • August 29, 2020
    • 60 replies
  11. Maxi07

    [1.16.1] Library Mod / Dependencies

    Maxi07 replied to Maxi07's topic in ForgeGradle

    Why do I not need the sources jar? Every other mod and forge use a sources.jar
    • August 29, 2020
    • 60 replies
  12. Maxi07

    [1.16.1] Library Mod / Dependencies

    Maxi07 replied to Maxi07's topic in ForgeGradle

    This has nothing to do with the sources.jar (I am already using a flatDir repo)!
    • August 29, 2020
    • 60 replies
  13. Maxi07

    [1.16.1] Library Mod / Dependencies

    Maxi07 replied to Maxi07's topic in ForgeGradle

    Yes, but actually now it's all about finding the sources.jar
    • August 29, 2020
    • 60 replies
  14. Maxi07

    [1.16.1] Library Mod / Dependencies

    Maxi07 replied to Maxi07's topic in ForgeGradle

    I think, now I have finally got the solution! After I saw the topic "[1.14.4] How add JEI to own mod?", I focused on trying to find out how other mods do this. The problem is clear: eclipse has found no source code. And I think this is not a bug, there is just no source code. As far as I know, the faltDir behaves like a regular maven repository. At any mod I have looked (forge too), there is either a [jar name]-sources.jar (it is like the regular jar, but every .class file is the .java file) or the jar not only contains the .class file, but also the .java files. For example the mezz.jei repo at https://dvs1.progwml6.com/files/maven/ Lines from my build.gradle: // The mappings can be changed at any time, and must be in the following format. // snapshot_YYYYMMDD Snapshot are built nightly. // stable_# Stables are built at the discretion of the MCP team. // Use non-default mappings at your own risk. they may not always work. // Simply re-run your setup task after changing the mappings to update your workspace. mappings channel: 'snapshot', version: '20200723-1.16.1' // makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable. // accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') // Default run configurations. // These can be tweaked, removed, or duplicated as needed. The is the comment "an Srg named sources jar is made by default". The fact that it is srg named should not matter, because it gets mapped. But the fact that a [jar name]-sources.jar is created is interesting. If I were right right, I would just have to find this [jar name]-sources.jar. And is where I need your help. Where is the sources.jar? Or do I have to add makeObfSourceJar = true (maybe the default is not working)
    • August 29, 2020
    • 60 replies
  15. Maxi07

    [1.16.1] Library Mod / Dependencies

    Maxi07 replied to Maxi07's topic in ForgeGradle

    Maybe a multi build project will be easier and work?
    • August 28, 2020
    • 60 replies
  16. Maxi07

    forge 1.15.2 "you need to run the version 1.15.2 manually at least once" error

    Maxi07 replied to DpowerMX's topic in Support & Bug Reports

    When you install forge, there is also an installation path. The default is %appdata%\.minecraft (on Windows). Make sure this folder (or the one you set) contains your versions folder which should contain 1.15.2 with 1.15.2.jar in it. Maybe this will work... And also, please post your installer log
    • August 28, 2020
    • 5 replies
  • All Activity
  • Home
  • Maxi07
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community