简体中文 | English
⚠️ CRITICAL RUNTIME REQUIREMENTS This mod utilizes modern Java features and DOES NOT support standard Forge 1.12.2 (Java 8). Please ensure your client meets the following environment specifications:
IGI-Addon-ProjectE is a client-side add-on mod specifically developed for InGame Info XML (IGI) running on the modern Cleanroom 1.12.2 stack.
It bridges the data between IGI and ProjectE (Equivalent Exchange), seamlessly injecting advanced EMC diagnostics directly onto your screen HUD with near-zero performance overhead.
K, M, B, and T (e.g., 1,250,000 becomes 1.25M).Once installed, use the following custom tokens in your IGI text layout via the standard {tagname} placeholder syntax:
| Tag Name | Registry ID | Output Example | Description |
|---|---|---|---|
{peplayeremc} |
peplayeremc |
1254300 |
Raw numeric balance of player's Transmutation Tablet EMC. |
{peplayeremcfmt} |
peplayeremcfmt |
1.25M |
Formatted/shortened balance of player's Transmutation Tablet EMC. |
{peemcdelta} |
peemcdelta |
+5000/s or -200/s |
Raw numeric EMC fluctuation rate per second. |
{peemcdeltafmt} |
peemcdeltafmt |
+1.50M/s or 0/s |
Formatted/shortened EMC fluctuation rate per second. |
{peitememc} |
peitememc |
64 |
The single-unit EMC value of the item held in your main hand. |
InGameInfo.xml)Below is an implementation example matching your InGameInfo.xml configuration (where formatting codes like $e, $b, and $a represent IGI colors):
<?xml version="1.0" encoding="UTF-8"?>
<config>
<lines at="topleft">
<line>
<str>Day {day}, {mctime} (</str>
<if>
<var>daytime</var>
<str>$eDay</str>
<str>$8Night</str>
</if>
<str> time$f)</str>
</line>
<line>
<str>Transmutation Tablet EMC (Formatted): $e{peplayeremcfmt}</str>
</line>
<line>
<str>Transmutation Tablet EMC (Raw): $6{peplayeremc}</str>
</line>
<line>
<str>EMC Delta Rate (Formatted): $b{peemcdeltafmt}</str>
</line>
<line>
<str>EMC Delta Rate (Raw): $3{peemcdelta}</str>
</line>
<line>
<str>Main Hand Item EMC: $a{peitememc}</str>
</line>
</lines>
</config>
⚠️ 重要运行环境要求 本模组利用了现代开发特性,不支持传统的 Forge 1.12.2 (Java 8) 环境。请确保你的客户端满足以下条件:
IGI-Addon-ProjectE 是一个专为 Cleanroom 1.12.2 环境打造的 InGame Info XML (IGI) 实时屏幕 HUD 扩展插件。
它打通了 IGI 与 ProjectE (等价交换) 的数据接口,让你无需频繁打开转化桌或检测终端,就能直接在主屏幕上以极低的性能开销、极其精准的速率监控各项 EMC 数据流。
K、M、B、T(例如 1,250,000 自动显示为 1.25M)。成功安装本模组后,你可以在 IGI 的配置文件中直接通过 {标签名} 的方式调用以下新增加的标签:
| 标签名称 | 对应代码名称 | 输出示例 | 说明 |
|---|---|---|---|
{peplayeremc} |
peplayeremc |
1254300 |
显示玩家个人转化桌内的 EMC 原始数字 |
{peplayeremcfmt} |
peplayeremcfmt |
1.25M |
个人 EMC 总量(带单位格式化简写) |
{peemcdelta} |
peemcdelta |
+5000/s 或 -200/s |
EMC 实时每秒变动速率(原始数字) |
{peemcdeltafmt} |
peemcdeltafmt |
+1.50M/s 或 0/s |
EMC 实时每秒变动速率(带单位格式化简写) |
{peitememc} |
peitememc |
64 |
玩家当前主手所持物品的单体 EMC 值 |
InGameInfo.xml)你可以直接将以下配置整合进你的 InGameInfo.xml 全局配置文件中(其中 $e、$6 等为 IGI 特有的文本颜色样式代码):
<?xml version="1.0" encoding="UTF-8"?>
<config>
<lines at="topleft">
<line>
<str>Day {day}, {mctime} (</str>
<if>
<var>daytime</var>
<str>$eDay</str>
<str>$8Night</str>
</if>
<str> time$f)</str>
</line>
<line>
<str>转化桌EMC (简写): $e{peplayeremcfmt}</str>
</line>
<line>
<str>转化桌EMC (数值): $6{peplayeremc}</str>
</line>
<line>
<str>EMC实时变化 (简写): $b{peemcdeltafmt}</str>
</line>
<line>
<str>EMC实时变化 (数值): $3{peemcdelta}</str>
</line>
<line>
<str>手上物品EMC: $a{peitememc}</str>
</line>
</lines>
</config>