ModsJava
AppliedJS
The author built this one for Minecraft 1.21.1 on NeoForge. On other versions it may install and then do nothing.
Modify upgrade inventory for upgradeable machine
- in startup_scripts
AE2Events.upgrades(event =>{
event.addSlotSize("ae2:inscriber",4)
event.addSlotSize("ae2:io_port",3)
event.setMaxInstalledCount("ae2:speed_card","ae2:inscriber",8)
})
Add custom recipes with KubeJS
- In server_scripts
ServerEvents.recipes(event =>{
event.recipes.ae2.entropy(
EntropyRecipe.mode("heat"),
EntropyRecipe.createWithBlock("minecraft:smooth_stone").buildAsOutput(),
EntropyRecipe.createWithBlock("minecraft:stone").buildAsInput()
)
event.recipes.ae2.entropy(
EntropyRecipe.COOL,
EntropyRecipe.createWithFluid("minecraft:water").buildAsOutput(),
EntropyRecipe.createWithFluid("minecraft:flowing_lava").buildAsInput()
)
event.recipes.ae2.charger(
"minecraft:obsidian",
"minecraft:magma_block"
)
event.recipes.ae2.inscriber(
InscriberRecipe.mode("press"),
"minecraft:diamond",
InscriberRecipe.inputs(
"minecraft:coal_block",
"minecraft:coal_block",
"minecraft:coal_block"
)
)
event.recipes.ae2.inscriber(
InscriberRecipe.INSCRIBE,
"minecraft:diamond",
InscriberRecipe.inputs(
"minecraft:diamond",
"minecraft:coal_block",
InscriberRecipe.empty()
)
)
event.recipes.ae2.transform(
TransformRecipe.EXPLOSION,
"minecraft:sand",
[
"minecraft:gravel"
]
)
event.recipes.ae2.transform(
TransformRecipe.fluid("minecraft:water"),
"minecraft:sand",
[
"minecraft:gravel"
]
)
})
Quick facts
- Edition: Minecraft Java
- File type: .jar
- Minecraft version listed: 1.21.1
- How to install: Install the matching mod loader (Forge, Fabric or NeoForge) for your Minecraft version. → Download the .jar. → Put it in the .minecraft/mods folder and launch that loader profile.
- Where to get it: Opens on CurseForge — not every file is mirrored on our own servers.
Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.
Verified by MCModsHub
- Ships as appliedjs-1.21.1-1.0.0.jar — drop this file into the mods folder
- Download size: 38 KB
- Download link checked 13 Sept 2026 — working
These come from our own check of the pack file, not from the source page.