69/100
3
3200
60
0.0
0
0

Hello, its Publisher

amerigovespuccip


Posts

Browse through the posts the author has made

MixerLogger

This is a tool used for debugging modpacks which scans your mods for mods which have annotations associated with common Mixer APIs such as SpongeMixin, Tuna-Bytes (soon), PizzaMixin(soon), and AssistMixer(soon) as well as some Aspect Orientated Programming APIs. For all the files that meet these criterias, it lists the name, the jar file it is in, the known targets (except for ones which do not specify the targets in the file itself like AssistMixer), the Class References, the Method References, and the Field References, with the possibility to add even more information in the future. On launchers which support System.out.println it will show the information in the console, the logs are also saved in (.)minecraft/logs/MixerLogger.log so you can access it. This is helpful if you are making a very large modpack and one of these breaks the game, this will allow you to have a better idea where it can be coming from. It loads itself before or during SpongeMixin or similar tools in most cases. The code for this is largelly loader independent meaning with a basic entrypoint it can be supported on most loaders and even most games in Java. Same Jar is used in more than 1 loader. Should work with Abstraction layer mods like Special Compatibility Operation, NeoFromTheMatrix, or Sintrya Connector just fine.The logs will be a tiny bit hard to read, but ideally anyone who is using this will be using ⌘+F or Ctrl+F to find specific peices of information. An example of a individual mixer class's info is as followsClass Name: net.fabricmc.fabric.mixin.client.model.BakedModelManagerMixinTargets: [net.minecraft.class_1092]ClassRef: [net.minecraft.class_1087, org.spongepowered.asm.mixin.Mixin, java.util.Map, net.minecraft.class_1092, net.fabricmc.api.Environment, net.fabricmc.fabric.mixin.client.model.BakedModelManagerMixin, net.fabricmc.api.EnvType, org.spongepowered.asm.mixin.Shadow, java.lang.Object, net.fabricmc.fabric.impl.client.model.BakedModelManagerHooks, net.minecraft.class_2960]MethodRef: [java.util.Map.get(Ljava/lang/Object;)Ljava/lang/Object;]FieldRef: [net.fabricmc.fabric.mixin.client.model.BakedModelManagerMixin.field_5408:Ljava/util/Map;]Originating JAR: fabric-api-0.75.1+1.19.2.jar-------------------- But it can be more daunting for much larger ones LimitationsAt the moment only Sponge Mixin is supported but others are soon planned and we also plan to list more info about modified methods and RefMap parsing. This also only goes 1 level deep for nested jars and javassist is bundled (which could conflict with a few mods but most other mods run AFTER this one so you would already have your information by the time such package conflict could happen). This only scans existing Mixer classes not ones created during runtime. This can make the game possibly unstable and also makes the game take longer to load so if you are not using it I would not suggest keeping it in your mods folder. Also atm only the folder called "mods" is supported but this will change. Platform support.FeatureCreepFeatureCreep 4.0 Pre Release 18 will come with this built in but it will need to be enabled in the FeatureCreep config (in the etc directory in your Minecraft Folder). However this jar supports FeatureCreep 4 Pre Release 17 to an extent if not being run on one of the other mentioned platforms. If you are on MCForge and have FeatureCreep this mod will confict due to both having the same packages at least on 1.17 due to Module changes. On platforms which do not come with SpongeMixin or a supported mixer it will need to be installed normally. The FeatureCreep built-in version will be the best maintained. The Pre-17 and earlier version of the mod will duplicate on Pre-18 or newer and is generally unsupported. Works on games outside of Minecraft written in Java and can be used on other loaders like LiteLoader and Rift and NeoForge and possibly older versions of MC Forge if FeatureCreep is installed. MinecraftForgeShould work on 1.17+, 1.16.5 and earlier has changes in the ITransformationService making it hard to do in the same file. FabricMCShould work on any version and in non-Minecraft games. May work on QuiltMC and other FabricMC derivatives but it is untested. Legacy and Cursed Legacy Fabric should also work. 

amerigovespuccip

FeatureCreep Tutorial Mod

A tutorial mod explaining how to make version independent mods for the upcoming FeatureCreep Modloader.This mod currently adds Items, Dataified Items, and Tools.Mods Made with the FeatureCreep API work across many different Minecraft Versions and even on top of other Modloaders, so long as the FeatureCreep Modloader is installed on top of them.This is a tutorial project for how to use code mods for FeatureCreep. See the Source Tab for more info.https://pagure.io/featurecreep_tutorial_modGetting Started (Under Construction)https://featurecreepmcdocs.minecraftmoddevelopment.com/doku.php?id=getting_started

amerigovespuccip

FeatureCreepMC

FeatureCreep is an upcoming ModLoader and Modding API, it allows you to make version independent mods. Mods made in this will work across many different versions of Minecraft and it has the ability to work on top of a bunch of other mod loaders allowing your mod to passively support many of the existing modloaders across many different versions. Some platforms we currently support include QuiltMC, MCForge, FabricMC, RiftMC, DangerZone 2.x, and more in the future. Disclaimer: FeatureCreep 4 is currently in a very Pre Pre Alpha Stage and only avalible for some versions with limited functionality. Only FeatureCreep 4 and newer have modloading capabilities. As of Pre-Release 6 You are currently able to added basic items and tools. It will expand over time. You are not able to access the Minecraft Packages as these change over time and would break version independence. You must use our API if you want version independence. FeatureCreep has the ability to run on many different versions of DangerZone and Minecraft and mods made for FeatureCreep will work acress all off the different versions. Note, this does not make Fabric 1.19.2 mods run on MC Forge 1.12.2 or vice versa, but rather that you make a mod for our platform which runs on top of many other platforms meaning you do not need to port your mod to a bunch of different platforms and can have only 1 file which works on many of them so long as the user has the correct version of FeatureCreep installed. A standalone version of FeatureCreep is also planned.Credits and Bundled FOSS librariesSome Arabic Translations confirmed by Snapchat mhmd_lzq9603 (How Are You?)Some Spanish Translations Confirmed by BitZeroApple Tools and Equestria Apple by LilylotlPNGJ https://github.com/leonbloy/pngj/No Changes Made, used for PNG ManipulationApache 2 LicenceDDS4Jhttps://github.com/vincentzhang96/DDS4JChanges made to not require the Java 8 specific Libraries. Used for converting DDS (HOI4) files to PNGs for MC & DZMIT LicenceSmallRye Commonhttps://github.com/smallrye/smallrye-commonUsed to make JBoss DMR Work, no known changes madeApache 2 LicenceJavaassisthttps://www.javassist.org/Used for Bytecode manipulationNo Known Changes Made except maybe a few for working with more than 1 java versionMPL, the LGPL, and the Apache LicenseTunabyteshttps://github.com/Revxrsal/Tuna-BytesNo longer included by default. Old versions i changed to allow for not using the LombokApache 2 LicenceJBoss DMRhttps://github.com/jbossas/jboss-dmrUsed for All JSON and DMR parsing, which is used for a lot. No Known changes madeLGPL 2.1JBoss LogManagerhttps://github.com/jboss-logging/jboss-logmanagerUsed for Some logging and JBoss DMR. Commented missing loggersApache 2JBoss Logginghttps://github.com/jboss-logging/jboss-loggingNo Known Changes made. Used for some loggingUnknown LicenceJBoss Moduleshttps://github.com/jboss-modules/jboss-modulesUsed for the base of the class loader. Added a file for allowing me to load more mods.Apache 2 and XMPP LicenceModerocky Mirrorhttps://github.com/Moderocky/MirrorMIT Licence, Citation in the CreditsLicences FolderModerocky Mimichttps://github.com/Moderocky/MimicMIT Licence, MIT Licence, Citation in the CreditsLicences FolderASMhttps://asm.ow2.io/Some versions only. Used for Mimic. BSD3 ClauseThe MCForge team for making all those cool Example ProjectsStackoverflow and online tutorialsSee CreditsLicences folder for more info.First they ignore you. Then they laugh at you. Then they fight you. Then you Win. -Red Hat  Our Permissive Licence not only allows you to, but encourages you to use all our assets, or redistribute the mod in any way you like, even for profit.FeatureCreepMC 4 and Newer comes bundled with Open Source software which have different Licences, though they are still permissive. See Credits Section for Details.Our Discord is: https://discord.gg/H76qe3zc3WNOTE: Make sure you download the version of the mod for the correct MC version and the Correct ModLoader, and the correct channel, mod Loaders are often at the end of the file Mod Loaders include Forge|Fabric|Rift|LiteLoader|Meddle|Risugami|LitLaunch|Quilt|RealML and othersChannels are ESR (Most Commonly Labelled Release), Nightly (Most commonly labelled Beta), and Bleeding Nightly (Most Commonly Labelled Alpha)Also make sure that your that if you are using a Beta Version of Minecraft (soon to be supported by FC),  has the b at the end of the of the version e.g. 1.7.3b (except for even older versions), if you are not using a Beta or older version of Minecraft, avoid the letter at the end of the MC name.When FeatureCreepMC versions for Before Release 1.3  Minecraft, for some mod loaders make sure you download the client version for single player, and the server version for a multiplayer server.FeatureCreep Legacy (NO LONGER REOMMENDED ONLY FOR ARCHIVAL PURPOSES, We recommend FeatureCreep 4 now)***STARTING VERSION 4 THIS MOD WILL BE A MOD LOADER AND API***Versions 3/2,x Do not have this Feature. Please Note the Loader in its current state has lots of issues and almost no content is in them yet, if you want content go for either 3 Nightly or 2,4 ESRThis mod aims to add many features from many mods from past versions of Minecraft and current ones as well as from other games, and make our own multi-version, multi-game mod which has features and ideas from many of your favourite mods of the past. This can be helpful as many mods were not updated, or some computers run older versions of Minecraft Better, or it is a feature not even within Minecraft.Some things include Emerald Armour, Amethyst Armour, Sapphire Armour, Optimised Tools, Oil, A tool which can mine a huge amount of stone leaving only the Ores, many new resources, many kinds of Golden (Butter) foods, and more.We currently have builds for Forge 1.6.4,Forge&LiteLoader&Meddle 1.12.2, Forge 1.16.5, Rift 1.13.2, Fabric & Forge 1.17.x, Forge & Fabric 1.18.x, Fabric 1.19 Secret Experimental, but we plan to support more in the future.We only use Original Textures, Models, or Code unless we have explicit permission from the authors.Images Coming SoonCURRENT VERSIONS ***PLEASE READ**** (Outdated)4.0 ESR PreReleases Recommended3,0 Nighly  Only recommended for content on supported versions2,4ESR Only recommended for content

amerigovespuccip

Log In Required

Accessing certain features in our website requires authentication

Sign In

Or if you do not have an account

Create an account
Post is saved
Please fill in all the necessary fields!
Mod version does not match with the version of selected modpack
Select the language

After changing the language website content will be completely translated to the selected language and you can view translated versions of available posts.