HomeJavaModsAtomiCoffe
AtomiCoffe
ModsJava

AtomiCoffe

by flexhd · on Modrinth

Bring your server to life with Lua. Atomicoffe is a Fabric scripting mod that lets you add custom commands, events, recipes, loot tables, HUDs, and more…

⬇ Download on Modrinth

Atomicoffe

Atomicoffe is a Fabric mod that embeds a full LuaJ scripting engine into your Minecraft server and client. Write scripts once, reload them live with /atomicoffe reload no restarts, no recompiling, no Java required.


What can you do with it?


Script Phases

Folder When it runs
startup_scripts/ Before the server starts for tag/registry changes
server_scripts/ When the server starts and after every /reload
client_scripts/ On the client HUD, keybinds, client-side events

All scripts live in your instance's config/atomicoffe/ folder and are hot-reloadable.


Quick Example

-- config/atomicoffe/server_scripts/welcome.lua

onEvent("player.join", function(e)
  e.player.tell("§aWelcome, §e" .. e.player.name .. "§a!")
  e.player.give("minecraft:bread", 8)
end)

command.register("ping", function(ctx)
  ctx.reply("Pong! TPS: " .. server.getTps())
end)

schedule.every(6000, function()  -- every 5 minutes
  server.broadcast("§b[Info] §fNeed help? Check our Discord!")
end)
Quick facts

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

These come from our own check of the pack file, not from the source page.

Explore more