Jump to content

Recommended Posts

Posted

I made a server with a bunch of mods that i want to play on with my friend but when he tries to connect it says "Fatally missing registry entries" . Trouble is that i can join and we tried to make another modpack tried to install again, nothing. If you can, please help.

Posted
  On 9/5/2022 at 2:09 PM, danut__The_Modder said:

I made a server with a bunch of mods that i want to play on with my friend but when he tries to connect it says "Fatally missing registry entries" . Trouble is that i can join and we tried to make another modpack tried to install again, nothing. If you can, please help.

Expand  

This is the log piece with the error

[15:44:02] [Netty Epoll Server IO #1/INFO] [FML]: Client protocol version 2

1550[15:44:02] [Netty Epoll Server IO #1/INFO] [FML]: Client attempting to join with 83 mods : buildcraftlib@7.99.24.8,kiwi@0.5.3.32,ctgui@1.0.0,enderiointegrationforestry@5.3.70,tesla@1.0.63,universalmodifiers@1.12.2-1.0.16.1,buildcraftenergy@7.99.24.8,deconstruction@3.0.4,dynamictreesquark@1.12.2-1.0.6,jei@4.16.1.302,buildcrafttransport@7.99.24.8,cofhcore@4.6.6,uppers@0.0.6,mekanism@1.12.2-9.8.3.390,projecte@1.12.2-PE1.4.1,thermalfoundation@2.6.7,techguns_core@1.12.2-1.0,endercore@1.12.2-0.5.76,opencomputers@1.7.6+fe5ba4e,mcp@9.42,ctm@MC1.12.2-1.0.2.31,nuclearcraft@2.18zzz,enderiointegrationticlate@5.3.70,bookshelf@2.3.590,conarm@1.2.5.10,uteamcore@2.2.5.212,cofhworld@1.4.0,waila@1.8.26,enderioconduitsrefinedstorage@5.3.70,tlauncher_custom_cape_skin@1.4,crafttweaker@4.1.20,forge@14.23.5.2860,enderioconduits@5.3.70,gregtech@1.17.1.770,buildcraftrobotics@7.99.24.8,ironchest@1.12.2-7.0.67.844,minecraft@1.12.2,tconstruct@1.12.2-2.13.0.183,tinkertoolleveling@1.12.2-1.1.0.DEV.b23e769,usefulbackpacks@1.5.4.85,theoneprobe@1.4.28,crafttweakerjei@2.0.3,enderiomachines@5.3.70,stackup@0.2.5,baubles@1.5.2,redstoneflux@2.1.1,jade@0.1.0,buildcraftsilicon@7.99.24.8,ironfurnaces@1.3.5,valkyrielib@1.12.2-2.0.20.1,somanyenchantments@0.5.5,enderiopowertools@5.3.70,energyconverters@1.3.7.30,enderio@5.3.70,quark@r1.6-179,ic2@2.8.222-ex112,mantle@1.12-1.3.3.55,buildcraftbuilders@7.99.24.8,gamestages@2.0.123,collective@3.0,buildcraftfactory@7.99.24.8,securitycraft@v1.9.3.1,autoreglib@1.3-32,oreexcavation@1.4.150,enderioinvpanel@5.3.70,FML@8.0.99.99,thermalexpansion@5.5.7,enderiobase@5.3.70,enderiointegrationtic@5.3.70,enderioconduitsappliedenergistics@5.3.70,starterkit@1.12.2-1.0.20.1,buildcraftcompat@7.99.24.8,solarenergy@0.5.0.0,chisel@MC1.12.2-1.0.2.45,energymeters@1.0.2,enderioconduitsopencomputers@5.3.70,opencomputers|core@1.7.6+fe5ba4e,codechickenlib@3.2.3.358,dynamictrees@1.12.2-0.9.29,researchtable@1.0.2,buildcraftcore@7.99.24.8,f0-resources@1.0.3.1,techguns@2.0.2.0

1551[15:44:02] [Netty Epoll Server IO #1/INFO] [journeymap]: CLIENT

1552[15:44:02] [Netty Epoll Server IO #1/INFO] [FML]: Attempting connection with missing mods [journeymap] at CLIENT

1553[15:44:02] [Netty Epoll Server IO #1/INFO] [CodeChickenLib-ConfigSync]: Skipping config sync, No mods have registered a syncable config.

1554[15:44:02] [Server thread/INFO] [net.minecraft.network.NetHandlerPlayServer]: albert34345 lost connection: Disconnected

1555[15:44:02] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: albert34345 left the game

Posted

The version you are using is no longer supported on this forum.

Please update to a modern version of Minecraft to receive support.

Currently supported versions are 1.19.2 (Latest) and 1.18.2 (LTS).

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hello, I want to change some things about a specific mod. I made some small mods for myself before, but I don't know how to use other mods as a dependencie and add the repositories. My build.gradle file looks something like this:   repositories { flatDir { dirs 'libs' } } dependencies { minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}" implementation fg.deobf("libs:create-1.20.1:0.5.1.f") implementation fg.deobf("libs:create-stuff-additions1.20.1:2.0.4a") } I have the folder libs in my root folder. If I start the gradlew.exe, I get the following output: > Configure project : Java: 17.0.15, JVM: 17.0.15+6 (Eclipse Adoptium), Arch: amd64 files(...) dependencies are not deobfuscated. Use a flatDir repository instead: https://docs.gradle.org/current/userguide/declaring_repositories.html#sub:flat_dir_resolver Cannot deobfuscate dependency of type DefaultSelfResolvingDependency_Decorated, using obfuscated version! files(...) dependencies are not deobfuscated. Use a flatDir repository instead: https://docs.gradle.org/current/userguide/declaring_repositories.html#sub:flat_dir_resolver Cannot deobfuscate dependency of type DefaultSelfResolvingDependency_Decorated, using obfuscated version! I don't know why this warning occurs or how to fix it. If I try to build the whole thing, I get the same message, but this time as an error and the build process crashes. I looked at the gradle dependencies website (https://docs.gradle.org/current/userguide/dependency_management_for_java_projects.html), but everything I tried did not work.   I use the Minecaft version 1.20.1 and the Forge version 47.2.17. Both mods don't have other dependencies and work perfectly fine if I start the game normaly.   Can someone explain to me why it does not work and/or where I can get help? Something like a documentation would be enough.
    • im just going to play without shaders(my friends will be dissapointed)
    • crashed the game // Embeddium instance tainted by mods: [oculus] // Please do not reach out for Embeddium support without removing these mods first. // ------- // Why did you do that? flywheel is needed for oculus but when i go into mc it then says sodium is 0.5.3(rubidum fork of sodium ported to forge)
    • oh wait i think i found the error  rubidium wasnt installed for oculus . IT WAS RUBIDIUM????????????????????
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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