Jump to content

Recommended Posts

Posted

Hi, i made a keybind and when i press it it should modify my player, like the rotation of any part or something but it is doing nothing

@SubscribeEvent
    public static void playerRotations(RenderPlayerEvent.Pre event)
    {
        if(ModKeys.testKey.isKeyDown())
        {
            event.getPlayer().sendStatusMessage(new StringTextComponent("Hola"),false);
            event.getRenderer().getEntityModel().bipedRightArm.rotateAngleX = 180f;
        }
    }

It is sending the message but is not rotating my arm, or head or anything that i put after .biped, i also tried RenderPlayerEvent.Post and is not working neither,as I said is not the playerRotations() event because is displaying the message and i have more events in this class that does work, i tried using math:

event.getRenderer().getEntityModel().bipedRightArm.rotateAngleX = (float) Math.toRadians(180f);

but nothing is working, i need a solution because i made this in 1.12.2 and it worked, the only thing that changed was .getEntityModel(), in 1.12.2 it was getMainModel() 

 

Posted
  On 11/28/2021 at 5:45 PM, ElTotisPro50 said:

Is not working :(

Expand  

check if your event is getting fired, first (and you must be in 3rd person on singleplayer for it to work).

second, modifying those values doesn't do anything. It is already rendered (in post) or the values will be overwritten for rendering (in pre). You need to cancel the rendering and do it yourself. I do it with the field model#visible = false in pre, then in post, set it to true, then modify the rotation points and angles, then render it using the render method that takes the buffer, vertex builder, ...

it would be much easier to use rightArmPose = ... in PRE. 

Posted
  On 11/30/2021 at 8:20 PM, matthew123 said:

check if your event is getting fired, first (and you must be in 3rd person on singleplayer for it to work).

second, modifying those values doesn't do anything. It is already rendered (in post) or the values will be overwritten for rendering (in pre). You need to cancel the rendering and do it yourself. I do it with the field model#visible = false in pre, then in post, set it to true, then modify the rotation points and angles, then render it using the render method that takes the buffer, vertex builder, ...

it would be much easier to use rightArmPose = ... in PRE. 

Expand  

Ok i didnt undertand absolutely anything, even that i learned minecraft modding 1 year ago, can you post a image with code of how can i do that please?

Posted
  On 11/30/2021 at 8:52 PM, ElTotisPro50 said:

Ok i didnt undertand absolutely anything, even that i learned minecraft modding 1 year ago, can you post a image with code of how can i do that please?

Expand  

I myself learned modding a couple weeks ago and did not have any trouble following the suggestion from dieseben07 which was: "cancel the event and do the rendering yourself". If you want to get anywhere with modding, you need to learn it properly.

On PlayerRenderEvent.pre, take the arm model, and set the visible field to false. In RenderPlayerEvent.post, set the field to true, then adjust the x, y, z fields of the arm model (the rotation points). Y is either 20 or 17.5 if crouching (i believe). Use some trigonometry to calculate the rest from the player's rotations. Then you have the xRot, ... fields which you can modify. You might need some math for that too.

After you're done modifying the pose, call render for the arm model. It takes the matrix stack from the event, a vertex builder, ... you can see an example of using this from the vanilla rendering code. I actually learned how to do this by studying vanilla code. You should too! All the code you need is there.

Posted
  On 11/30/2021 at 9:13 PM, matthew123 said:

I myself learned modding a couple weeks ago and did not have any trouble following the suggestion from dieseben07 which was: "cancel the event and do the rendering yourself". If you want to get anywhere with modding, you need to learn it properly.

On PlayerRenderEvent.pre, take the arm model, and set the visible field to false. In RenderPlayerEvent.post, set the field to true, then adjust the x, y, z fields of the arm model (the rotation points). Y is either 20 or 17.5 if crouching (i believe). Use some trigonometry to calculate the rest from the player's rotations. Then you have the xRot, ... fields which you can modify. You might need some math for that too.

After you're done modifying the pose, call render for the arm model. It takes the matrix stack from the event, a vertex builder, ... you can see an example of using this from the vanilla rendering code. I actually learned how to do this by studying vanilla code. You should too! All the code you need is there.

Expand  

Nope, i need a example with code, because i dont know what you mean by "On PlayerRenderEvent.Pre and .Post", im using a key event to work, RenderPlayerEvent is a minecraft class and i cant modify it, i dont know what you mean by that, even if that sound silly thats how i program, i cant just read a solution and do it because i dont know how to do it i need a example, most programers dont need a guide with examples but i do, even i know java, c++ and python

Posted
  On 12/1/2021 at 4:06 AM, ElTotisPro50 said:

Nope, i need a example with code, because i dont know what you mean by "On PlayerRenderEvent.Pre and .Post", im using a key event to work, RenderPlayerEvent is a minecraft class and i cant modify it, i dont know what you mean by that, even if that sound silly thats how i program, i cant just read a solution and do it because i dont know how to do it i need a example, most programers dont need a guide with examples but i do, even i know java, c++ and python

Expand  

You should read the documentation from mcforge.readthedocs.io.

"On RenderPlayerEvent.Pre" is exactly what is sounds like : on that event, do as instructed above.

"I even know java, c++ and python" irrelevant. Programming is not necessarily about how many languages you've learned, but how well you can use one of them. Just being familiar with an OOP language would have made it possible to study the vanilla code. 

I'll tell you again. On RenderPlayerEvent.Pre set the visible field on the rightArm model to false, and in post, set it to true, then set it's x, y, z position and rotation values (look at how vanilla does it). Then call the render method passing in the matrix from the event object. Also see how vanilla does it.

This example is not very good for practical purposes, but I hope is enough to satisfy the stack overflow trend:

@SubscribeEvent
public void renderPlayerPre(RenderPlayerEvent.Pre event) {
    event.getRenderer().getModel().rightArm.visible = false;
}
@SubscribeEvent
public void renderPlayerPost(RenderPlayerEvent.Post event) {
        PlayerEntity player = event.getPlayer();
        PlayerModel<AbstractClientPlayerEntity> model = event.getRenderer().getModel();
        ModelRenderer rightArm = model.rightArm;
        rightArm.visible = true;
        // rotation point
        rightArm.x = -MathHelper.cos((float) Math.toRadians(player.yRot)) * 5.0F;
        rightArm.y = 20;
        rightArm.z = -MathHelper.sin((float) Math.toRadians(player.yRot)) * 5.0F;
        // rotation
        rightArm.xRot = (float) Math.toRadians(42);
        rightArm.yRot = (float) -Math.toRadians(player.yBodyRot);
        rightArm.render(
                event.getMatrixStack(),
                event.getBuffers().getBuffer(RenderType.entitySolid(((AbstractClientPlayerEntity)player).getSkinTextureLocation())),
                Minecraft.getInstance().getEntityRenderDispatcher().getPackedLightCoords(player, 1f),
                OverlayTexture.NO_OVERLAY);
}

 

Posted (edited)
  On 12/1/2021 at 10:33 AM, matthew123 said:

You should read the documentation from mcforge.readthedocs.io.

"On RenderPlayerEvent.Pre" is exactly what is sounds like : on that event, do as instructed above.

"I even know java, c++ and python" irrelevant. Programming is not necessarily about how many languages you've learned, but how well you can use one of them. Just being familiar with an OOP language would have made it possible to study the vanilla code. 

I'll tell you again. On RenderPlayerEvent.Pre set the visible field on the rightArm model to false, and in post, set it to true, then set it's x, y, z position and rotation values (look at how vanilla does it). Then call the render method passing in the matrix from the event object. Also see how vanilla does it.

This example is not very good for practical purposes, but I hope is enough to satisfy the stack overflow trend:

@SubscribeEvent
public void renderPlayerPre(RenderPlayerEvent.Pre event) {
    event.getRenderer().getModel().rightArm.visible = false;
}
@SubscribeEvent
public void renderPlayerPost(RenderPlayerEvent.Post event) {
        PlayerEntity player = event.getPlayer();
        PlayerModel<AbstractClientPlayerEntity> model = event.getRenderer().getModel();
        ModelRenderer rightArm = model.rightArm;
        rightArm.visible = true;
        // rotation point
        rightArm.x = -MathHelper.cos((float) Math.toRadians(player.yRot)) * 5.0F;
        rightArm.y = 20;
        rightArm.z = -MathHelper.sin((float) Math.toRadians(player.yRot)) * 5.0F;
        // rotation
        rightArm.xRot = (float) Math.toRadians(42);
        rightArm.yRot = (float) -Math.toRadians(player.yBodyRot);
        rightArm.render(
                event.getMatrixStack(),
                event.getBuffers().getBuffer(RenderType.entitySolid(((AbstractClientPlayerEntity)player).getSkinTextureLocation())),
                Minecraft.getInstance().getEntityRenderDispatcher().getPackedLightCoords(player, 1f),
                OverlayTexture.NO_OVERLAY);
}

 

Expand  

rightArm.render( event.getMatrixStack(), event.getBuffers().getBuffer(RenderType.entitySolid(((AbstractClientPlayerEntity)player).getSkinTextureLocation())), Minecraft.getInstance().getEntityRenderDispatcher().getPackedLightCoords(player, 1f), OverlayTexture.NO_OVERLAY); has errors, im using the forge mappings :/, getEntityRenderDispatcher does not exist... im so angry because mojang ALL THE TIME has to change almost the entire code of minecraft, in 1.12.2 you needed 1 LINE OF CODE, wtf (There are like 3 things that doest exist, getEntityRenderDispatcher , getSkinTextureLocation, getPackedLightCoords(player, 1f))

Edited by ElTotisPro50
Posted
  On 12/1/2021 at 4:46 PM, ElTotisPro50 said:

rightArm.render( event.getMatrixStack(), event.getBuffers().getBuffer(RenderType.entitySolid(((AbstractClientPlayerEntity)player).getSkinTextureLocation())), Minecraft.getInstance().getEntityRenderDispatcher().getPackedLightCoords(player, 1f), OverlayTexture.NO_OVERLAY); has errors, im using the forge mappings :/, getEntityRenderDispatcher does not exist... im so angry because mojang ALL THE TIME has to change almost the entire code of minecraft, in 1.12.2 you needed 1 LINE OF CODE, wtf (There are like 3 things that doest exist, getEntityRenderDispatcher , getSkinTextureLocation, getPackedLightCoords(player, 1f))

Expand  

Then analyze the vanilla code and find the right names!!!

Posted
  On 12/1/2021 at 5:50 PM, matthew123 said:

Then analyze the vanilla code and find the right names!!!

Expand  

affter a bit of time this worked:

@SubscribeEvent
    public static void renderPlayerPre(RenderPlayerEvent.Pre event)
    {
        //here i was canceling the pre event so...
        event.getRenderer().getEntityModel().bipedLeftArm.showModel = false;
    }

    @SubscribeEvent
    public static void renderPlayerPost(RenderPlayerEvent.Post event)
    {
        PlayerEntity player = event.getPlayer();
        PlayerModel<AbstractClientPlayerEntity> model = event.getRenderer().getEntityModel();
        ModelRenderer rightArm = model.bipedLeftArm;
        rightArm.showModel = true;
        rightArm.render(
                event.getMatrixStack(),
                event.getBuffers().getBuffer(RenderType.getEntitySolid(((AbstractClientPlayerEntity)player).getLocationSkin())),
                Minecraft.getInstance().getRenderManager().getPackedLight(player, 1f), OverlayTexture.NO_OVERLAY);
    }

But just one more thing, i promess no more questions..., the hand is like this: https://imgur.com/a/KTVudC3, and there is no offsetX, Y, or Z, do i need arm.rotationPointSOMETHING to move the hand wherever i want?

Posted
  On 12/1/2021 at 6:21 PM, ElTotisPro50 said:

affter a bit of time this worked:

@SubscribeEvent
    public static void renderPlayerPre(RenderPlayerEvent.Pre event)
    {
        //here i was canceling the pre event so...
        event.getRenderer().getEntityModel().bipedLeftArm.showModel = false;
    }

    @SubscribeEvent
    public static void renderPlayerPost(RenderPlayerEvent.Post event)
    {
        PlayerEntity player = event.getPlayer();
        PlayerModel<AbstractClientPlayerEntity> model = event.getRenderer().getEntityModel();
        ModelRenderer rightArm = model.bipedLeftArm;
        rightArm.showModel = true;
        rightArm.render(
                event.getMatrixStack(),
                event.getBuffers().getBuffer(RenderType.getEntitySolid(((AbstractClientPlayerEntity)player).getLocationSkin())),
                Minecraft.getInstance().getRenderManager().getPackedLight(player, 1f), OverlayTexture.NO_OVERLAY);
    }

But just one more thing, i promess no more questions..., the hand is like this: https://imgur.com/a/KTVudC3, and there is no offsetX, Y, or Z, do i need arm.rotationPointSOMETHING to move the hand wherever i want?

Expand  

seriously, why don't you analyze the darn code? just look for float fields.

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

    • Oh wait - cracked Launchers are not supported  
    • Not Working it crashes again  https://mclo.gs/vIsbuvN
    • Add crash-reports with sites like https://mclo.gs/   Make a test without all Create addons - like Create Deco etc.        
    • My minecraft modpack crashes, whenever I try to start. [18:26:55] [main/INFO]: ModLauncher running: args [--username, {MINECRAFT_USERNAME}, --version, 1.20.1, --gameDir, C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana, --assetsDir, C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\meta\assets, --assetIndex, 5, --uuid, {MINECRAFT_UUID}, --accessToken, ❄❄❄❄❄❄❄❄, --clientId, c4502edb-87c6-40cb-b595-64a280cf8906, --xuid, 0, --userType, msa, --versionType, release, --width, 854, --height, 480, --launchTarget, forgeclient, --fml.forgeVersion, 47.4.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [18:26:55] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 21.0.7 by Oracle Corporation; OS Windows 11 arch amd64 version 10.0 [18:26:57] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [18:26:57] [main/INFO]: Trying GL version 4.6 [18:26:58] [main/INFO]: Requested GL version 4.6 got version 4.6 [18:26:58] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/Julian%20Trost/AppData/Roaming/ModrinthApp/meta/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23115!/ Service=ModLauncher Env=CLIENT [18:26:58] [pool-2-thread-1/INFO]: GL info: NVIDIA GeForce RTX 2070 SUPER/PCIe/SSE2 GL version 4.6.0 NVIDIA 576.40, NVIDIA Corporation [18:26:59] [main/INFO]: Found mod file [1.20.1] SecurityCraft v1.10.0.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file alexscaves-2.0.2.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file alexsmobs-1.22.9.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file allthetrims-3.4.3-forge+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file allurement-1.20.1-4.0.0.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file amendments-1.20-1.2.19.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Apotheosis-1.20.1-7.4.8.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file ApothicAttributes-1.20.1-1.3.7.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Aquaculture-1.20.1-2.5.5.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file aquamirae-6.API15.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file architectury-9.2.14-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file ars_nouveau-1.20.1-4.12.6-all.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file artifacts-forge-9.5.16.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file athena-forge-1.20.1-3.1.2.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file atmospheric-1.20.1-6.1.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file AttributeFix-Forge-1.20.1-21.0.4.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file automobility-0.4.2+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file autumnity-1.20.1-5.0.2.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file BadMobs-1.20.1-19.0.4.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file bagus_lib-1.20.1-5.3.0.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file balm-forge-1.20.1-7.3.29-all.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file biomeinfo-1.20.1-1.7.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file BiomesOPlenty-forge-1.20.1-19.0.0.96.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file blue_skies-1.20.1-1.3.31.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file blueprint-1.20.1-7.1.3.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file BOMD-Forge-1.20.1-1.1.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Bookshelf-Forge-1.20.1-20.2.13.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [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\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file camera-forge-1.20.1-1.0.20.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file catalogue-forge-1.20.1-1.8.0.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file CerbonsApi-Forge-1.20.1-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Chaosswords 4.2.0 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file charmofundying-forge-6.5.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file cherishedworlds-forge-6.1.7+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file chipped-forge-1.20.1-3.0.7.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file chloride-FORGE-mc1.20.1-v1.7.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file citadel-2.6.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file cloth-config-11.1.136-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Clumps-forge-1.20.1-12.0.0.4.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [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\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file collective-1.20.1-8.3.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file configured-forge-1.20.1-2.2.3.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Controlling-forge-1.20.1-12.0.2.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file copycats-3.0.0+mc.1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Corgilib-Forge-1.20.1-4.0.3.3.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [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\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file cosmeticarmorreworked-1.20.1-v1a.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file create-1.20.1-6.0.4.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file createdeco-2.0.3-1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file creeperoverhaul-3.0.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file cupboard-1.20.1-2.7.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file curios-forge-5.14.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file CustomNPCs-1.20.1-GBPort-Unofficial-20250429.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file customvillagertrades-forge-20.25.0.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file decoration-delight-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file decorative_blocks-forge-1.20.1-4.1.3.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Deep Dark Regrowth 1.2.6.1 - 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Delightful-1.20.1-3.7.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file deltaboxlib-2.1.1-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file dynamic-fps-3.9.4+minecraft-1.20.0-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file earth2java-forge-1.10.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file EasyMagic-v8.0.1-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file ecologics-forge-1.20.1-2.2.0.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file EffectTooltips-Forge-1.20.1-9.0.2.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file effortlessbuilding-1.20.1-3.10.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file elevatorid-1.20.1-lex-1.9.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file ElysiumAPI-1.20.1-1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file embeddium-0.3.31+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file emi-1.1.22+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file emi_enchanting-0.1.2+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file emi_loot-0.7.6+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file emiffect-forge-1.1.2+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file emitrades-forge-1.2.1+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Emojiful-Forge-1.20.1-4.2.0.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file emotecraft-for-MC1.20.1-2.2.7-b.build.50-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file EnchantmentDescriptions-Forge-1.20.1-17.1.19.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file endergetic-1.20.1-5.0.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file enderitemod-1.5.1-1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file endermanoverhaul-forge-1.20.1-1.0.4.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file endersdelight-forge-1.20.1-1.1.3.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file endrem_forge-5.3.3-R-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file environmental-1.20.1-4.0.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file everycomp-1.20-2.8.4-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file everythingcopper-1.20.1-2.3.4.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file explosiveenhancement-1.1.0-1.20.1-client-and-server.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file eyesoficeandfire-1.1.0-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [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\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file fallingleaves-1.20.1-2.1.2.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file FarmersDelight-1.20.1-1.2.7.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file fastasyncworldsave-1.20.1-2.4.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file FastLeafDecay-32.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file FastSuite-1.20.1-5.1.0.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file ferritecore-6.0.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file flib-1.20.1-0.0.15.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file forbidden_arcanus-1.20.1-2.2.6.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file forgery-3.6.1+1.20.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file FramedBlocks-9.4.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file framework-forge-1.20.1-0.7.12.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file ftb-library-forge-2001.2.9.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file fusion-1.2.7b-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file fzzy_config-0.6.9+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Galosphere-1.20.1-1.4.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [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\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file GlitchCore-forge-1.20.1-0.0.1.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file goblintraders-forge-1.20.1-1.9.3.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file gourd_guards-1.0.1-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file guardvillagers-1.20.1-1.6.10.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file HammerLib-1.20.1-20.1.50.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file HangGlider-v8.0.1-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file hexerei-0.4.2.3.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file hunters_return-1.20.1-11.7.0.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file IBEEditor-1.20-2.2.8-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file iceandfire-2.1.13-1.20.1-beta-5.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file idas_forge-1.11.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file identity-2.7.1-1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file illageandspillagerespillaged-1.2.8.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [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\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file integrated_api-1.5.3+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file integrated_cataclysm_forge-1.0.4+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file integrated_stronghold-1.1.2+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file integrated_villages-1.2.0+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file irons_spellbooks-1.20.1-3.4.0.9.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Jadens-Nether-Expansion-2.3.2.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [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\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file JustEnoughGuns-0.12.0-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file justzoom_forge_2.1.1_MC_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file konkrete_forge_1.8.0_MC_1.20-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file kotlinforforge-4.11.0-all.jar of type LIBRARY with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file L_Enders_Cataclysm 1.20.1-2.66.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file legendarymonsters-1.9.4 MC 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file letsdo-API-forge-1.2.15-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file letsdo-brewery-forge-1.1.9.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file lionfishapi-2.4-Fix.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Locks-Unoffical-forge-1.20.1-1.2.4.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file lootr-forge-1.20-0.7.35.91.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Luminous Nether V1.2.7 - Forge 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Luminous V1.5 - Forge 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file mace_port-3.0.4-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Mantle-1.20.1-1.11.44.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file mavapi-1.1.4-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file mavm-1.2.6-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file memoryleakfix-forge-1.17+-1.1.5.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file memoryusagetitle-forge-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Mocap-FORGE-1.20.1-1.3.8.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file modernfix-forge-5.21.0+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file mofus_broken_constellation-0.9.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file monolib-forge-1.20.1-2.1.0.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file moonlight-1.20-2.14.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file MorePlayerModels-1.20.1.20240409.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file morevillagers-forge-1.20.1-5.0.0.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file mowziesmobs-1.7.2.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file MyNethersDelight-1.20.1-0.1.7.5.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file NaturalDecorMod_1.20.1Forge_V1.6.2.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file nether-s-exoticism-1.20.1-1.2.9.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file no-ruined-nether-portals-1.0.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file noisium-forge-2.3.0+mc1.20-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file notenoughcrashes-4.4.7+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file obscure_api-15.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file ObsidianUI-forge-0.2.3+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file oceansdelight-1.0.2-1.20.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [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\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Oh-The-Biomes-Weve-Gone-Forge-1.5.11.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Oh-The-Trees-Youll-Grow-forge-1.20.1-1.3.9.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file omgourd-1.20.1-5.0.0.17.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Oreganized 1.20.1-4.0.0.carcinogenious.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file overloadedarmorbar-1.20.1-1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file packetfixer-forge-2.0.0-1.19-to-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file particular-1.20.1-Forge-1.2.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Patchouli-1.20.1-84.1-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file phantasmic-1.20.1-0.2.5.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file physics-mod-3.0.14-mc-1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file PickUpNotifier-v8.0.0-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Placebo-1.20.1-8.6.3.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Platform-forge-1.20.1-1.2.7.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file player-animation-lib-forge-1.0.2-rc1+1.20.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file polymorph-forge-0.49.10+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file PuzzlesLib-v8.1.32-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Quark-4.0-462.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file quark_delight_1.0.0_forge_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file QuarkOddities-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Quit-Forge-1.19.4-1.20.X-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file rechiseled-1.1.6-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file rechiseled_chipped-1.2.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file rechiseled_fans-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file rechiseledcreate-1.0.2a-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file redeco-1.14.1-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file refurbished_furniture-forge-1.20.1-1.0.12.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file RegionsUnexploredForge-0.5.6+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file relics-1.20.1-0.8.0.9.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file resourcefulconfig-forge-1.20.1-2.1.3.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file resourcefullib-forge-1.20.1-2.1.29.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file RubinatedNether-forge-1.3.0.E-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file RyoamicLights-forge-0.2.3+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file savage_and_ravage-1.20.1-6.0.0.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Searchables-forge-1.20.1-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file servercore-forge-1.5.2+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file simplehats-forge-1.20.1-0.3.2.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file SneakMobs-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file sophisticatedbackpacks-1.20.1-3.23.15.1236.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file sophisticatedcore-1.20.1-1.2.57.978.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file spark-1.10.53-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file spelunkery-1.20.1-0.3.16-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file spring-1.1.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file StrawStatues-v8.0.3-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file structure_gel-1.20.1-2.16.2.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file supermartijn642configlib-1.1.8-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file supermartijn642corelib-1.1.18-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file supplementaries-1.20-3.1.30.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file TerraBlender-forge-1.20.1-3.0.1.10.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file terramity-0.9.8-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file the_bumblezone-7.7.1+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file TheOuterEnd-1.0.10.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Tinted Campfires-1.20.1-1.2.11.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file torchmaster-20.1.9.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file traveloptics-4.4.0-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [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\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file txnilib-forge-1.0.23-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file UltraSwords - 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file upgrade_aquatic-1.20.1-6.0.3.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file useless-sword-1.20.1-V1.4.2.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file valhelsia_core-forge-1.20.1-1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file vanillabackport-forge-1.20.1-1.1.3.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file villagernames-1.20.1-8.2.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file villagertools-1.20.1-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file voidtotem-forge-1.20-3.0.1.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file wandering-bags-1.20.1-2.0.7.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file waystones-forge-1.20.1-14.1.12.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file worldedit-mod-7.2.15.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file XaerosWorldMap_1.39.4_Forge_1.20.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/INFO]: Found mod file Zeta-1.0-30.jar of type MOD with provider {mods folder locator at C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods} [18:26:59] [main/WARN]: Mod file C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\meta\libraries\net\minecraftforge\fmlcore\1.20.1-47.4.0\fmlcore-1.20.1-47.4.0.jar is missing mods.toml file [18:26:59] [main/WARN]: Mod file C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\meta\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.4.0\javafmllanguage-1.20.1-47.4.0.jar is missing mods.toml file [18:26:59] [main/WARN]: Mod file C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\meta\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.4.0\lowcodelanguage-1.20.1-47.4.0.jar is missing mods.toml file [18:26:59] [main/WARN]: Mod file C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\meta\libraries\net\minecraftforge\mclanguage\1.20.1-47.4.0\mclanguage-1.20.1-47.4.0.jar is missing mods.toml file [18:26:59] [main/INFO]: Found mod file fmlcore-1.20.1-47.4.0.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@aac3f4e [18:26:59] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@aac3f4e [18:26:59] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@aac3f4e [18:26:59] [main/INFO]: Found mod file mclanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@aac3f4e [18:26:59] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@aac3f4e [18:26:59] [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@aac3f4e [18:26:59] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [18:26:59] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: geckolib. Using Mod File: C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods\geckolib-forge-1.20.1-4.7.1.2.jar [18:26:59] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: fabric_api. Using Mod File: C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods\fabric-api-0.92.2+1.11.12+1.20.1.jar [18:26:59] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: athena. Using Mod File: C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods\athena-forge-1.20.1-3.1.2.jar [18:26:59] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefulconfig. Using Mod File: C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods\resourcefulconfig-forge-1.20.1-2.1.3.jar [18:26:59] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\ModrinthApp\profiles\Minecraft Arcana\mods\resourcefullib-forge-1.20.1-2.1.29.jar [18:26:59] [main/INFO]: Found 72 dependencies adding them to mods collection [18:26:59] [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@7d21852b [18:26:59] [main/INFO]: Found mod file fabric-dimensions-v1-2.1.54+8005d10d77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [main/INFO]: Found mod file kuma-api-forge-20.1.10+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [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@7d21852b [18:26:59] [main/INFO]: Found mod file puzzlesapi-forge-8.1.4.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [main/INFO]: Found mod file dazzleconf-core-1.3.0-M2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [main/INFO]: Found mod file kfflang-4.11.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [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@7d21852b [18:26:59] [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@7d21852b [18:26:59] [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@7d21852b [18:26:59] [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@7d21852b [18:26:59] [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@7d21852b [18:26:59] [main/INFO]: Found mod file fabric-models-v0-0.4.2+7c3892a477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [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@7d21852b [18:26:59] [main/INFO]: Found mod file critter-forge-0.1-beta.14.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [main/INFO]: Found mod file snakeyaml-2.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [main/INFO]: Found mod file fabric-rendering-v1-3.0.8+66e9a48f77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [main/INFO]: Found mod file fabric-renderer-indigo-1.5.2+b5b2da4177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [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@7d21852b [18:26:59] [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@7d21852b [18:26:59] [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@7d21852b [18:26:59] [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@7d21852b [18:26:59] [main/INFO]: Found mod file MixinExtras-0.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [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@7d21852b [18:26:59] [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@7d21852b [18:26:59] [main/INFO]: Found mod file MixinSquared-0.1.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [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@7d21852b [18:26:59] [main/INFO]: Found mod file mixinextras-forge-0.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [main/INFO]: Found mod file jankson-1.2.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [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@7d21852b [18:26:59] [main/INFO]: Found mod file fabric-particles-v1-1.1.2+78e1ecb877.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [main/INFO]: Found mod file puzzlesaccessapi-forge-20.1.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [main/INFO]: Found mod file dazzleconf-ext-snakeyaml-1.3.0-M2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [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@7d21852b [18:26:59] [main/INFO]: Found mod file Reflect-1.3.4.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [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@7d21852b [18:26:59] [main/INFO]: Found mod file caffeine-3.2.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [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@7d21852b [18:26:59] [main/INFO]: Found mod file fabric-api-base-0.4.31+ef105b4977.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [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@7d21852b [18:26:59] [main/INFO]: Found mod file fabric-blockrenderlayer-v1-1.1.41+1d0da21e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [main/INFO]: Found mod file battery-1.3.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [main/INFO]: Found mod file mixinsquared-forge-0.1.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [main/INFO]: Found mod file Registrate-MC1.20-1.3.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [main/INFO]: Found mod file spectrelib-forge-0.13.17+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [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@7d21852b [18:26:59] [main/INFO]: Found mod file json-0.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [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@7d21852b [18:26:59] [main/INFO]: Found mod file kffmod-4.11.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [main/INFO]: Found mod file kfflib-4.11.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [main/INFO]: Found mod file bytecodecs-1.0.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [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@7d21852b [18:26:59] [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@7d21852b [18:26:59] [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@7d21852b [18:26:59] [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@7d21852b [18:26:59] [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@7d21852b [18:26:59] [main/INFO]: Found mod file yabn-1.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@7d21852b [18:26:59] [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@7d21852b [18:26:59] [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@7d21852b [18:26:59] [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@7d21852b [18:26:59] [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@7d21852b [18:26:59] [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@7d21852b [18:26:59] [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@7d21852b [18:26:59] [main/INFO]: Found mod file fabric-messag
    • i removed the recommended mods and also a few mods that the game told me had trouble starting and added a few in place of them  the crash message changed: The game crashed: rendering overlay Error: java.lang.RuntimeException: null the new crash report https://pastebin.com/khF5vs2H
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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