Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Thanks for reading this, first of all, because I'm seriously confused!

 

    So I'm basically working on a mod which bring clothes into Minecraft for 1.6.2. So, I have my basic mod done, but I now need to work out a way of allowing people to download individual content packs, which add sets of clothing into my main mod. So what I'm really asking is this:

  • How Do I Make Content Packs Compatible With My Main Mod?
  • How Do I Set Them Up?

    Please post any ideas that you guys have, I'd be really grateful if you could help!  :D

You basically want to add DLC's to your mod?

 

How do you want them to work exactly?

As big things downloaded seperatly?

As stuff turned on and off via a GUI menu?

etc.

If you guys dont get it.. then well ya.. try harder...

  • Author

You basically want to add DLC's to your mod?

 

How do you want them to work exactly?

As big things downloaded seperatly?

As stuff turned on and off via a GUI menu?

etc.

 

Basically, I would like people to be able to download a folder which can be put inside of a "DLC PACKS" folder (Just an example name), and then my mod would load all of the items, blocks, etc inside of that folder, but I really haven't got a ckue how to do it

 

    Thanks for the reply! :)

Are you talking about java files to compile and obfuscate, or some setting files with "readable" text ?

  • Author

Are you talking about java files to compile and obfuscate, or some setting files with "readable" text ?

 

    I mean coding it in java, so just like I would with a normal mod (public static Item... and so on), but I need my main mod to be able to read the new content packs somehow, and to be able to add their items into the game

  • Author

I was thinking about making it so that my main mod can detect that there is a file in it's content packs folder, which would then be able to allow the items in the content pack to work using my main mod's code. Anyone know if this is possible, or how at all to to do it?

You're essentially looking to parse a DLC folder and load classes contained within the ZIP files. You might want to take a look at how Forge parses the mods directory in the following package:

 

cpw.mods.fml.common.discovery

 

It doesn't look like an easy task but it also doesn't look impossible.

 

It sounds like you are wanting to do something like what the actual Forge API does. It basically reads EVERYTHING in the /mods folder and if there is a class that has the annotation

@Mod ( params )

then it loads it as a mod.

 

So you would have to do the same thing. You would then use an annotation like

@EsvDefconContentPack ( Same params as @Mod )

 

So yeah... That seems like an extremely hard way to do this. All you really need to do is just basically have it as a "core mod" ( not used in the literal sense of the term core mod ). Then every set of clothing mod would require that mod to be installed.

I am Mew. The Legendary Psychic. I behave oddly and am always playing practical jokes.

 

I have also found that I really love making extremely long and extremely but sometimes not so descriptive variables. Sort of like what I just did there xD

  • Author

Thanks for your reply, I think that you know exactly what I'm trying to do! So unfortunately I'm still pretty new to java, so I'd need a little more explanation of how to do it. So if I use this @Mod annotation, then I will obviously be putting it inside of a new class file? Which I'm guessing that you would also need to make a new workspace for it, because it's a different mod. I'm probably wrong, so please correct me if I am :)

* chuckles *

 

Nice try, but not quite mate. I actually have NO IDEA how to ENTIRELY go about this, but I do know what it would require.

 

I have never made my own annotation files, but I would suggest looking at the Mod annotation class. I would then also look at what Lycanus Darkbinder suggested, the cpw.mods.fml.common.discovery package.

 

BUT!!! Before you do ANY of that, go learn a far bit of java. This problem/question seems quite advanced, though I have no idea how hard as I have never tried it, but it is always good to be prepared.

I am Mew. The Legendary Psychic. I behave oddly and am always playing practical jokes.

 

I have also found that I really love making extremely long and extremely but sometimes not so descriptive variables. Sort of like what I just did there xD

  • Author

Thanks again, and yeah, I'll have a look into the mod annotation class. Hopefully I'll find something! :D

All you really need to do is just basically have it as a "core mod" ( not used in the literal sense of the term core mod ). Then every set of clothing mod would require that mod to be installed.

 

Yeah this was my thought as well of a simple way to do it.

Make those "DLC's" be submods of your main mod, that way if they are downloaded into the /mods folder they will be included else they won't count.

 

You should even be able to make some interface for downloading them and all that via some GUI or something, although loading them will req. a restart of minecraft :P

If you guys dont get it.. then well ya.. try harder...

  • Author

Thanks again to everyone for all of the help, and when you were talking about making submods, would you know how to do this exactly? Sorry if I'm sounding like I haven't got a clue about java as well by the way, it's just that I'm really confused on this one. :)

Submods idea is simple:

The @Mod annotation can already handle basic mod dependency, so make submods use it with [required-after:"basemodid"]

Then you code your own ItemRegistry, or OreRegistry, or whatever in your basemod. All submod should then use that to register things. Making interfaces and release it as an API could be useful too.

 

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.