如何在不使用 Forge API 的情况下在 ModCoderPack 中使用 Forge mod

How do I use a Forge mod in ModCoderPack without using Forge API

我想在 ModCoderPack 中使用 forge mod 但不想包含 forge SRC。有没有办法将 mod 的源代码添加到 vanilla 源中以在我的客户端中使用?或者我如何将伪造 mod 移植到 ModCoderPack 生成的原版资源中?任何帮助都会很棒!谢谢!

P.S。我有权在我的客户端中使用 mod。

没有简单的方法或工具可以实现您的目标。主要是因为以下差异:

MCP:

[ModCoderPack] was created to help mod creators to decompile, change and recompile the Minecraft classes.

Forge:

[Forge] is a massive API and mod loader used by modders to hook into Minecraft code and create mods. Forge contains numerous hooks into the Minecraft game engine, allowing modders to create mods with a high level of compatibility

因此 Forge 创建了一个可访问的 API 用于开发易于维护的 mods 而 MCP 用于创建 mod 化版本的 Minecraft client/server,区别于mod.

的概念

Forge 建立在 MCP 之上并添加了许多新功能。根据您的 mod 的复杂性,将 mod 直接重写为 Minecraft 的去混淆源代码需要付出巨大的努力。

除非你有非常充分的理由需要它,比如 creator of MCP said,请使用 Forge!