[1.15.2] How to stop an Item from rendering on your head?
-
Recently Browsing
- No registered users viewing this page.
-
Posts
-
By Im_Not_Mine33 · Posted
Hi all, lately I've started developing mods that are server-side only, so I've already started working with packets, I thought it was a pretty simple thing (having already worked on it when developing plugins) (I know it's completely different at code level, but logical I think it's the same) but I ran into multiple problems, I'm developing a mod in 1.19.2 server side which for now has to send a simple message to individual clients by executing a command, like a sort of "hello world" debugging. I developed the command part and it works, but I really have no idea how to send a chatmessagepacket to the client, could someone help me? Test.java -- Command Class (Working) public class Test { public Test (CommandDispatcher<CommandSourceStack> dispatcher){ dispatcher.register(Commands.literal("test").executes((command) -> { return 0; })); } private int prova(CommandSourceStack source) throws CommandSyntaxException{ ServerPlayer player = source.getPlayer(); BlockPos pos = player.blockPosition(); //here must send a packet to the client return 1; } } PacketHandler.java public class PacketHandler { private static SimpleChannel INSTANCE; private static int packetId = 0; public static void register(){ SimpleChannel net = NetworkRegistry.ChannelBuilder .named(new ResourceLocation(Mceconomy.MODID, "main")) .networkProtocolVersion(() -> "1.0") .clientAcceptedVersions(s -> true) .serverAcceptedVersions(s -> true) .simpleChannel(); INSTANCE = net; net.messageBuilder(MessagePacket.class, id(), NetworkDirection.PLAY_TO_SERVER) .encoder(MessagePacket::toBytes) .decoder(MessagePacket::new) .consumerMainThread(MessagePacket::handle) .add(); } private static int id() { return packetId++; } public static <MSG> void sendToServer(MSG message) { INSTANCE.sendToServer(message); } public static <MSG> void sendToClient(MSG message, ServerPlayer player) { INSTANCE.send(PacketDistributor.PLAYER.with(() -> player), message); } } MessagePacket.java -- (StringTextComponent can't find it and I don't know why) public class MessagePacket { public MessagePacket() { } public MessagePacket(FriendlyByteBuf buf) { } public void toBytes(FriendlyByteBuf buf) { } public boolean handle(Supplier<NetworkEvent.Context> supplier) { NetworkEvent.Context context = supplier.get(); context.enqueueWork(() -> { //On the server ServerPlayer player = context.getSender(); ServerLevel world = player.getLevel(); player.sendSystemMessage(new StringTextComponent("Hello World!")); }); return true; } } Any ideas? -
Alright, so for a second I thought I had a solution when I remembered the old position Entities use for lerping is public public final Vec3 getPosition(float p_20319_) { double d0 = Mth.lerp((double)p_20319_, this.xo, this.getX()); double d1 = Mth.lerp((double)p_20319_, this.yo, this.getY()); double d2 = Mth.lerp((double)p_20319_, this.zo, this.getZ()); return new Vec3(d0, d1, d2); } and while I was able to get the position on server, I found out the old position is identical to the current position (both on client and server), which means if I subtract it from the current position, I still get 0.0, what's up with that? I how can the game lerp motion if the two positions are the same?
-
Okay so a part 2 to my last post, thanks to some help I was told that curios was the issue to my modpack crashing. I then re-added about a dozen mods that I deleted because i didn't think them problematic. they are. please help [15:49:25] [main/INFO]: ModLauncher running: args [--username, DogMasterNick63, --version, forge-43.2.0, --gameDir, C:\Users\charl\Downloads\Instances\Colossal Collision, --assetsDir, C:\Users\charl\Downloads\Install\assets, --assetIndex, 1.19, --uuid, 509a32422f1041e5ba8c38e6c51f09cf, --accessToken, ????????, --clientId, NmIwZTI1NzUtNDY3OC00MmY0LTlkMWUtMzUxNmNiNTc1MjA3, --xuid, 2535414800005777, --userType, msa, --versionType, release, --width, 1024, --height, 768, --launchTarget, forgeclient, --fml.forgeVersion, 43.2.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [15:49:25] [main/INFO]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.3 by Microsoft; OS Windows 10 arch amd64 version 10.0 [15:49:28] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/charl/Downloads/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2391!/ Service=ModLauncher Env=CLIENT [15:49:29] [main/INFO]: Found mod file alexsmobs-1.21.1.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file allay-forge-1.19.1-4.1.1.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Amplified_Nether_v1.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file animal_feeding_trough-1.0.3+1.19.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Animalistic_mod_1.1.0_1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Aquaculture-1.19.2-2.4.8.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file aquamirae-5.6.API14.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file archbows-1.1.6-1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file architectury-6.5.69-forge.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file artifacts-1.19.2-5.0.1.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file AutoRegLib-1.8.2-55.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file AxesAreWeapons-1.6.5-forge-1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file axewar-1.8-1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file babyfat-forge-1.19.2-1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file balm-4.5.3.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file bdlib-1.25.0.5-mc1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file bettas-forge-1.19.2-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file BiomesOPlenty-1.19.2-17.1.1.162.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Blades Plus 1.0.0 - 1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file blue_skies-1.19.2-1.3.20.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Bookshelf-Forge-1.19.2-16.2.17.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file bookwyrms-1.19.2-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file born_in_chaos_1.19_1.1.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Borzoi Dogs 1.0.0 (1.19.2).jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file broglisbugs-0.1.3-1.19.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file broglisowls-0.0.3.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file broglisplants-0.0.4.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file bucketlib-1.19-1.0.4.0.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file bunchobugs-1.3.2-1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file capybaramod-0.0.2-1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file cave-enhancements-1.19.2-2.1.9-forge.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file citadel-2.1.1-1.19.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file cloth-config-8.2.88-forge.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file collective-1.19.2-6.43.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Craftable Horse Armour Saddle-1.19-1.9.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file CraftableChainmail-1.19.2-3.1.6-[FORGE].jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file creeperoverhaul-2.0.6-forge.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file crittersandcompanions-1.19.2-1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file crustaceans-1.19.2-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file CuteBear-1.19.2-1.0.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file CuteHermitCrabs 3.0.0 [1.19-1.19.2].jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file depthstridersfixed.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file despawningeggshatch-1.19.2-4.0.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file domesticationinnovation-1.6.1-1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Dreamland-forge-1.19.2-1.2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file duckling-2.0.8-forge.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file EarthMobs-1.19.2-4.3.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file ecologics-forge-1.19.2-2.1.11.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file ElementalAnimals0.1.2-1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file ExplorersCompass-1.19.2-1.3.0-forge.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file extragolems-19.2.4.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file FairyDragonsfor1.19.2(2).jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file fennecfox-forge-1.19-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file ForeverAChild-1.19-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file FriendlyFire-Forge-1.19.2-14.0.1.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file froglins-1.19.2-3.0.0.0.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file fromspores-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file frozenup-1.19.2-2.1.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Gaggle of Golems-1.3.3 (Forge 1.19.2).jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file geckolib-forge-1.19-3.1.39.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file glare-forge-1.19-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Glunch1.19.2v1.1.1.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file goblins-0.5.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file goblintraders-1.8.0-1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file grappling_hook_mod-1.19.2-1.19.2-v13.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file guineapigs-0.1.0-1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file HigherWorldDeeperOceans.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file hitmarker-1.19.2-3.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Iceberg-1.19.2-forge-1.1.4.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file immersive_armors-1.5.4+1.19.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Instrumental-Mobs-1.19-1.3.5.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file jei-1.19.2-forge-11.5.2.1007.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file JustARaftMod-1.19-2.0.0.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file kiwiboi-1.19.2-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file lava_monster-1.19.1-1.0.11.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file LegendaryTooltips-1.19.2-forge-1.4.0.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file lemurs-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file macawsbridgesbop-1.19.2-1.1.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file macawsbridgesbyg-1.19.2-1.1.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file macawsroofsbop-1.19.2-1.3.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file mcw-bridges-2.0.6-mc1.19.2forge.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file mcw-doors-1.0.8forge-mc1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file mcw-fences-1.0.7-mc1.19.2forge.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file mcw-furniture-3.0.2-mc1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file mcw-lights-1.0.5-mc1.19.2forge.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file mcw-roofs-2.2.2-mc1.19.2forge.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file mcw-trapdoors-1.0.8-mc1.19.2forge.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file mcw-windows-2.1.1-mc1.19.2forge.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file mcwfencesbop-1.19.2-1.0.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file mcwfencesbyg-1.19.2-1.0.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file mcwfurnituresbop-1.19.2-1.1.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file mcwfurnituresbyg-1.19.2-1.0.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file MonsterPlus1.1.4-Forge1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file moogsmobs-1.0.5-1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file muffins-slimegolem-1.19.x-1.0.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file musicalfoxes-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Natural Decoration 1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file naturalist-forge-2.1.1-1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file NaturesCompass-1.19.2-1.10.0-forge.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file netherite_horse_armor-1.19-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file nocube's_chinchillas_1.2.0_forge_1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file nocube's_villagers_sell_animals_1.1.4_forge_1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file nyfcore-1.19.2-0.0.1.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file NyfsQuiver-1.19.2-0.7.4.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file obscure_api-14.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file ogres-0.6.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Oh_The_Biomes_You'll_Go-forge-1.19.2-2.0.0.13.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file PangeaUltima_ElephantRemake.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file panthalassa-1.3.2-1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Patchouli-1.19.2-77.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file player_companions_1.19.2-4.4.0.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file primal 1.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Prism-1.19.1-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file pyromancer 1.8.3.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Quark-3.4-389.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file RingOfRepair-Forge-1.19.2-1.5.4.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file rottencreatures-forge-1.19.2-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file ScalableCatsForce-2.13.10-build-10-with-library.jar of type LANGPROVIDER with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file scorpions-forge-1.19-41.0.100-1.3.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file scuba_gear-1.19-1.0.5.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file SharksMod 1.19. 2 (2.1).jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Sheep-Squeak-forge-1.19-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file ShieldExpansion-1.19.2-1.1.5.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file simplehats-forge-1.19.2-0.1.6.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file simplyswords-forge-1.36-1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file SlimyBoyos-forge-1.19.2-5.0.0.5.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file snowmancy-1.19.2-1.1.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file snuffles-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Sophisticated_Wolves-1.19.2-4.1.1.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file sophisticatedbackpacks-1.19.2-3.18.40.779.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file sophisticatedcore-1.19.2-0.5.38.203.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file spirit-forge-1.19.2-2.2.3.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Steve's_Vanilla_v0.5.0+1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file structure_gel-1.19.2-2.7.1.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file supermartijn642corelib-1.1.1a-forge-mc1.19.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file swampier_swamps-1.19-1.1.4.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file tameablebeasts-1.19.2-3.0.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file TerraBlender-forge-1.19.2-2.0.1.128.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Terratortles.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file The Mysthical 1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file The_Undergarden-1.19.2-0.8.3.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file torchhit-1.19.2-6.0.1.0-forge.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file trolls-0.5.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file UnusualEnd1.19_V1.2.7.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file vanilla_degus-1.19-v1.3.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Villager Brute- 1.0.0+ 1.19.2 [FORGE].jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file vulture-forge-1.19.2-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Waddles-1.19-0.9.1.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file warhammersmod-forge-1.19.2-v1.0.6.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file wasps1_19_2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file waystones-forge-1.19-11.1.0.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file whatareyouvotingfor2022-1.19.2-1.7.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file whisperwoods-1.19-2.1.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file woodenbucket-1.19-1.1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file Xaeros_Minimap_22.17.1_Forge_1.19.1.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/INFO]: Found mod file zaynens_string_from_wool_mod_1.19.2.jar of type MOD with provider {mods folder locator at C:\Users\charl\Downloads\Instances\Colossal Collision\mods} [15:49:29] [main/WARN]: Mod file C:\Users\charl\Downloads\Install\libraries\net\minecraftforge\fmlcore\1.19.2-43.2.0\fmlcore-1.19.2-43.2.0.jar is missing mods.toml file [15:49:29] [main/WARN]: Mod file C:\Users\charl\Downloads\Install\libraries\net\minecraftforge\javafmllanguage\1.19.2-43.2.0\javafmllanguage-1.19.2-43.2.0.jar is missing mods.toml file [15:49:29] [main/WARN]: Mod file C:\Users\charl\Downloads\Install\libraries\net\minecraftforge\lowcodelanguage\1.19.2-43.2.0\lowcodelanguage-1.19.2-43.2.0.jar is missing mods.toml file [15:49:29] [main/WARN]: Mod file C:\Users\charl\Downloads\Install\libraries\net\minecraftforge\mclanguage\1.19.2-43.2.0\mclanguage-1.19.2-43.2.0.jar is missing mods.toml file [15:49:29] [main/INFO]: Found mod file fmlcore-1.19.2-43.2.0.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@4c0884e8 [15:49:29] [main/INFO]: Found mod file javafmllanguage-1.19.2-43.2.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@4c0884e8 [15:49:29] [main/INFO]: Found mod file lowcodelanguage-1.19.2-43.2.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@4c0884e8 [15:49:29] [main/INFO]: Found mod file mclanguage-1.19.2-43.2.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@4c0884e8 [15:49:29] [main/INFO]: Found mod file client-1.19.2-20220805.130853-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@4c0884e8 [15:49:29] [main/INFO]: Found mod file forge-1.19.2-43.2.0-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@4c0884e8 [15:49:30] [main/INFO]: Found 8 dependencies adding them to mods collection [15:49:30] [main/INFO]: Found mod file capabilitysyncer-1.19-3.1.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5782d777 [15:49:30] [main/INFO]: Found mod file cats-kernel_2.13-2.8.5-kotori.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5782d777 [15:49:30] [main/INFO]: Found mod file cats-core_2.13-2.8.5-kotori.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5782d777 [15:49:30] [main/INFO]: Found mod file MixinExtras-0.1.0-rc5.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5782d777 [15:49:30] [main/INFO]: Found mod file scala-library-2.13.10.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5782d777 [15:49:30] [main/INFO]: Found mod file resourcefullib-forge-1.19.2-1.1.12.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5782d777 [15:49:30] [main/INFO]: Found mod file expandability-forge-7.0.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5782d777 [15:49:30] [main/INFO]: Found mod file cats-free_2.13-2.8.5-kotori.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5782d777 [15:49:30] [main/ERROR]: Missing or unsupported mandatory dependencies: Mod ID: 'curios', Requested by: 'artifacts', Expected range: '[1.19.2-5.0.6.3,)', Actual version: '[MISSING]' Mod ID: 'curios', Requested by: 'nyfsquiver', Expected range: '[1.18.1-5.0.3.0,)', Actual version: '[MISSING]' Mod ID: 'curios', Requested by: 'simplehats', Expected range: '[1.19.2-5.1.1.0,)', Actual version: '[MISSING]' [15:49:34] [main/INFO]: Compatibility level set to JAVA_17 [15:49:35] [main/ERROR]: Mixin config slimegolem-common.mixins.json does not specify "minVersion" property [15:49:35] [main/ERROR]: Mixin config slimegolem.mixins.json does not specify "minVersion" property [15:49:35] [main/ERROR]: Mixin config rottencreatures-common.mixins.json does not specify "minVersion" property [15:49:35] [main/ERROR]: Mixin config rottencreatures.mixins.json does not specify "minVersion" property [15:49:35] [main/INFO]: Launching target 'forgeclient' with arguments [--version, forge-43.2.0, --gameDir, C:\Users\charl\Downloads\Instances\Colossal Collision, --assetsDir, C:\Users\charl\Downloads\Install\assets, --uuid, 509a32422f1041e5ba8c38e6c51f09cf, --username, DogMasterNick63, --assetIndex, 1.19, --accessToken, ????????, --clientId, NmIwZTI1NzUtNDY3OC00MmY0LTlkMWUtMzUxNmNiNTc1MjA3, --xuid, 2535414800005777, --userType, msa, --versionType, release, --width, 1024, --height, 768] [15:49:35] [main/WARN]: Reference map 'grapplemod.refmap.json' for grapplemod.mixins.json could not be read. If this is a development environment you can ignore this message [15:49:35] [main/WARN]: Reference map 'naturalist-forge-forge-refmap.json' for naturalist.mixins.json could not be read. If this is a development environment you can ignore this message [15:49:35] [main/WARN]: Reference map 'muffins-slimegolem-forge-refmap.json' for slimegolem.mixins.json could not be read. If this is a development environment you can ignore this message [15:49:35] [main/WARN]: Reference map 'nyfcore.refmap.json' for nyfcore.mixins.json could not be read. If this is a development environment you can ignore this message [15:49:35] [main/WARN]: Reference map 'stevesvanilla.refmap.json' for steves_vanilla.mixins.json could not be read. If this is a development environment you can ignore this message [15:49:35] [main/WARN]: Reference map 'simplyswords-common-refmap.json' for simplyswords-common.mixins.json could not be read. If this is a development environment you can ignore this message [15:49:35] [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 [15:49:35] [main/WARN]: Reference map 'rottencreatures-forge-refmap.json' for rottencreatures.mixins.json could not be read. If this is a development environment you can ignore this message [15:49:35] [main/WARN]: Reference map 'cave-enhancements-forge-refmap.json' for cave_enhancements.mixins.json could not be read. If this is a development environment you can ignore this message [15:49:35] [main/WARN]: Error loading class: top/theillusivec4/curios/client/render/CuriosLayer (java.lang.ClassNotFoundException: top.theillusivec4.curios.client.render.CuriosLayer) [15:49:35] [main/WARN]: @Mixin target top.theillusivec4.curios.client.render.CuriosLayer was not found nyfsquiver.mixins.json:CuriosLayerMixin [15:49:36] [main/WARN]: Error loading class: top/theillusivec4/curios/common/CuriosHelper (java.lang.ClassNotFoundException: top.theillusivec4.curios.common.CuriosHelper) [15:49:36] [main/WARN]: @Mixin target top.theillusivec4.curios.common.CuriosHelper was not found mixins.simplehats.json:MixinCuriosHelper [15:49:43] [pool-3-thread-1/INFO]: Building unoptimized datafixer [15:49:43] [pool-3-thread-1/WARN]: Error loading class: top/theillusivec4/curios/api/CuriosApi (java.lang.ClassNotFoundException: top.theillusivec4.curios.api.CuriosApi)
-
By Warren Tode · Posted
I understand. Sorry it didn't work out the way you wanted. -
It worked. Thank you so much!
-
-
Topics
Recommended Posts
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.