Kubejs Recipes
Related Searches
Editing Recipes - KubeJS Wiki
1 week ago kubejs.com Show details
Here's how we tell KubeJS to execute some code whenever it's recipe time: 1.19.2+ 1.18.2 /* * ServerEvents.recipes(callback) is a function that accepts another function, * called the …
Tutorials - KubeJS Wiki
2 days ago kubejs.com Show details
How to use KubeJS. Getting Started Basics of KubeJS. Video Tutorials KubeJS tutorials in video format. Editing Recipes Adding, removing, and modifying recipes. Editing Tags Adding, …
Recipes | NotEnoughMail’s Stuff
3 days ago notenoughmail.github.io Show details
OutputItem: Accepts an ItemStackProviderJS and sets the recipe’s output item, defaults to empty; OutputFluid: Accepts a FluidStack and sets the recipe’s output fluid, defaults to empty; …
Recipes | NotEnoughMail’s Stuff
1 week ago notenoughmail.github.io Show details
3rd argument: A pattern key, the same as KubeJS’s native crafting recipe; 4th argument: An integer, representing the row (0 indexed) of the pattern. Used to determine the input item of …
Create - KubeJS Wiki
1 week ago kubejs.com Show details
Jun 28, 2024 · supports multiple chance-based outputs; supports fluid inputs and outputs; supports .heated() and .superheated(); ServerEvents.recipes(event => { event.recipes.create ...
KubeJS 1.14+ Recipes · GitHub
4 days ago github.com Show details
May 21, 2024 · KubeJS 1.14+ Recipes Raw. example.js This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open …
KubeJS 1.18.2 Tutorial Ep 1 | Recipes - YouTube
2 days ago youtube.com Show details
Jul 10, 2023 · 1.18.2 KubeJS tutorial on customizing recipesMod List - Architectury API - Blood Magic - Clumps - CoFH Core - Create - JEI - KubeJS - KubeJS Additions - Kube...
KubeJS - Minecraft Mods - CurseForge
3 days ago curseforge.com Show details
Edit recipes, add new custom items, script world events, all in JavaScript! Edit recipes, add new custom items, script world events, all in JavaScript! 66.8M Downloads | Mods. ... It should …
KubeJS Create - Minecraft Mods - CurseForge
2 weeks ago curseforge.com Show details
This mod allows you to add and properly edit recipes of Create mod in KubeJS scripts. All supported recipe types and examples are below. See Recipes page for more info. Supported …
Adding Recipes using KubeJS - GitHub Wiki SEE
1 week ago github-wiki-see.page Show details
Jan 28, 2021 · Navigate to data/modid/kubejs/ and create a javascript file, like mycooltweaker.js;; Write events.listen('recipes', event => { } in. Now, you can start filling out entries inside that { …
Custom Recipes : r/CreateMod - Reddit
1 week ago reddit.com Show details
So let's go back up to that KubeJS example and strip it down a bit: events.listen('recipes', function (event) { event.recipes.create.crushing( {jsonHere} ) }) What we have here is an …
Getting Started with KubeJS 6.1 - Another Create Wiki
3 days ago project-vyre.github.io Show details
KubeJS; KubeJS Create. After KubeJS is installed, run the game to generate the kubejs folder which is located in your Minecraft instance folder. It contains the following folders and a …
How to replace recipes with kubejs? : r/feedthebeast - Reddit
1 week ago reddit.com Show details
I was in the same situation a while ago and just decided to use datapacks instead as they are much better documented and easier to learn. kubejs is probably better if you have a large …
KubeJS
1 week ago kubejs.com Show details
startup_scripts/: Restart the game or use /kubejs reload startup_scripts. Not everything is reloadable - some things require you to restart the game (e.g. registries) or the world (e.g. …
KubeJS-Mods/KubeJS - GitHub
1 week ago github.com Show details
KubeJS plugins are the main way to add KubeJS integration to your mods through code. They contain various convenient hooks for addon developers, to allow things such as: performing …
KubeJS More Recipe Types - GitHub
1 week ago github.com Show details
All new types are functions inside of the global object. They should be called inside of the recipes event like so: global.mrt.<mod>.<type>(event, {args}, <id>).. the recipe id and almost all …
Getting Started - KubeJS Wiki
6 days ago kubejs.com Show details
Editing Recipes. Editing Tags. 1.19.2 Worldgen. 1.20.1 Worldgen. Block Interactions. Block Modification. Block Registry. Changing Mod Display Names. ... ProbeJS is an essential addon …
KubeJS 1.19.2 - Another Create Wiki
6 days ago project-vyre.github.io Show details
The maximum grid size for a shaped recipe (not fireworks) is 9 x 9. KubeJS will mirror and shrink recipes. By default KubeJS will mirror and shrink recipes, which makes things like UU-Matter …
Editing Tags - KubeJS Wiki
4 days ago kubejs.com Show details
Recipes use item tags, not block or fluid tags. Even if items representing those are blocks, like minecraft:cobblestone , it still uses an item tag for recipes. // Listen to the block tag event …