Jump to content

Recommended Posts

Posted

Hey guys,

 

I'm really new to modding so please go easy on me ;) I'm currently making a mod purely for educational purposes.

 

So my question:

 

I'd like to add a custom attribute (which i already made) to the player. How would I go about this?

Here is the attribute

public static final IAttribute MONEY_ATT = (new RangedAttribute((IAttribute)null, "money", 1000,0,1000000000)).setDescription("Money").setShouldWatch(true);

 

It's really something stupid but i'm trying to learn.

I've found how to add attributes to new entities and modify existing onces but this i can't find.

I hope someone can help me out.

 

Greetings;

Zeurkous

Posted

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

Thought so, so this is what I have found. But it gives an error when the world loads.

 

public class CapabilityMoney {

@CapabilityInject(IMoney.class)
public static final Capability<IMoney> MONEY_CAPABILITY = null;

public static final EnumFacing DEFAULT_FACING = null;

public static final ResourceLocation ID = new ResourceLocation(Main.MODID, "Money");

public static void register() {
	CapabilityManager.INSTANCE.register(IMoney.class, new Capability.IStorage<IMoney>() {
		@Override
		public NBTBase writeNBT(Capability<IMoney> capability, IMoney instance, EnumFacing side) {
			return new NBTTagInt(instance.getMoney());
		}

		@Override
		public void readNBT(Capability<IMoney> capability, IMoney instance, EnumFacing side, NBTBase nbt) {
			instance.setMoney(((NBTTagInt) nbt).getInt());
		}
	},() -> new Money(null));

	MinecraftForge.EVENT_BUS.register(new EventHandler());
}

public static IMoney getMoney(EntityPlayer player) {
	return CapabilityUtils.getCapability(player, MONEY_CAPABILITY, DEFAULT_FACING);
}

public static ICapabilityProvider createProvider(IMoney money) {
	return new SimpleCapabilityProvider<>(MONEY_CAPABILITY, DEFAULT_FACING, money);
}


public static class EventHandler {

	@SubscribeEvent
	public void attachCapabilities(AttachCapabilitiesEvent.Entity event) {
		if (event.getEntity() instanceof EntityPlayer) {
			final Money money = new Money((EntityPlayer) event.getEntity());
			event.addCapability(ID, createProvider(money));
		}
	}

	@SubscribeEvent
	public void playerClone(PlayerEvent.Clone event) {
		final IMoney oldMoney = getMoney(event.getOriginal());
		final IMoney newMoney = getMoney(event.getEntityPlayer());

		if (newMoney != null && oldMoney != null) {
			newMoney.setMoney(oldMoney.getMoney());
		}
	}
}

}

 

public interface IMoney {
int getMoney();

void setMoney(int moneyToSet);

void addMoney(int moneyToAdd);
}

 

public class Money implements IMoney{

protected static final UUID MODIFIER_ID = UUID.fromString("d5d0d878-b3c2-469b-ba89-ac01c0635a9c");

protected static final String MODIFIER_NAME = "Money";

protected static final int MIN_AMOUNT = 0;

private final EntityPlayer player;


private int money;

public Money(EntityPlayer player) {
	this.player = player;
}
    public static final IAttribute MONEY_ATT = (new RangedAttribute((IAttribute)null, "money", 1000,0,1000000000)).setDescription("Money").setShouldWatch(true);
    private final IAttributeInstance dummyMoneyAttribute = new AttributeMap().registerAttribute(MONEY_ATT);

@Override
public final int getMoney() {		
	return money;

}

/**
 * Set the bonus max health.
 *
 * @param bonusMaxHealth The bonus max health
 */
@Override
public final void setMoney(int money) {
	this.money = money;
onMoneyChanged();
}

@Override
public final void addMoney(int moneyToAdd) {
	setMoney(getMoney() + moneyToAdd);

}

protected AttributeModifier createModifier() {
	return new AttributeModifier(MODIFIER_ID, MODIFIER_NAME, getMoney(), Constants.ATTRIBUTE_MODIFIER_OPERATION_ADD);
}
protected void onMoneyChanged() {
	if (player == null) return;
	final IAttributeInstance playerMoneyAttribute;
	playerMoneyAttribute = player.getEntityAttribute(MONEY_ATT);

	dummyMoneyAttribute.getModifiers().stream().forEach(dummyMoneyAttribute::removeModifier);

	dummyMoneyAttribute.setBaseValue(playerMoneyAttribute.getBaseValue());
	playerMoneyAttribute.getModifiers().stream().filter(modifier -> !modifier.getID().equals(MODIFIER_ID)).forEach(dummyMoneyAttribute::applyModifier);

	AttributeModifier modifier = createModifier();
	dummyMoneyAttribute.applyModifier(modifier);


	final AttributeModifier oldModifier = playerMoneyAttribute.getModifier(MODIFIER_ID);
	if (oldModifier != null) {
		playerMoneyAttribute.removeModifier(oldModifier);
	} else {
	}

	playerMoneyAttribute.applyModifier(modifier);
}
}

 

This I got from a tutorial from Choonster.

I understand most of it (not the dummy part) but it give as error at playerMoneyAttribute.getBaseValue(); (Class Money.java)

player.getEntityAttribute(MONEY_ATT) return null appaerently so .getBaseValue() gives null pointer.

 

Not sure if I'm doing something wrong or if I'm not doing something I should.

 

Posted

Either create an attribute or capability for your money, you don't need both. My max health capability only exists because I need to manage an attribute modifier for an existing attribute.

 

If you're using an attribute, call

AbstractAttributeMap#registerAttribute

once when an entity first joins the world to create the attribute instance. You can then use

AbstractAttributeMap#getAttributeInstance

to get the attribute instance and set its current value. You don't need to use attribute modifiers.

 

If you're using a capability, just store the money value in the capability instance and sync it to the client when necessary. Don't mess around with attributes.

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.

Posted

Okay I got it to work somewhat. Now if I wanted to give the player a starting value (of money in this case) what event would be best suited for that? Singleplayer and Multiplayer speaking (if that would be different)

Posted

Ofcourse :) Thanks.

Almost getting it to work as it should.

I now have 2 more problems.

[*]Whenever I rejoin my world the client resets the value to it's base while the server keeps the correct value. How do I fix that? (Packets and Pakcet handling?)

[*]I made a RightClickBlock event but every now and again it decides to fire twice on the same right click (both for client and server). Any ideas on that?

 

 

Posted

Single player is just a server with one player logged in. If you write your code properly, you don't need to care about which type of server is running.

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.

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

    • Here is the crash report.   [11:26:36] [main/INFO]: ModLauncher running: args [--username, _Guidance_, --version, forge-47.4.0, --gameDir, C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies, --assetsDir, C:\Users\Zents\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, 6b4799c2eeab4e2ba6e2473d586297ab, --accessToken, ????????, --clientId, e13743-510e61-9c0ddc-bad528-10ab26b, --xuid, 2533275033702266, --userType, msa, --versionType, release, --width, 1920, --height, 1080, --launchTarget, forgeclient, --fml.forgeVersion, 47.4.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [11:26:36] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.8 by Eclipse Adoptium; OS Windows 11 arch amd64 version 10.0 [11:26:37] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [11:26:37] [main/INFO]: Trying GL version 4.6 [11:26:37] [main/INFO]: Requested GL version 4.6 got version 4.6 [11:26:37] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/Zents/curseforge/minecraft/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [11:26:38] [pool-2-thread-1/INFO]: GL info: NVIDIA GeForce RTX 3070 Ti/PCIe/SSE2 GL version 4.6.0 NVIDIA 572.83, NVIDIA Corporation [11:26:38] [main/INFO]: Found mod file alexsmobs-1.22.9.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file almanac-1.20.x-forge-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file amendments-1.20-1.2.19.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ancient_golems-1.1.1-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Aquaculture-1.20.1-2.5.5.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file aquamirae-6.API15.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file architectury-9.2.14-forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ars_additions-1.20.1-1.6.7.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ars_botania-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ars_creo-1.20.1-4.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ars_elemental-1.20.1-0.6.7.8.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ars_ocultas-1.20.1-1.2.2-all.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ars_technica-1.20.1-1.3.0-a4.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file artifacts-forge-9.5.16.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Atlas Lib-1.20.1-1.1.12.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file bellsandwhistles-0.4.3-1.20.x.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file betterwithminecolonies-1.20-1.19.19.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file blockui-1.20.1-1.0.190-snapshot.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file blueprint-1.20.1-7.1.3.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Botania-1.20.1-448-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Byzantine-1.21.1-32.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26: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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26: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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file cloth-config-11.1.136-forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file CNB-1.20.1-1.5.8.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file create-1.20.1-0.5.1.j.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Create-DnDesire-1.20.1-0.1b.Release-Early-Dev.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file create-stuff-additions1.20.1_v2.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file create_blue_skies_compat-forge-1.20.1-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file create_structures_arise-158.31.30-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file create_waystones_recipes-1.0.1.b.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file createaddition-1.20.1-1.2.5.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file CreateCasing-1.20.1-1.6.2-fix3.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file createchunkloading-1.6.0-forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file createcontraptionterminals-1.20-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file createdeco-2.0.2-1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file createoreexcavation-1.20-1.5.3.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file cristellib-1.1.6-forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file domum_ornamentum-1.20.1-1.0.186-RELEASE-universal.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Dungeon Crawl-1.20.1-2.3.15.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file dungeons_enhanced-1.20.1-5.4.0.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file DungeonsArise-1.20.x-2.1.58-release.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file dynamicvillage-v0.4-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26: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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file entityculling-forge-1.7.4-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file EuphoriaPatcher-1.6.2-r5.5.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Explorify v1.6.2 f10-48.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file fallingtrees-forge-mc1.20-0.13.2-SNAPSHOT.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26: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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file formations-1.0.3-forge-mc1.20.2.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file formationsnether-1.0.5.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file framework-forge-1.20.1-0.7.15.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ftb-library-forge-2001.2.9.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ftb-teams-forge-2001.3.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Gamma_creatures-1.2.2_forge_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26: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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26: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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file immersive_armors-1.7.0+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ImmersiveEngineering-1.20.1-10.2.0-183.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file interiors-0.5.6+forge-mc1.20.1-build.104.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Jade-1.20.1-Forge-11.13.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26: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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file l2library-2.5.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file legendarycreatures-1.20.1-1.0.15.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file letmedespawn-1.20.x-forge-1.5.0.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file lionfishapi-2.4-Fix.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file lootbeams-1.20.1-1.2.6.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file MAtmos-7.1-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file mcw-bridges-3.1.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file mcw-doors-1.1.2-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file mcw-fences-1.2.0-1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file mcw-trapdoors-1.1.4-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file mcw-windows-2.3.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file minecolonies-1.20.1-1.1.891-snapshot.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file MineColonies_Compatibility-1.20.1-2.74.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file MineColonies_Hordes-1.20.1-1.0.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file MineColonies_Tweaks-1.20.1-2.65-all.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file minecolonytax-2.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file mixininheaven-mc1.17.1-1.20-v0.0.1-hotfix.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file modernfix-forge-5.22.0+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file modonomicon-1.20.1-forge-1.77.6.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file modulargolems-2.5.19.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file moonlight-1.20-2.14.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file MouseTweaks-forge-mc1.20.1-2.25.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file mowzies_cataclysm-1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file mowziesmobs-1.7.2.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file multipiston-1.20-1.2.43-RELEASE.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file NaturesCompass-1.20.1-1.11.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file obscure_api-15.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file occultism-1.20.1-1.141.4.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26: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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26: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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file pandalib-forge-mc1.20-0.5.2-SNAPSHOT.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26: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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Quark-4.0-462.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file realmrpg_dragon_wyrms_1.0.1_forge_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file RegionsUnexploredForge-0.5.6+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ScorchedGuns-0.4.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file SereneSeasons-forge-1.20.1-9.1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file simplyswords-forge-1.56.0-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26: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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file SmartBrainLib-forge-1.20.1-1.15.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file sophisticatedbackpacks-1.20.1-3.23.17.1246.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file sophisticatedcore-1.20.1-1.2.59.984.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file sound-physics-remastered-forge-1.20.1-1.4.13.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file stalwart-dungeons-1.20.1-1.2.8.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Steam_Rails-1.6.6+forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file StorageDrawers-1.20.1-12.9.13.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Structory_1.20.x_v1.3.5.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file structurize-1.20.1-1.0.772-snapshot.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file stylecolonies-1.13-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file supplementaries-1.20-3.1.18.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file TCTcore-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file The-Hordes-1.20.1-1.5.4.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file tombstone-1.20.1-8.9.4.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file toms_storage-1.20-1.7.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Towns-and-Towers-1.12-Fabric+Forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file towntalk-1.20.1-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26: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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file underground_rooms-1.9.3.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file xptome-1.20.1-2.2.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file YeetusExperimentus-Forge-2.3.1-build.6+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26: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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file YungsBetterDungeons-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26: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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26: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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file YungsBetterStrongholds-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Zeta-1.0-30.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/WARN]: Mod file C:\Users\Zents\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 [11:26:38] [main/WARN]: Mod file C:\Users\Zents\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 [11:26:38] [main/WARN]: Mod file C:\Users\Zents\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 [11:26:38] [main/WARN]: Mod file C:\Users\Zents\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 [11:26: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@5ca1f591 [11:26: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@5ca1f591 [11:26: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@5ca1f591 [11:26: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@5ca1f591 [11:26: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@5ca1f591 [11:26: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@5ca1f591 [11:26:38] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [11:26:38] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: geckolib. Using Mod File: C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods\geckolib-forge-1.20.1-4.7.1.2.jar [11:26:38] [main/INFO]: Found 22 dependencies adding them to mods collection [11:26:38] [main/INFO]: Found mod file l2screentracker-0.1.4.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [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@3baf6936 [11:26:38] [main/INFO]: Found mod file mixinextras-forge-0.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file l2modularblock-1.1.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file mob_weapon_api-0.2.5.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file l2tabs-0.3.3.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file commonmark-ext-gfm-strikethrough-0.24.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file MathParser.org-mXparser-5.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file jankson-1.2.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file mixinsquared-forge-0.1.2-beta.6.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file Registrate-MC1.20-1.3.11.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file l2itemselector-0.1.9.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file l2serial-1.2.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file l2damagetracker-0.3.7.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file commonmark-0.24.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file expandability-forge-9.0.4.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file commonmark-ext-ins-0.24.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file flywheel-forge-1.20.1-0.6.11-13.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file MixinSquared-0.1.2-beta.6.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file MixinExtras-0.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file jcpp-1.4.14.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:41] [main/INFO]: Compatibility level set to JAVA_17 [11:26:41] [main/INFO]: Successfully loaded Mixin Connector [com.sonicether.soundphysics.MixinConnector] [11:26:41] [main/INFO]: Launching target 'forgeclient' with arguments [--version, forge-47.4.0, --gameDir, C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies, --assetsDir, C:\Users\Zents\curseforge\minecraft\Install\assets, --uuid, 6b4799c2eeab4e2ba6e2473d586297ab, --username, _Guidance_, --assetIndex, 5, --accessToken, ????????, --clientId, e13743-510e61-9c0ddc-bad528-10ab26b, --xuid, 2533275033702266, --userType, msa, --versionType, release, --width, 1920, --height, 1080] [11:26:41] [main/WARN]: Reference map 'createdeco-forge-refmap.json' for createdeco.mixins.json could not be read. If this is a development environment you can ignore this message [11:26:42] [main/INFO]: Loaded configuration file for ModernFix 5.22.0+mc1.20.1: 94 options available, 0 override(s) found [11:26:42] [main/INFO]: Applying Nashorn fix [11:26:42] [main/INFO]: Applied Forge config corruption patch [11:26:42] [main/WARN]: Reference map 'integrated_cataclysm.refmap.json' for integrated_cataclysm.mixins.json could not be read. If this is a development environment you can ignore this message [11:26:42] [main/WARN]: Reference map 'pandalib-common-common-refmap.json' for pandalib-common.mixins.json could not be read. If this is a development environment you can ignore this message [11:26:42] [main/WARN]: Reference map 'simplyswords-forge-refmap.json' for simplyswords.mixins.json could not be read. If this is a development environment you can ignore this message [11:26:42] [main/WARN]: Reference map 'mob_weapon_api.refmap.json' for mob_weapon_api.mixins.json could not be read. If this is a development environment you can ignore this message [11:26:42] [main/WARN]: Reference map 'modonomicon.refmap.json' for modonomicon.mixins.json could not be read. If this is a development environment you can ignore this message [11:26:42] [main/WARN]: Reference map 'modonomicon.refmap.json' for modonomicon.forge.mixins.json could not be read. If this is a development environment you can ignore this message [11:26:42] [main/WARN]: Reference map 'itemselector.refmap.json' for l2itemselector.mixins.json could not be read. If this is a development environment you can ignore this message [11:26:42] [main/WARN]: Reference map 'Aquamirae.refmap.json' for aquamirae.mixins.json could not be read. If this is a development environment you can ignore this message [11:26:42] [main/WARN]: Reference map 'cristellib-forge-refmap.json' for cristellib.mixins.json could not be read. If this is a development environment you can ignore this message [11:26:43] [main/WARN]: Error loading class: appeng/me/storage/NetworkStorage (java.lang.ClassNotFoundException: appeng.me.storage.NetworkStorage) [11:26:43] [main/WARN]: @Mixin target appeng.me.storage.NetworkStorage was not found ars_botania.mixins.json:AENetworkStorageTypeMixin [11:26:43] [main/WARN]: Error loading class: net/dries007/tfc/common/fluids/MixingFluid (java.lang.ClassNotFoundException: net.dries007.tfc.common.fluids.MixingFluid) [11:26:43] [main/WARN]: @Mixin target net.dries007.tfc.common.fluids.MixingFluid was not found particular.mixins.json:compat.TFCMixingFluidMixin [11:26:43] [main/WARN]: Error loading class: net/dries007/tfc/common/fluids/RiverWaterFluid (java.lang.ClassNotFoundException: net.dries007.tfc.common.fluids.RiverWaterFluid) [11:26:43] [main/WARN]: @Mixin target net.dries007.tfc.common.fluids.RiverWaterFluid was not found particular.mixins.json:compat.TFCWaterMixin [11:26:43] [main/WARN]: Error loading class: com/lance5057/butchercraft/workstations/butcherblock/ButcherBlockBlockEntity (java.lang.ClassNotFoundException: com.lance5057.butchercraft.workstations.butcherblock.ButcherBlockBlockEntity) [11:26:43] [main/WARN]: @Mixin target com.lance5057.butchercraft.workstations.butcherblock.ButcherBlockBlockEntity was not found minecolonies_compatibility.mixin.common.json:butchercraft.ButcherBlockBlockEntityAccessor [11:26:43] [main/WARN]: Error loading class: com/lance5057/butchercraft/workstations/hook/MeatHookBlockEntity (java.lang.ClassNotFoundException: com.lance5057.butchercraft.workstations.hook.MeatHookBlockEntity) [11:26:43] [main/WARN]: @Mixin target com.lance5057.butchercraft.workstations.hook.MeatHookBlockEntity was not found minecolonies_compatibility.mixin.common.json:butchercraft.MeatHookBlockEntityAccessor [11:26:43] [main/WARN]: Error loading class: com/cobblemon/mod/common/block/BerryBlock (java.lang.ClassNotFoundException: com.cobblemon.mod.common.block.BerryBlock) [11:26:43] [main/WARN]: @Mixin target com.cobblemon.mod.common.block.BerryBlock was not found minecolonies_compatibility.mixin.common.json:cobblemon.BerryBlockAccessor [11:26:43] [main/WARN]: Error loading class: com/lothrazar/cyclic/block/apple/AppleCropBlock (java.lang.ClassNotFoundException: com.lothrazar.cyclic.block.apple.AppleCropBlock) [11:26:43] [main/WARN]: @Mixin target com.lothrazar.cyclic.block.apple.AppleCropBlock was not found minecolonies_compatibility.mixin.common.json:cyclic.AppleCropBlockAccessor [11:26:43] [main/WARN]: Error loading class: com/mrbysco/oreberriesreplanted/block/OreBerryBushBlock (java.lang.ClassNotFoundException: com.mrbysco.oreberriesreplanted.block.OreBerryBushBlock) [11:26:43] [main/WARN]: @Mixin target com.mrbysco.oreberriesreplanted.block.OreBerryBushBlock was not found minecolonies_compatibility.mixin.common.json:oreberries.OreBerryBushBlockAccessor [11:26:43] [main/WARN]: Error loading class: reliquary/items/HandgunItem (java.lang.ClassNotFoundException: reliquary.items.HandgunItem) [11:26:43] [main/WARN]: @Mixin target reliquary.items.HandgunItem was not found minecolonies_compatibility.mixin.common.json:reliquary.HandgunItemAccessor [11:26:43] [main/WARN]: Error loading class: reliquary/entities/shot/NeutralShotEntity (java.lang.ClassNotFoundException: reliquary.entities.shot.NeutralShotEntity) [11:26:43] [main/WARN]: @Mixin target reliquary.entities.shot.NeutralShotEntity was not found minecolonies_compatibility.mixin.common.json:reliquary.NeutralShotEntityMixin [11:26:43] [main/WARN]: Error loading class: com/lothrazar/storagenetwork/block/main/NetworkModule (java.lang.ClassNotFoundException: com.lothrazar.storagenetwork.block.main.NetworkModule) [11:26:43] [main/WARN]: @Mixin target com.lothrazar.storagenetwork.block.main.NetworkModule was not found minecolonies_compatibility.mixin.common.json:storagenetwork.NetworkModuleAccessor [11:26:43] [main/WARN]: Error loading class: com/lothrazar/storagenetwork/util/UtilConnections (java.lang.ClassNotFoundException: com.lothrazar.storagenetwork.util.UtilConnections) [11:26:43] [main/WARN]: @Mixin target com.lothrazar.storagenetwork.util.UtilConnections was not found minecolonies_compatibility.mixin.common.json:storagenetwork.UtilConnectionsMixin [11:26:43] [main/WARN]: Error loading class: cofh/lib/common/block/CropBlockCoFH (java.lang.ClassNotFoundException: cofh.lib.common.block.CropBlockCoFH) [11:26:43] [main/WARN]: @Mixin target cofh.lib.common.block.CropBlockCoFH was not found minecolonies_compatibility.mixin.common.json:thermal.CropBlockCoFHAccessor [11:26:44] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/chunk/compile/pipeline/FluidRenderer (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.chunk.compile.pipeline.FluidRenderer) [11:26:44] [main/WARN]: Error loading class: net/raphimc/immediatelyfast/feature/map_atlas_generation/MapAtlasTexture (java.lang.ClassNotFoundException: net.raphimc.immediatelyfast.feature.map_atlas_generation.MapAtlasTexture) [11:26:44] [main/WARN]: Error loading class: mekanism/client/render/entity/RenderFlame (java.lang.ClassNotFoundException: mekanism.client.render.entity.RenderFlame) [11:26:44] [main/WARN]: Error loading class: mekanism/client/render/armor/MekaSuitArmor (java.lang.ClassNotFoundException: mekanism.client.render.armor.MekaSuitArmor) [11:26:44] [main/INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). [11:26:46] [pool-4-thread-1/INFO]: ModernFix reached bootstrap stage (11.42 s after launch) [11:26:46] [pool-4-thread-1/WARN]: @Final field delegatesByName:Ljava/util/Map; in modernfix-forge.mixins.json:perf.forge_registry_alloc.ForgeRegistryMixin should be final [11:26:46] [pool-4-thread-1/WARN]: @Final field delegatesByValue:Ljava/util/Map; in modernfix-forge.mixins.json:perf.forge_registry_alloc.ForgeRegistryMixin should be final [11:26:46] [pool-4-thread-1/INFO]: Vanilla bootstrap took 841 milliseconds [11:26:49] [pool-4-thread-1/WARN]: Static binding violation: PRIVATE @Overwrite method m_47505_ in modernfix-common.mixins.json:perf.remove_biome_temperature_cache.BiomeMixin cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. [11:26:49] [Render thread/WARN]: Error loading class: net/caffeinemc/mods/sodium/api/memory/MemoryIntrinsics (java.lang.ClassNotFoundException: net.caffeinemc.mods.sodium.api.memory.MemoryIntrinsics) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]: java.lang.RuntimeException: java.lang.reflect.InvocationTargetException [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:32) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.Launcher.run(Launcher.java:108) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.Launcher.main(Launcher.java:78) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at cpw.mods.bootstraplauncher@1.1.2/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]: Caused by: java.lang.reflect.InvocationTargetException [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at java.base/java.lang.reflect.Method.invoke(Unknown Source) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/fmlloader@1.20.1-47.4.0/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/fmlloader@1.20.1-47.4.0/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/fmlloader@1.20.1-47.4.0/net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     ... 7 more [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]: Caused by: java.lang.NoClassDefFoundError: Could not initialize class com.mojang.blaze3d.systems.RenderSystem [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at TRANSFORMER/minecraft@1.20.1/net.minecraft.SystemReport.m_143522_(SystemReport.java:66) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at TRANSFORMER/minecraft@1.20.1/net.minecraft.client.Minecraft.m_167850_(Minecraft.java:2339) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at TRANSFORMER/minecraft@1.20.1/net.minecraft.client.Minecraft.m_167872_(Minecraft.java:2332) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at TRANSFORMER/minecraft@1.20.1/net.minecraft.client.main.Main.main(Main.java:191) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     ... 15 more [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]: Caused by: java.lang.ExceptionInInitializerError: Exception org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered [in thread "Render thread"] [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at java.base/java.lang.ClassLoader.loadClass(Unknown Source) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at TRANSFORMER/minecraft@1.20.1/com.mojang.blaze3d.vertex.Tesselator.<init>(Tesselator.java:19) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at TRANSFORMER/minecraft@1.20.1/com.mojang.blaze3d.vertex.Tesselator.<init>(Tesselator.java:23) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at TRANSFORMER/minecraft@1.20.1/com.mojang.blaze3d.vertex.Tesselator.<clinit>(Tesselator.java:11) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at TRANSFORMER/minecraft@1.20.1/com.mojang.blaze3d.systems.RenderSystem.<clinit>(RenderSystem.java:50) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at TRANSFORMER/minecraft@1.20.1/net.minecraft.client.main.Main.main(Main.java:180) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     ... 15 more  
    • Thanks! I didn't know I needed them together 馃槄
    • Did you also add Embeddium? So make a test just with Embeddium + Oculus
    • The build of the mod Reforged (Tiered) you are using is for Minecraft 1.20.5 or newer Try one of these builds: https://www.curseforge.com/minecraft/mc-mods/tiered-forge/files/all?page=1&pageSize=20&version=1.20.1&gameVersionTypeId=1
    • I have compiled a modpack of about 230 mods for Minecraft 1.20.1 on forge 47.4.0. I am not seeing any problems of dependencies, just the single error of some kind of plug in. I don't know what is happening with it or how to fix it. [20:08:49] [main/ERROR]:Error loading companion plugin class [com.stereowalker.tiered.mixin.TieredMixinPlugin] for mixin config [tiered.mixins.json]. The plugin may be out of date: UnsupportedClassVersionError:com/stereowalker/tiered/mixin/TieredMixinPlugin has been compiled by a more recent version of the Java Runtime (class file version 65.0), this version of the Java Runtime only recognizes class file versions up to 61.0
  • Topics

  • Create New...

Important Information

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