Jump to content

Recommended Posts

Posted

How can I use a universal bucket in custom advancements?

I need "inventory_changed" trigger with filled universal bucket.

An example from Choonster does not work: https://github.com/Choonster-Minecraft-Mods/TestMod3/blob/1.12.1/src/main/resources/assets/testmod3/recipes/_factories.json

 

Trigger:

"trigger": "minecraft:inventory_changed",
            "conditions": {
                "items": [
                    {
                        "type": "mist:filled_universal_bucket",
                        "fluid": "mist_acid"
                    }
                ]
            }

 

The console writes the following:

"There is no ItemPredicate of type mist:filled_universal_bucket..."

 

I think this is because the factory returns an ingredient, not an item.

 

Help!

Sorry, I don't speak English very well...

Posted

The factory is for recipes, you need to register ItemPredicate to ItemPredicates.

I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP)

II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.

Posted (edited)

I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP)

II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.

Posted

Alternatively, there is actually a way to make a more "code based" custom trigger where you make a simple JSON trigger that always fires and then just call it when you want it to fire in code. I have an example here: http://jabelarminecraft.blogspot.com/p/minecraft-modding-custom-triggers-aka.html

 

The JSON system is great for combining existing triggers and conditions (and probably can be made to work for your case) but it sort of an "indirect" system where it tries to fire and then is filtered based on predicates and such. I think there are a lot of cases in modding where your trigger is more unusual and it makes sense to have a trigger that always fires when you call it.

 

Note: Also I have to say that some of my longest debugging efforts have been related to problems with JSON files. The problem with moving logic to JSON files is that your IDE doesn't help you much with checking the logical stuff. Your IDE can ensure you have a properly formed JSON and can format and color code to make it easier to read, but it really doesn't have a sense of whether it will execute the way you want. And then when it doesn't work you actually have to debug it is complicated to trace because it all funnels through some pretty complicated JSON deserializer code.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Posted

You can do more complicated things as well, the magic happens inside the trigger() and test() functions.

 

Basically just make the test function check against whatever values you want to pass when you call the trigger in the code.

https://github.com/Draco18s/ReasonableRealism/blob/1.12.1/src/main/java/com/draco18s/hardlib/api/advancement/DistanceTraveledTrigger.java#L83-L85

 

It'll throw errors, of course, all you have to do is work backwards to fix it. test() is called from trigger(), so fix that next:

https://github.com/Draco18s/ReasonableRealism/blob/1.12.1/src/main/java/com/draco18s/hardlib/api/advancement/DistanceTraveledTrigger.java#L116-L120

 

Now your trigger call happens wherever you want to trigger the event from, just have to pass in the appropriate values.  If you want to let the json control some values, then head to the instance internal class, declare the class properties to hold them (and which you may already have in your test() method!)

https://github.com/Draco18s/ReasonableRealism/blob/1.12.1/src/main/java/com/draco18s/hardlib/api/advancement/DistanceTraveledTrigger.java#L74-L75

And then head over to deserialize:

https://github.com/Draco18s/ReasonableRealism/blob/1.12.1/src/main/java/com/draco18s/hardlib/api/advancement/DistanceTraveledTrigger.java#L69

 

Lastly, you need to pass the deserialized values to the instance constructor.

https://github.com/Draco18s/ReasonableRealism/blob/1.12.1/src/main/java/com/draco18s/hardlib/api/advancement/BreakBlockTrigger.java#L76-L117

And save them to the fields you created

https://github.com/Draco18s/ReasonableRealism/blob/1.12.1/src/main/java/com/draco18s/hardlib/api/advancement/DistanceTraveledTrigger.java#L78-L80

 

Add whatever's needed. I used an enum and used a string->enum parse already built into Java. If you want blocks/blockstates or items, look at the existing vanilla classes that use those and just copy-paste the deserialization bits over. Other types should be pretty easy.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted (edited)

Draco, I think the "problem" I have with the system is to me the idea of a trigger is that once I call it, it should trigger. Instead, the system is designed to sort of filter the triggers so you call the trigger but it still may not match all the conditions. The idea of calling a trigger and it still having to test if it really triggers just seems unnatural to me.

 

The reason they did that is they wanted to allow the logic to be controlled and extended by JSON, presumably because then resource packs and people who don't know how to code well could still do some cool stuff. However, if you're already coding in Java (and assuming you're not specifically trying to enable people to replace your logic with resource packs) it makes a lot more sense to me to just trigger directly.

 

In other words, just look at how much you just wrote about what needs to be done. Also you're a strong programmer who's comfortable with serializers, factories, enums, and such so it is easy for you. I can do those things too, but not as well and I generally like simplicity so it is a lot easier for me to simply trigger directly in code. And just imagine how much trouble all those people who are trying to mod while struggling with Java will have.

 

For example, if you wanted to do something like have an advancement to trigger when you're killing a bat while simultaneously jumping and holding a custom sword, it is just one line of Java to instantiate it, one line of Java to register it (actually I put them the instances in an array so don't even need that), and one line of Java wherever in the code it makes sense to trigger it. I don't need to make predicates or fiddle with any JSON at all. If I want another advancement where for example you need to be playing a specific record inside a specific structure, same thing -- between two and three lines of code and its working.

 

I just think the JSON system is more suitable for allowing other people to modify your advancements (which may be important for some people) but is much less efficient and way more error-prone compared to if you just code it.

Edited by jabelar

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Posted (edited)
  On 9/24/2017 at 2:05 AM, jabelar said:

Draco, I think the "problem" I have with the system is to me the idea of a trigger is that once I call it, it should trigger. Instead, the system is designed to sort of filter the triggers so you call the trigger but it still may not match all the conditions. The idea of calling a trigger and it still having to test if it really triggers just seems unnatural to me.

Expand  

Think about this for a second:

Distance traveled by rail, say.

You want 2 different achievements, one at 1,000 blocks and one at 10,000.


Which would you rather do:

if(distance > 1000) { OneK.trigger(); }
if(distance > 10000) { TenK.trigger(); }

Where OneK and TenK are two separate classes: one that checks for the trigger "oneK" and the other checks for "tenK".

 

Or:

OneK.trigger(distance);
TenK.trigger(distance);

Where OneK and TenK are the same class with the value that they trigger at controlled by a resource-pack-modifiable JSON data value?

(Now, 1K and 10K distance traveled probably shouldn't ever be modified from those values, they wouldn't make sense, but the idea that achievement trigger conditions are generic and resource-pack-modifiable in the general case has a pretty strong argument: afterall, the triggers on recipes work this way and I don't think you'd argue for chanting each recipe trigger to be a unique class).

 

  On 9/24/2017 at 2:05 AM, jabelar said:

In other words, just look at how much you just wrote about what needs to be done. Also you're a strong programmer who's comfortable with serializers, factories, enums, and such so it is easy for you.

Expand  


It's literally ten lines of code.

1, 2: the test
3, 4: the trigger
5, 6: the deserialization
7,8: the constructor

9: the class field

10: the place where you call trigger() (which you'd have to write anyway)

 

And every single piece falls from the previous one. You edit the test to take a different parameter? Trigger throws an IDE red underline error on trigger. So you fix that.  If you aren't reading any values from the JSON file, that's all you need (I have one like that). If you are reading a value from the JSON file, you start again in test(), checking against a non-existent field. That's an error, so you create the field and assign a value to it in the constructor. Now the deserialization has a red line, so you parse some values from the JSON object.  99% of what you do is either going to be a simple object (float, int, string, enum) or already done in an existing trigger (block, item). You add those lines, pass the values to the constructor....and you're done.  You've touched literally 10 lines of code for a single configurable value. Each additional value only adds 3 lines (as the remainder touch lines that would be touched for a single value anyway).

Edited by Draco18s

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

Guys, guys!
Thanks for the help, but the custom trigger will not help me.
I need to look for a Universal Bucket in the vanilla trigger minecraft:inventory_changed.
Custom trigger will require a custom call. And this is a bit stupid.

 

Perhaps, all the same, will you help me register my own ItemPredicate?

 

P.S. I know the custom trigger system.

Sorry, I don't speak English very well...

Posted

The vanilla ItemPredicate class (used by the inventory_changed trigger) supports NBT, as documented on the wiki

 

You can also register your own ItemPredicate implementations, as I explain in this thread.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

  • 1 month later...
Posted

Encountered this myself today and did a little research.  Choonster is exactly right about NBT & ItemPredicate, but it wasn't clear to me just what should be in the NBT.  With a little research, I learned that something of this form works:

"criteria": {
    "etchacid_bucket": {
      "trigger": "minecraft:inventory_changed",
      "conditions": {
        "items": [
          {
            "item": "forge:bucketfilled",
            "nbt": "{FluidName:\"etchacid\",Amount:1000}"
          }
        ]
      }
    }
  }

So, the item needs to be "forge:bucketfilled", and the NBT includes FluidName and Amount tags (it's a serialized FluidStack, to be exact).  The fluid name is of course the name under which you registered your fluid, and doesn't have to be from your mod.

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

    • Did you run the Vanilla Minecraft Version before? So if you want to install Forge 1.20.1, make sure you run Minecraft 1.20.1 before (not the latest version)   If you have further issues, use another Launcher like MultiMC or AT Launcher
    • ok that worked , until it didnt. i got pehkui out and some other mods that were simply not compatible anymore and the game actually starts now. new problem arose when i tried to create a world i get the MouseClicked error. ppl on reddit said i needed to allocate more ram, which i did but ive never had any problem with ram allocation before. thanks in advance here is the new log https://pastebin.com/DvRPWey1
    • Hello, I've tried to install Forge at least 10 times but nothing works as I want. I get an error message. I've already watched a lot of videos on this topic and nothing works, can anyone help me?  
    • [17:58:36] [main/INFO]: ModLauncher running: args [--username, Shadogaki, --version, forge-47.4.0, --gameDir, C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack, --assetsDir, C:\Users\Alix\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, 8f1326b8fe794ab8b3edbab908381f6a, --accessToken, ????????, --clientId, NmMyNTdkZmItMGFjNy00ZmRmLWIwMTctM2YxMjUwZDQyMDY3, --xuid, 2535442815048669, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\Alix\curseforge\minecraft\Install\quickPlay\java\1743868714818.json, --launchTarget, forgeclient, --fml.forgeVersion, 47.4.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [17:58:36] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.8 by Microsoft; OS Windows 11 arch amd64 version 10.0 [17:58:37] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [17:58:37] [main/INFO]: Trying GL version 4.6 [17:58:37] [main/INFO]: Requested GL version 4.6 got version 4.6 [17:58:37] [pool-2-thread-1/INFO]: GL info: AMD Radeon RX 7600 GL version 4.6.0 Core Profile Context 24.12.1.241127, ATI Technologies Inc. [17:58:38] [main/INFO]: Starting Essential Loader (stage2) version 1.6.3 (285f951adc7537f49ae3ef9fc0d2fd3e) [stable] [17:58:38] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/Alix/curseforge/minecraft/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [17:58:38] [main/INFO]: Found mod file [1.20.1-forge]-Epic-Knights-9.23.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file [1.20.1] SecurityCraft v1.9.12.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file additional_lights-1.20.1-2.1.7.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file aileron-1.20.1-forge-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file alexsdelight-1.5.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file alexsmobs-1.22.9.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file AmbientEnvironment-forge-1.20.1-11.0.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file architectury-9.2.14-forge.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file arrzees-multiverse-v1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file astikorcarts-1.20.1-1.1.8.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file born_in_chaos_[Forge]1.20.1_1.6.3.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file BridgingMod-2.5.1+1.20.1.forge-release.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file butcher-3.4-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file caelus-forge-3.2.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file carryon-forge-1.20.1-2.1.2.7.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file cc-tweaked-1.20.1-forge-1.113.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file chestcavity-1.20.1-2.17.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file Choups_Drakvyrn_Mod_(v2.5.0)_for_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file citadel-2.6.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file cloth-config-11.1.136-forge.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file cofh_core-1.20.1-11.0.2.56.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file collective-1.20.1-8.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file coroutil-forge-1.20.1-1.3.7.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file corpse-forge-1.20.1-1.0.20.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file create-1.20.1-6.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file create_kart-2.3.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file create_radar-0.1.56mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file createbigcannons-5.8.2-mc.1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file createnuclear-1.2.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file createoreexcavation-1.20-1.6.2.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file createrailwaysnavigator-forge-1.20.1-beta-0.7.2.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file createteleporters2.3-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file curios-forge-5.12.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file dampened-v1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file DistantHorizons-fabric-forge-2.3.0-b-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file dummmmmmy-1.20-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file effortlessbuilding-1.20.1-3.10.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file EFMCompat 2.0.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file ElytraBombing-Forge-1.20.1-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file elytraslot-forge-6.4.4+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file elytratrims-forge-3.5.7+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file embeddium-0.3.31+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file endersdelight-1.20.1-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file entity_model_features_forge_1.20.1-2.4.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file entity_sound_features_forge_1.19.4+-0.4.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file entity_texture_features_forge_1.20.1-6.2.9.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file epicfight-forge-20.9.7-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file fabric-api-0.92.2+1.11.12+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file falchionmoveset-20.8.2.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file fantasy_armor-forge-0.9-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file farlandsreborn-1.0.0-1.20.x.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file FarmersDelight-1.20.1-1.2.7.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file ferritecore-6.0.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file fusion-1.2.5-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file fzzy_config-0.6.8+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file geckolib-forge-1.20.1-4.7.1.2.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file GeckoLibOculusCompat-Forge-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file golem_spawn_animation-1.0.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file grabbymobs-1.20.1-1.6.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file GuardRibbits-1.20.1-Forge-1.0.7.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file ImmediatelyFast-Forge-1.5.0+1.20.4.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file immersive_aircraft-1.2.2+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file interiors-0.5.6+forge-mc1.20.1-local.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file jei-1.20.1-forge-15.20.0.106.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file Kiwi-1.20.1-Forge-11.8.29.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file kotlinforforge-4.11.0-all.jar of type LIBRARY with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file kubejs-forge-2001.6.5-build.16.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file leawind_third_person-v2.2.0-mc1.20-1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file legendarymonsters-1.8.1 MC 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file Lets_Forge_BronzeAndIron_[1_20_1]_5_0.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file Log-Begone-Forge-1.20.1-1.0.8.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file mahoutsukai-1.20.1-v1.34.78.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file Matmos-7.0-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file mojang-logo-animation-Forge-1.20.1-16f0652.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file moonlight-1.20-2.13.81-forge.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file mowziesmobs-1.7.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file northstar-0.1cb-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file notenoughanimations-forge-1.9.3-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file OctoLib-FORGE-0.5.0.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file oculus-flywheel-compat-forge1.20.1+1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file oculus-mc1.20.1-1.8.0.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file oculusparticlefix-1.0.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file palladium-4.1.12+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file pantheonsent-1.1.0+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file Paraglider-forge-20.1.3.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file ParCool-1.20.1-3.3.1.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file particle_core-0.2.5+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file Patchouli-1.20.1-84.1-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file Pehkui-3.8.2+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file Perception-FORGE-0.1.2.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file Placeables 1.9.2.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file pointblank-forge-1.20.1-1.9.6.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file pomkotsmechs-forge-0.0.1-alpha.4.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file pomkotsmechsextension-forge-0.0.1-alpha.3.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file protection_pixel-1.1.6-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file Psychadelic-Chemistry_1.20.1-1.4.5.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file Quark-4.0-461.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file Rats-1.20.1-8.1.3.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file realcamera-1.20.1-forge-0.6.1-beta.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file rhino-forge-2001.2.3-build.10.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file Ribbits-1.20.1-Forge-3.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file Shrink-1.20.1-1.4.5.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file skinlayers3d-forge-1.7.5-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file sliceanddice-forge-3.4.0.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file smallships-forge-1.20.1-2.0.0-b1.4.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file sound-physics-remastered-forge-1.20.1-1.4.10.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file starlight-1.1.2+forge.1cda73c.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file Steam_Rails-1.6.7+forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file TCTcore-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file travelersbackpack-forge-1.20.1-9.1.34.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file treeharvester-1.20.1-9.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file trimmable_tools-forge-2.0.5.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file twilightforest-1.20.1-4.3.2508-universal.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file vanillaIcecreamFix-1.0.1-forge-beta.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file visuality-forge-2.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file wakes-1.20.1-Forge-1.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file watut-forge-1.20.1-1.2.3.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file WeaponsOfMiracles-20.1.8.5.6.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file wither_spawn_animation-1.5-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file Xaeros_Minimap_25.2.0_Forge_1.20.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file XaerosWorldMap_1.39.4_Forge_1.20.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file yet_another_config_lib_v3-3.6.6+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file YungsApi-1.20-Forge-4.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file YungsBetterEndIsland-1.20-Forge-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file YungsBetterMineshafts-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/INFO]: Found mod file Zeta-1.0-29.jar of type MOD with provider {mods folder locator at C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods} [17:58:38] [main/WARN]: Mod file C:\Users\Alix\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.4.0\fmlcore-1.20.1-47.4.0.jar is missing mods.toml file [17:58:38] [main/WARN]: Mod file C:\Users\Alix\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.4.0\javafmllanguage-1.20.1-47.4.0.jar is missing mods.toml file [17:58:38] [main/WARN]: Mod file C:\Users\Alix\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.4.0\lowcodelanguage-1.20.1-47.4.0.jar is missing mods.toml file [17:58:38] [main/WARN]: Mod file C:\Users\Alix\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.4.0\mclanguage-1.20.1-47.4.0.jar is missing mods.toml file [17:58:38] [main/INFO]: Found mod file fmlcore-1.20.1-47.4.0.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@75483843 [17:58:38] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@75483843 [17:58:38] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@75483843 [17:58:38] [main/INFO]: Found mod file mclanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@75483843 [17:58:38] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@75483843 [17:58:38] [main/INFO]: Found mod file forge-1.20.1-47.4.0-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@75483843 [17:58:39] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [17:58:39] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [17:58:39] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: architectury. Using Mod File: C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack\mods\architectury-9.2.14-forge.jar [17:58:39] [main/INFO]: Found 79 dependencies adding them to mods collection [17:58:39] [main/INFO]: Found mod file fabric-transfer-api-v1-3.3.5+631c9cd677.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-dimensions-v1-2.1.54+8005d10d77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-renderer-api-v1-3.2.1+cf68abbe77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file kfflang-4.11.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file Ponder-Forge-1.20.1-1.0.52.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file player-animation-lib-forge-1.0.2-rc1+1.20.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-item-api-v1-2.1.28+4d0bbcfa77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-model-loading-api-v1-1.0.3+6274ab9d77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file palladiumcore-forge-1.0.1+1.20.1-forge.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file imageio-webp-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-rendering-fluids-v1-3.0.28+4ac5e37a77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-screen-handler-api-v1-1.3.30+561530ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-models-v0-0.4.2+7c3892a477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-resource-loader-v0-0.11.10+bcd08ed377.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file snakeyaml-2.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-rendering-v1-3.0.8+66e9a48f77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-renderer-indigo-1.5.2+b5b2da4177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-loader-2.6.0+0.15.0+1.20.1-full.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-convention-tags-v1-1.5.5+fa3d1c0177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file ritchiesprojectilelib-2.0.0-dev+mc.1.20.1-forge-build.182.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-mining-level-api-v1-2.1.50+561530ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file imageio-core-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-command-api-v1-1.2.34+f71b366f77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-block-view-api-v2-1.0.1+0767707077.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file MixinExtras-0.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-command-api-v2-2.2.13+561530ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-data-attachment-api-v1-1.0.0+30ef839e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file mixinextras-forge-0.2.0-beta.6.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file common-lang-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file jzlib-1.1.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file midnightlib-1.4.1-forge.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file jankson-1.2.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-screen-api-v1-2.0.8+45a670a577.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-particles-v1-1.1.2+78e1ecb877.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file gson-0.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-content-registries-v0-4.0.11+a670df1e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file Reflect-1.3.4.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-transitive-access-wideners-v1-4.3.1+1880499877.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file dragonlib-forge-1.20.1-2.2.24.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-game-rule-api-v1-1.0.40+683d4da877.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-api-base-0.4.31+ef105b4977.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-api-lookup-api-v1-1.6.36+67f9824077.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-blockrenderlayer-v1-1.1.41+1d0da21e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file mixinsquared-forge-0.1.2-beta.6.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file common-io-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file Registrate-MC1.20-1.3.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file json-0.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-block-api-v1-1.0.11+0e6cb7f777.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file httpmime-4.5.10.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-resource-conditions-api-v1-2.3.8+9e342fc177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file kffmod-4.11.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file kfflib-4.11.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file cobalt-0.9.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file flywheel-forge-1.20.1-1.0.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-item-group-api-v1-4.0.12+c9161c2d77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file common-image-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file jcpp-1.4.14.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-biome-api-v1-13.0.13+dc36698e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-entity-events-v1-1.6.0+4ca7515277.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file sherdsapi-4.0.4+Forge.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file MathParser.org-mXparser-5.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-registry-sync-v0-2.3.3+1c0ea72177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file imageio-metadata-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-recipe-api-v1-1.0.21+514a076577.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-loot-api-v2-1.2.1+eb28f93e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-object-builder-api-v1-11.1.3+4bd998fa77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file conditional-mixin-forge-0.6.2.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-rendering-data-attachment-v1-0.3.37+a6081afc77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-networking-api-v1-1.3.11+503a202477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-sound-api-v1-1.0.13+4f23bd8477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-message-api-v1-5.1.9+52cc178c77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file tomlkt-jvm-0.3.7.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-lifecycle-events-v1-2.2.22+afab492177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-data-generation-api-v1-12.3.4+369cb3a477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-events-interaction-v0-0.6.2+0d0bd5a777.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file MixinSquared-0.1.2-beta.6.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-key-binding-api-v1-1.0.37+561530ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found mod file fabric-client-tags-api-v1-1.1.2+5d6761b877.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1ec22831 [17:58:39] [main/INFO]: Found Kotlin-containing mod Jar[union:/C:/Users/Alix/curseforge/minecraft/Instances/ulltimate%20modpack/essential/libraries/forge_1.20.1/kotlin-for-forge-4.3.0-slim.jar%23293!/], checking whether we need to upgrade it.. [17:58:39] [main/INFO]: Found outdated Kotlin core libs 0.0.0 (we ship 1.9.23) [17:58:39] [main/INFO]: Found outdated Kotlin Coroutines libs 0.0.0 (we ship 1.8.0) [17:58:39] [main/INFO]: Found outdated Kotlin Serialization libs 0.0.0 (we ship 1.6.3) [17:58:39] [main/INFO]: Generating jar with updated Kotlin at C:\Users\Alix\AppData\Local\Temp\kff-updated-kotlin-4800440146605706933-4.3.0-slim.jar [17:58:39] [main/INFO]: Found Kotlin-containing mod Jar[union:/C:/Users/Alix/curseforge/minecraft/Instances/ulltimate%20modpack/mods/kotlinforforge-4.11.0-all.jar%23359!/], checking whether we need to upgrade it.. [17:58:39] [main/INFO]: Found up-to-date Kotlin core libs 2.0.0 (we ship 1.9.23) [17:58:39] [main/INFO]: Found up-to-date Kotlin Coroutines libs 1.8.1 (we ship 1.8.0) [17:58:39] [main/INFO]: Found up-to-date Kotlin Serialization libs 1.6.3 (we ship 1.6.3) [17:58:39] [main/INFO]: All good, no update needed: Jar[union:/C:/Users/Alix/curseforge/minecraft/Instances/ulltimate%20modpack/mods/kotlinforforge-4.11.0-all.jar%23359!/] [17:58:42] [main/INFO]: Compatibility level set to JAVA_17 [17:58:42] [main/ERROR]: Mixin config mixins.mla.json does not specify "minVersion" property [17:58:42] [main/ERROR]: Mixin config fabric-item-group-api-v1.mixins.json does not specify "minVersion" property [17:58:42] [main/ERROR]: Mixin config fabric-item-group-api-v1.client.mixins.json does not specify "minVersion" property [17:58:42] [main/ERROR]: Mixin config fabric-item-api-v1.client.mixins.json does not specify "minVersion" property [17:58:42] [main/ERROR]: Mixin config palladiumcore-common.mixins.json does not specify "minVersion" property [17:58:42] [main/ERROR]: Mixin config palladiumcore.mixins.json does not specify "minVersion" property [17:58:42] [main/ERROR]: Mixin config fabric-data-attachment-api-v1.mixins.json does not specify "minVersion" property [17:58:42] [main/ERROR]: Mixin config fabric-data-attachment-api-v1.client.mixins.json does not specify "minVersion" property [17:58:42] [main/ERROR]: Mixin config entity_model_features.mixins.json does not specify "minVersion" property [17:58:42] [main/ERROR]: Mixin config geckoanimfix.forge.mixins.json does not specify "minVersion" property [17:58:42] [main/ERROR]: Mixin config yacl.mixins.json does not specify "minVersion" property [17:58:42] [main/INFO]: Successfully loaded Mixin Connector [com.sonicether.soundphysics.MixinConnector] [17:58:42] [main/INFO]: Successfully loaded Mixin Connector [ca.spottedleaf.starlight.mixin.MixinConnector] [17:58:42] [main/INFO]: Propagating FML mod list to Fabric Loader [17:58:42] [main/INFO]: Launching target 'forgeclient' with arguments [--version, forge-47.4.0, --gameDir, C:\Users\Alix\curseforge\minecraft\Instances\ulltimate modpack, --assetsDir, C:\Users\Alix\curseforge\minecraft\Install\assets, --uuid, 8f1326b8fe794ab8b3edbab908381f6a, --username, Shadogaki, --assetIndex, 5, --accessToken, ????????, --clientId, NmMyNTdkZmItMGFjNy00ZmRmLWIwMTctM2YxMjUwZDQyMDY3, --xuid, 2535442815048669, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\Alix\curseforge\minecraft\Install\quickPlay\java\1743868714818.json] [17:58:42] [main/WARN]: Reference map 'mixins.golem_spawn_animation.refmap.json' for mixins.golem_spawn_animation.json could not be read. If this is a development environment you can ignore this message [17:58:42] [main/INFO]: Loaded configuration file for Embeddium: 228 options available, 3 override(s) found [17:58:42] [main/INFO]: Searching for graphics cards... [17:58:42] [main/INFO]: Found graphics card: GraphicsAdapterInfo[vendor=UNKNOWN, name=Parsec Virtual Display Adapter, version=DriverVersion=0.45.0.0] [17:58:42] [main/INFO]: Found graphics card: GraphicsAdapterInfo[vendor=AMD, name=AMD Radeon RX 7600, version=DriverVersion=32.0.12033.1030] [17:58:42] [main/INFO]: Starting Essential v1.3.5.11 (#c76e773d16) [stable] [17:58:42] [main/WARN]: Reference map 'mixins.wither_spawn_animation.refmap.json' for mixins.wither_spawn_animation.json could not be read. If this is a development environment you can ignore this message [17:58:42] [main/WARN]: Reference map 'guardribbits.refmap.json' for guardribbits.mixins.json could not be read. If this is a development environment you can ignore this message [17:58:42] [main/WARN]: Reference map 'guardribbits.refmap.json' for guardribbits_forge.mixins.json could not be read. If this is a development environment you can ignore this message [17:58:43] [main/WARN]: Reference map 'smallships-forge-refmap.json' for smallships.mixins.json could not be read. If this is a development environment you can ignore this message [17:58:43] [main/WARN]: Reference map 'coroutil.refmap.json' for coroutil.mixins.json could not be read. If this is a development environment you can ignore this message [17:58:43] [main/WARN]: Error loading class: vazkii/quark/base/module/ModuleFinder (java.lang.ClassNotFoundException: vazkii.quark.base.module.ModuleFinder) [17:58:43] [main/WARN]: Error loading class: mekanism/client/render/entity/RenderFlame (java.lang.ClassNotFoundException: mekanism.client.render.entity.RenderFlame) [17:58:43] [main/WARN]: Error loading class: mekanism/client/render/armor/MekaSuitArmor (java.lang.ClassNotFoundException: mekanism.client.render.armor.MekaSuitArmor) [17:58:44] [main/WARN]: Error loading class: de/teamlapen/vampirism/client/renderer/entity/layers/VampirePlayerHeadLayer (java.lang.ClassNotFoundException: de.teamlapen.vampirism.client.renderer.entity.layers.VampirePlayerHeadLayer) [17:58:44] [main/WARN]: @Mixin target de.teamlapen.vampirism.client.renderer.entity.layers.VampirePlayerHeadLayer was not found mixins.epicfight.json:VampirismMixinVampirePlayerHeadLayer [17:58:44] [main/WARN]: Error loading class: de/teamlapen/werewolves/client/render/layer/HumanWerewolfLayer (java.lang.ClassNotFoundException: de.teamlapen.werewolves.client.render.layer.HumanWerewolfLayer) [17:58:44] [main/WARN]: @Mixin target de.teamlapen.werewolves.client.render.layer.HumanWerewolfLayer was not found mixins.epicfight.json:WerewolvesMixinHumanWerewolfLayer [17:58:44] [main/WARN]: Error loading class: me/cominixo/betterf3/modules/TargetModule (java.lang.ClassNotFoundException: me.cominixo.betterf3.modules.TargetModule) [17:58:44] [main/WARN]: @Mixin target me.cominixo.betterf3.modules.TargetModule was not found securitycraft.mixins.json:f3.BetterF3TargetModuleMixin
  • Topics

×
×
  • Create New...

Important Information

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