Dark Mode

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

chronoDave/zen-flow

Repository files navigation

Install

npm i zen-flow -D

Note: zen-flow only works with Minecraft 1.7.10.

Features

  • Easy to use API, written in TypeScript
  • Extensive documentation
  • Supports MineTweaker, ModTweaker and ContentTweaker
  • Formatted output (for easy debugging)
  • Includes support for:
    • Applied Energistics 2
    • Avaritia
    • Blood Magic
    • Ex Nihilo
    • Extra Utilities
    • Forestry
    • MineFactory Reloaded
    • NEI
    • Thaumcraft 4
    • Thermal Expansion
    • Tinkers' Construct
    • Chisel 2

Example

, [ * [, , ], * [, , ], * [null, null, null] * ]); **/ add('')({ 1: '', 2: '', 3: '', 4: '', 6: '' }); /** * recipes.addShaped(, [ * [null, , null], * [, null, ], * [null, , null] * ]); **/ add('')({ edge: ''}); // Remove & hide Extra Utility generators /** * recipes.remove(); * NEI.hide(); * [...] * recipes.remove(); * NEI.hide(); **/ Array.from({ length: 11 }) .map((_, i) => [ ``, ``, `` ]) .flat() .map(generator => [ remove(generator), hide(generator) ].join('\n'));">import { add, remove, hide } from 'zen-flow';

/**
* recipes.addShaped(, [
* [, , ],
* [, , ],
* [null, null, null]
* ]);
**/
add('')({
1: '', 2: '', 3: '',
4: ', 5: '', 6: ''
});

/**
* recipes.addShaped(, [
* [null, , null],
* [, null, ],
* [null, , null]
* ]);
**/
add('')({ edge: ''});

// Remove & hide Extra Utility generators

/**
* recipes.remove();
* NEI.hide();
* [...]
* recipes.remove();
* NEI.hide();
**/
Array.from({ length: 11 })
.map((_, i) => [
`${i === 0 ? '' : `:${i}`}>`
,
`${i === 0 ? '' : `:${i}`}>`,
`${i === 0 ? '' : `:${i}`}>`
])
.flat()
.map(generator => [
remove(generator),
hide(generator)
].join('\n'));

More information can be found in the documentation.

About

Automated ZenScript

Topics

Resources

Readme

License

MIT license

Stars

Watchers

Forks

Contributors