Jump to content

[MineTweaker3] Учебное пособие BuildCraft


vandoom
 Share

Recommended Posts

Поддерживаемые обработчики
Поддерживаются следующие обработчики:

  • Сборочный стол
  • Двигатель внутреннего сгорания
  • Интеграционная таблица
  • Переработка

В каждый из этих обработчиков могут быть добавлены или удалены рецепты:

//Сборочный стол 
//OutputStack, InputRF, InputArray 
mods.buildcraft.AssemblyTable.addRecipe(<BuildCraft:Transport:pipePlug>, 5000, [<minecraft:gravel>, <minecraft:cobblestone> * 2, <minecraft:glass>]);
//OutputStack, InputArray, isWildcard 
mods.buildcraft.AssemblyTable.removeRecipe(<BuildCraft:Silicon:redstoneChipset>, [<minecraft:redstone>], false);
  
//Двигатель внутреннего сгорания
//InputFluid, OutputRF per Cycle, BurningTime in Ticks 
mods.buildcraft.Fuels.addCombustionEngineFuel(<liquid:lava>, 5000, 200); 
//InputFluid 
mods.buildcraft.Fuels.removeCombustionEngineFuel(<liquid:fuel); 
//InputFluid, OutputCooling by mB 
mods.buildcraft.Fuels.addCombustionEngineCoolant(<liquid:oil>, 100); 
//InputStack, OutputFluid 
mods.buildcraft.Fuels.addCoolantItem(<minecraft:ice>, <liquid:water> * 1000); 
//InputStack, OutputFluid, Multiplier 
mods.buildcraft.Fuels.addCoolantItemWithMultiplier(<minecraft:packed_ice>, <liquid:water> * 4000, 2); 
//InputFluid 
mods.buildcraft.Fuels.removeCombustionEngineCoolant(<liquid:water); 
//InputStack 
mods.buildcraft.Fuels.removeCoolantItem(<minecraft:water_bucket>); 
  
//Интеграционная таблица
//W.I.P 
  
//Нефтеперерабатывающий завод 
//OutputFluid, RF per mB, Ticks per mB, InputFluid1, InputFluid2 
mods.buildcraft.Refinery.addRecipe(<liquid:oil> * 2, 25, 25, <liquid:water>, <liquid:lava>); 
//OutputFluid 
mods.buildcraft.Refinery.removeRecipe(<liquid:fuel);

 

Link to comment
Share on other sites

  • BazZziliuS changed the title to [MineTweaker3] Учебное пособие BuildCraft

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...