Configuration Files

Supported MCreator versions
2022.3
2023.1
2023.2
2023.3
2023.4
2024.1
2024.2
Tags / plugin type
Java plugin
Procedures
Templates
configs
Downloads:
4453
Upvotes: 71
About the plugin

Configuration FIles is a plugin that allows for the creation of mod configuration files, through which parts of your mod can be enabled, disabled or modified using variable values stored inside it. Those values can then be changed by the mod's users, allowing for more control over your mod's features.

 

How to use?

 

Configurations are very simple to use. You will first need to create a configuration element.

config

Once created, you can make a configuration category and add variable types to it. Note that registry name types are considered texts. (and entities are not supported yet, but you can manually write the registry name as a text variable)

variables

You can then use the variables in procedures by following the example below.

example

 

And that's it! The Configuration Files will generate once the game is loaded.

 

The plugin supports versions 1.16.5-1.19.2, but doesn't support 2022.2. Therefore you will need to install the forge generator 1.16.5 plugin for 2022.3 if you plan on using this with 1.16.5

 

This is a Java Plugin and therefore requires the Java Plugins feature to be enabled.

 

 

Changelog

v2.2
-Support for MCreator 2024.2 and neoforge 1.20.6

v2.1.1
-Fixed text lists causing the config to regenerate every time the game is launched

v2.1
-Added text list variables to configs
-Added new procedure block: for each entry in config text list
-Added new procedure block: text list iterator

v2.0.1
-Updated to work with MCreator 2024.1.15821

v2.0
-Major UI code refactor
-Configs now have proper validation
-Removed duplicate registry name procedure blocks (If you're using them, get rid of them before updating)
-Cleaned up config template code
-Support for 2024.1
-Support for neoforge 1.20.4

v1.9
-Added 2023.4 support

v1.8
-Ported to 1.20.1
-Disabled standalone comments as they sometimes caused the game to not launch and I have no bloody clue why

v1.7
-Support for 1.19.4 and 2023.2 EAP

v1.6.1
-Removed the version MCreator limit so I dont need to constantly update the plugin

v1.6
-Support for 2023.1 release

v1.5
-Dropped support for 2023.1 snapshot 2
-Support for 2023.1 snapshot 3

v1.4
-Deleted the 1.16.5 templates as that version is now unsupported in 2023.1
-Changed the variable getter procedures to use a datalist for selecting the configuration element
(You will need to select the element again in existing procedures)

v1.3

-Dropped support for 2022.4 snapshot 1 and below due to incompatibilities in the code
-Updated to the 2023.1 snapshot 2

v1.2
-Number variables can now have negative values
-Added the convert registry name to item procedure
-Added the convert registry name to block procedure

v1.1
-Fixed number variables causing build errors
-Fixed number variable procedure causing build errors
-Fixed configurations being part of the items list
-Fixed block and item registry name variables sometimes causing build errors
-Fixed configuration categories generating inside of each other
-Deleted some useless code in the configuration template
(File size is the same but I swear that's just a coincidence)
License
MIT License

Plugin downloads
Configuration Files v1.2 (MCreator 2022.4 and below ONLY) - configuration_files_5.zipUploaded on: 12/25/2022 - 02:34   File size: 41.72 KB
Configuration Files v1.6.1 (MCreator 2023.1 ONLY) - configuration_files_0.zipUploaded on: 03/08/2023 - 12:15   File size: 38.79 KB
Configuration Files v1.7 (MCreator 2023.1, 2023.2 ONLY) - configuration_files.zipUploaded on: 04/28/2023 - 22:53   File size: 43.32 KB
Configuration Files v1.8 (MCreator 2023.1, 2023.2, 2023.3 ONLY) - configuration_files.zipUploaded on: 12/01/2023 - 11:44   File size: 47.9 KB
Configuration Files v2.0 (MCreator 2023.4 ONLY) - configuration_files.zipUploaded on: 04/12/2024 - 17:27   File size: 40.01 KB
Configuration Files v2.1.1 (MCreator 2024.1 ONLY) - configuration_files_0.zipUploaded on: 06/17/2024 - 20:30   File size: 47.08 KB
Configuration Files v2.2 (MCreator 2024.2 ONLY) - configuration_files.zipUploaded on: 07/18/2024 - 18:54   File size: 51.03 KB

Comments

Perfect, love the new update! But I was wondering, is it possible to allow negative values in the config as well?

Fails to build with the 1.16.5 generator for 2022.3, like shown in this video https://www.youtube.com/watch?v=NB6VlLDOO6M

> Task :compileJava FAILED
C:\Users\*****\MCreatorWorkspaces\sakes_weapons\src\main\java\sakeplays\sakesweapons\configuration\SakesWeaponsCfgConfiguration.java:11: error: incompatible types: int cannot be converted to java.lang.Double
THUNDERCLAP_DAMAGE = BUILDER.comment("How much damage should thunderclap deal.").define("Thunderclap's Damage", (Double) 40);
^
1 error
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':compileJava'.
> Compilation failed; see the compiler error output for details.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 8s
1 actionable task: 1 executed

BUILD FAILED
Task completed in 16 seconds

another error when i want to get a variable:

> Task :compileJava FAILED
C:\Users\*****\MCreatorWorkspaces\sakes_weapons\src\main\java\sakeplays\sakesweapons\procedures\ThunderclapProjectileHitsLivingEntityProcedure.java:21: error: incompatible types: java.lang.Double cannot be converted to float
entity.attackEntityFrom(DamageSource.LIGHTNING_BOLT, (float) SakesWeaponsCfgConfiguration.THUNDERCLAP_DAMAGE.get());
^
1 error
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':compileJava'.
> Compilation failed; see the compiler error output for details.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 8s
1 actionable task: 1 executed

Is it possible to layer the categories beneath eachother? as whenever I try to add more categories they just add themselves inside the first one.

Adding an option to switch orders of the different elements would be great!

This is very intuitive, i learned json trying to use the File Manager plugin, but this can be used by anyone and still make it work perfectly as it's simpler to use. Good job Nerdy

@NerdyPuzzle if you have time are you could add "Anaku's Status Bars" Mod as a Java Plugin?

Here is the CurseForge Link of the Mod:
Fabric - https://www.curseforge.com/minecraft/mc-mods/anakus-status-bars
Forge - https://www.curseforge.com/minecraft/mc-mods/anakus-status-bars-forge

No the implementation of that just like the integration of JEI.

The Mod above I linked allowed us to make more easily an Status Bar aka. Health Bar etc. for your Attributes. In short you can make your own HUD Status Bar just like the Heart Bar etc.
This is really cool if this exist in MCreator via Java plugin.

Check the Documentation:
Forge: https://github.com/LordAnaku/Anaku_Status_Bars_Forge/wiki
Fabric: https://github.com/LordAnaku/Anakus_Status_Bars/wiki