[RMS]Recipe Machine Stages ZS/JS
模组属性评比

距离显示结果还剩4票~

路过的这位少侠,你觉得这款Mod怎么样,可否愿意来评一评它呢?登录并评比
更新日志
  • 暂无日志..

历史编辑记录更多
    管理组

      暂无管理组..

    编辑组

      暂无编辑组..

    开发组申请

      暂无开发组..

    最近参与编辑
    活跃
    开源
    [RMS]

    Recipe Machine Stages ZS/JS

    0.0

    无人问津

    昨日指数: 5
    昨日平均指数: 62.403

    2340

    总浏览

    --

    资料填充率


    如何下载?
    • 本模组提供了阻止机器执行配方的功能。也就是说,你可以给任何支持的模组机器的配方添加阶段限制

      本模组提供了两种使用方式:「CraftTweaker游戏阶段」或「KubeJSAStages,只要选择其一便可以工作,你不需要全部装上!

      支持的模组机器请前往 GitHub 页面

      KubeJS 使用示例(写在 server_scripts 里)。

      //kubejs/server_scripts/example.js

      RecipeMachineStage.addRecipe(String recipeType, String recipeID, String stage)

      RecipeMachineStage.addRecipe('create:milling', 'create:milling/fern', 'two')
      RecipeMachineStage.addRecipe("minecraft:smelting", "minecraft:stone", "one")


      RecipeMachineStage.addRecipes(String recipeType, String[] recipeIDs, String stage)
      RecipeMachineStage.addRecipes("minecraft:smelting", ["minecraft:stone", "minecraft:iron_ingot"], "one")

       CraftTweaker 使用示例。

      import mods.recipemachinestage.RecipeMachineStage;

      RecipeMachineStage.addRecipe(recipeType as string, recipeID as string, stage as string)
      RecipeMachineStage.addRecipe(recipeType as string, recipeID as string[], stage as string)
      RecipeMachineStage.addRecipeByMod(recipeType as string, modId as string, stage as string)
      RecipeMachineStage.addRecipeByMod(recipeType as string, modId as string[], stage as string)

      RecipeMachineStage.addRecipe(recipeType as RecypeType, recipeID as string, stage as string)
      RecipeMachineStage.addRecipe(recipeType as RecypeType, recipeID as string[], stage as string)
      RecipeMachineStage.addRecipeByMod(recipeType as RecypeType, modId as string, stage as string)
      RecipeMachineStage.addRecipeByMod(recipeType as RecypeType, modId as string[], stage as string)

    短评加载中..