In-game Console

Quick rating

In-game Console

No reviews yet

A console that allows ingame script execution.

Mod Loaders
Fabric
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Required
Server Unsupported

About

Project Details

Type
Mod
License
MIT License
Authors

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

Modrinth ID

Resources

External Links

About

Description

What it does

Open a live console overlay while you play. Type commands, run JavaScript, save multi-line scripts to files, and bind actions to keys. Everything runs on the client tick thread, so it stays stable while the game keeps running behind it.

Scripting

Three ways to run code:

Prefix What it runs
(none) Console commands
> JavaScript (GraalJS) — live game access
>> Real Java via JShell (dev/JDK only)
Scripts get mc, player, world, lc (feature toggles), and fx — a helper API for particles, movement, HUD text, and more that works on a normal install.
Run code every tick with tick <code>, or save proper multi-line scripts as files:
script new myscript → create & open in your editor script run myscript → run once script tick myscript → run every tick

Scripts live in config/live-console/scripts/.

Aliases

Set a shortcut for a visual effect:

alias ring > (function(){for(var i=0;i<16;i++){var a=i/16*6.283;fx.particle('flame',fx.px()+Math.cos(a)*2,fx.py()+0.5,fx.pz()+Math.sin(a)*2);}})()

Now when you type ring in the console, it spawns a flame ring. Remove it with unalias ring. Bind it to a key: bind r ring

Press R in-game and you get a ring of fire around your feet.

Interactions with the chat enviroment

var lines = [
    "3",
    "2",
    "1",
    "GO!"
];

for (var i = 0; i < lines.length; i++) {
    // one message per run — run 4 times manually, or use tick with a timer
    fx.say(lines[i].replace(/&/g, "&"));
}

fx.say(">>> GO! <<<");

To run it: script new chat Copy paste the content provided above into the new file Save script run chat

Console features

  • Tab completion and command history
  • Scrollback with mouse wheel / Page Up & Down
  • Ctrl+C copies the full log; click a line to copy just that line
  • In-game docs command for the full guide
  • Logo and header in the console UI

Requirements

  • Minecraft 1.21.1+
  • Fabric Loader + Fabric API
  • Java 21+

Screenshots

Gallery

  • Speedometer
    Speedometer Text and particle showcasing movement speed, all made with the console.
  • Soul Rain
    Soul Rain Soul Rain particle effect done with the console.
  • Double helix
    Double helix Double helix made with the console
  • Console
    Console Showcase of the ingame console

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

<1,000
Downloads
Last Updated
CurseForge
Created
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works