Jump to content

Recommended Posts

Posted

I have my Eclipse workspace set up and have successfully added new items which show up in-game but I haven't seen any up-to-date information on how to run other mods at the same time in my dev environment. I'd like to have a few helper mods like NEI running if at all possible but more importantly, I'm currently attempting to make an addon to another mod so I need that mod to run for me to properly test it out.

 

I've seen a few tutorials on the subject (like this: http://www.minecraftforge.net/wiki/Developing_Addons_for_Existing_Mods ) but they are all out of date and/or incomplete. I haven't found any that tell me where to put mod files. I tried numerous places and in different formats (jar files, folders extracted from those jar files, folders of decompiled code). Most attempts resulted in nothing happening -- the dev environment launches the game fine but the mods aren't there, neither listed nor adding any items. When I tried putting the jar files in "[Forge]\eclipse\mods", the game would load a bit but would crash before reaching the main menu. (And yes, I used the correct version of the mod file, one that is for 1.7.2, and it worked fine with the non-dev 1.7.2 client.)

 

I also tried various places for the API files which the mod author provided. I assume "[Forge]\src" is the right place but I tried others just in case because that was just an educated guess since, as is the case with the other mod files, I haven't seen any instructions on where to them. That location allows me to access the API's classes from my own files but the API is just that, an API; there are no actual items or anything like that included for me to work with.

 

What is the proper place to put mod files for mods you want to run as well as those for mod-provided APIs? And if simply placing the files in the right folder isn't enough, how do you get Forge/Gradle and Eclipse to use them as desired? Finally, will this add complications when it comes to release time (perhaps needing to remove the mods I added) and what's the best way to work around any such complications?

Posted

I grabbed CodeChickenCore for 1.7.2 and stuck it along with the other mods jars into "[Forge]\eclipse\mods" and it worked brilliantly. Thank you!

 

Now, just to be sure... with this method, nothing special will need to be done when it comes to release time, right? Those files shouldn't be included in any way when it's all packed up for the end user.

Posted

Thanks. Now I assume I still have to have the API code in place so I can reference those classes etc. and have the thing compile, so was I right in placing the API files where I did? (Just in their own folder alongside my mod's in src/main/java .) Are they going to be built into the release and could that be a problem or become one in the future since the API is also included by the main mod and other addons (and later on, possibly different versions of it)?

Posted

If you have the API sources in src/main/java, they will be included by default in the gradle build. You can change this by editing the build.gradle file.

jar{
exclude 'external/api/*.class'
}

 

A different take on this is nicely detailed in coolAlias tutorial.

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.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hello everyone, I’d like to share a mod concept inspired by the Solo Leveling universe. My goal is to create a Minecraft experience where players explore unique dungeons, fight powerful bosses, level up their character, and unlock special abilities — all while keeping Minecraft’s sandbox charm. I mainly use MCreator for development, as it’s my preferred tool, but I’m open to integrating custom code, models, and assets from collaborators. Main Question: Would anyone be interested in joining the development of this mod? I’m looking for people who could help with: 3D Models (weapons, mobs, bosses, environmental assets) Sound Design (boss themes, dungeon ambience, ability sounds) Texture & Artwork (UI elements, icons, environment textures) Additional Coding (if needed for complex systems beyond MCreator’s scope) Concept: Players can enter portals leading to themed dungeons. Each dungeon ends with a unique boss battle. Defeating bosses grants special XP to improve stats (strength, mana, speed, defense). Rare loot, upgradeable gear, and unlockable powers. Extra Features Planned: Multiple dimensions with unique environments. NPCs giving quests. Random portal events appearing in the Overworld. Technical Approach: Development will primarily use MCreator for rapid prototyping. Custom models and textures can be integrated. NeoForge API features may be added for advanced functionality. If this project interests you, feel free to reply here or send me a message so we can discuss ideas, asset requirements, and a possible development roadmap.
    • I have followed the instructions on the Parchment website, but it still shows that the corresponding version cannot be found. https://parchmentmc.org/docs/getting-started What should I do?😢
    • main: Could not find net.minecraftforge:forge:1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1. Searched in the following locations:   - file:/C:/Users/qhxg/.gradle/caches/forge_gradle/bundeled_repo/net/minecraftforge/forge/1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1/forge-1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1.pom   - file:/C:/Users/qhxg/.gradle/caches/forge_gradle/bundeled_repo/net/minecraftforge/forge/1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1/forge-1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1.jar Required by:     project : Possible solution:  - Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
    • Minecraft has a problem with a mod that somehow prevents the Java runtime environment from working. I don't know which mod it is, so it's more of a guess, and I have the latest version of Java installed. https://mclo.gs/Xo7jTvo
  • Topics

×
×
  • Create New...

Important Information

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