沉浸式工程蓝图调整器 (Immersive Engineering Blueprint Tweaker)
这个小型附属模组是沉浸式工程现代版本中存在的Crafttweaker蓝图配方支持的回溯,并允许调整工程师手册。
此模组专为使用Minecraft 1.7.10版本的模组包制作者设计,以允许他们使用Zenscript自定义蓝图(见下文)。
要添加蓝图
mods.immersiveengineering.Blueprint.addRecipe(String category, IItemStack output, IIngredient[] inputs);
要删除蓝图
mods.immersiveengineering.Blueprint.removeRecipe(IItemStack output);
有关更多信息,请参见
此外,该附属模组还允许用户通过添加/删除条目和页面来修改工程师手册。
要删除条目
mods.immersiveengineering.Manual.removeEntry(String name);
要删除特定页面
mods.immersiveengineering.Manual.removePage(String name, int pageNum);
要添加页面
mods.immersiveengineering.Manual.addTextPage(String name, String text, @Optional String category, @Optional int pageNum);
如何添加文本页面的示例
game.setLocalization("ie.manual.category.gregtech.name", "Greg Tech"); game.setLocalization("ie.manual.entry.ochem.name", "Organic Chemistry"); game.setLocalization("ie.manual.entry.ochem.subtext", ""); game.setLocalization("ie.manual.entry.ochem0", "这是第一页"); game.setLocalization("ie.manual.entry.ochem1", "这是第二页"); game.setLocalization("ie.manual.entry.ochem2", "这是第三页"); mods.immersiveengineering.Manual.addTextPage("ochem", "ochem2", "gregtech"); // 创建新类别(gregtech)和条目(ochem) mods.immersiveengineering.Manual.addTextPage("ochem", "ochem0"); // 默认插入为第一页 mods.immersiveengineering.Manual.addTextPage("ochem", "ochem1", 1); // 插入到索引为1的页
来自Modrinth
1.1.3
IEBPT-1.1.3.jar下载1.1.3#Release
Fix script failure when loaded on a server. The manual is null on the serverside!
展开
版本: 1.1.3
支持游戏: 1.7.10
类型: Forge
Release
下载次数: 1,834
1.1.2
IEBPT-1.1.2.jar下载1.1.2#Release
remove scala import >:(
展开
版本: 1.1.2
支持游戏: 1.7.10
类型: Forge
Release
下载次数: 146
收录