Jump to content

Forge tells me that its version is incompatible although I updated it.


ViAik

Recommended Posts

I have a rather weird problem here. I'll start at the beginning.

The version is 1.7.10, reason for that is mods. Another detail is that I used universal version of forge, there are reasons for that and I cannot use an installer in any way.

The version I used was the recommended version downloaded from files.minecraftforge.net, which is 10.13.4.1558. It worked fine with all of my 42 mods. Then I decided to add another mod (RTG if that matters). When I did that, it started telling me at Minecraft startup that

Forge : minimum version required is 10.13.4.1558

 

aul36ey.png

 

That's weird, isn't it? I already had that version installed. So I decided that the problem is in the mod, and deleted it. After some time (without adding any more mods) I've added another mod (Ex Futurum if you need that). And guess what? It started doing the same thing. Minimum version required is 10.13.4.1558. I deleted the mod, and tried adding another random mod, and after testing about 5 different mods they worked fine. The problem was only with these two. I don't know if there are any other mods with that problem.

What I also tried to do is installing the newest version of Forge instead, which is 10.13.4.1614. Absolutely no differences occured. And yes, I did re-install both Minecraft and Forge from scratch in both cases.

I could live without those two mods, but I really want them, and it seems that I won't be able to do anything about this problem without your support, which would be exceptionally highly appreciated.

P.S. Sorry for my English if there's anything wrong with it, I'm not native English-speaking.

Thanks, ViAik

Link to comment
Share on other sites

- There is no valid reason not to use the installer.

- There is no valid reason to be on 1.7.10.

- There is no valid reason why you have not posted the FML log like instructed in the rules.

 

-I have a server that uses a non-traditional file structure. I need minecraft.jar with FML by itself, without other Minecraft files.

-I have 42 mods. 90% of them are not released for 1.8, or 1.9, or 1.10.

-There is no log file, I looked for it. If there was one - I would put it here. There's no reason for me to not follow the rules.

Link to comment
Share on other sites

-I have a server that uses a non-traditional file structure. I need minecraft.jar with FML by itself, without other Minecraft files.
Ehm, what?

This is not supported by forge in any way. Any issue you have with this setup is up to you to fix.

-I have 42 mods. 90% of them are not released for 1.8, or 1.9, or 1.10.
That is not a reason.

1.7.10 is no longer supported by forge. This is like you calling up Microsoft asking them about fixing your Windows 98 installation because this special program you have is not updated. They will laugh at you.

-There is no log file, I looked for it. If there was one - I would put it here. There's no reason for me to not follow the rules.

If you have any kind of forge installed, there will be logs/fml-server-latest.log.

- I did not make this setup. The problem is with Forge, not with my server, because I have the same problem on regular Minecraft.

- If I move to 1.10, I will have to delete almost all of my mods. If I wanted to play on vanilla - I wouldn't use Forge. There is a reason why I'm using mods. And your comparison doesn't make any sense. A ton of people use 1.7.10 for mods. Because a ton of very popular mods are not updated to 1.8, or are in progress.

- Do you think I'm blind? There is no log. There is even no log folder. If you want screenshots of my folders - I can upload them.

 

If you don't know how to help me, please don't reply, with all the respect. I posted here because I need help, not because I want people rudely telling me to delete all of my mods and play on 1.10. I am not as dumb as you think I am.

Link to comment
Share on other sites

Use the installer, and post logs.

1) There is no reason NOT to use the installer if your server designed in fucked up then fix the server.

2) There is ALWAYS a log, SOMETHING ALWAYS happens when you try running the server.

But again, as stated we do not support 1.7.10.

If you want support update your shit.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Yeah, Minecraft.getInstance().player only works on the client side. Is there a way to get the player from the NetworkEvent.Context?
    • I have tried multimc, prism, and curseforge. They all crash without creating any logs.
    • I play with friends a server with mods, funny enough im the only one getting the error. Link to the crash error:https://pastebin.com/Qgn57EXZ
    • I have a keybind where you spit like a llama. On singleplayer both the entity and particle spawn and it's sound is played (https://youtu.be/bpxnFDuWw_I). But on a server only the entity is spawned and nothing else (https://youtu.be/veVQ4zSqnIA), no particles nor sound. Upon starting the server I have noticed this error in the window (https://postimg.cc/K3KDCpMY), don't know if it's relevant. The server works fine but when I want to spit the following pops up in the serverlog '''Attempted to load class net/minecraft/client/player/LocalPlayer for invalid dist DEDICATED_SERVER''' (https://postimg.cc/LqTDP1Sm). I have prepared the following code of the Server-to-Client packet class which I have made to spawn mentioned particles and sounds. package mett.palemannie.tabakmod.networking.packets; import net.minecraft.client.Minecraft; import net.minecraft.core.particles.ParticleTypes; import net.minecraft.network.FriendlyByteBuf; import net.minecraft.sounds.SoundEvents; import net.minecraft.util.RandomSource; import net.minecraft.world.entity.player.Player; import net.minecraft.world.level.Level; import net.minecraft.world.phys.Vec3; import net.minecraftforge.network.NetworkEvent; import java.util.function.Supplier; public class SpuckEffektS2CPacket { public SpuckEffektS2CPacket(){ } public SpuckEffektS2CPacket(FriendlyByteBuf buf){ } public void toBytes(FriendlyByteBuf buf){ } public boolean handle(Supplier<NetworkEvent.Context> supplier){ NetworkEvent.Context context = supplier.get(); context.enqueueWork(()-> { Player player = Minecraft.getInstance().player; //Attempted to load class net/minecraft/client/player/LocalPlayer for invalid dist DEDICATED_SERVER Level level = Minecraft.getInstance().level; RandomSource rdm = RandomSource.create(); float r = rdm.nextInt(80, 120) / 100f; player.playSound(SoundEvents.LLAMA_SPIT, 1f, r); Vec3 MausPos = player.getEyePosition(); Vec3 SchauWinkel = player.getLookAngle(); level.addParticle(ParticleTypes.SPIT, true, MausPos.x, MausPos.y, MausPos.z, SchauWinkel.x/4, SchauWinkel.y/4, SchauWinkel.z/4); }); return true; } } Is there an alternative to Minecraft.getInstance().player;? dumb question. I have looked at other mods (MrCrayfish's Gun Mod, Ars Noveau, Apotheosis) on how they handle such server-to-client sound and particles but I haven't got any wiser.    
    • i keep getting error on minecraft when im trying to play modpack. When i go to logs folder i got this. 
  • Topics

×
×
  • Create New...

Important Information

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