Tasker-style automation framework for Minecraft. Build powerful loops with blocks, triggers, and conditions.
MC Looper is a client-side scripting & automation framework for Minecraft β inspired by Tasker on Android. It lets you build loops (scripts) made of blocks (actions, conditions, logic) that run when triggers fire.
Create workflows made of blocks that run top-to-bottom. Call other loops like functions for maximum reusability and modularity.
Wait with randomized delays, simulate clicks, send commands, capture regex patterns, make HTTP requests, and control flow with conditions.
Run on intervals, react to chat messages, listen for condition changes, or trigger manually when needed.
Advanced logic with variable comparisons, GUI/inventory checks, chat regex matching, and AND/OR/NOT operations.
Store and share values across loops. Regex captures create multiple variables with automatic counting.
Comprehensive logging with before/after variable snapshots and per-block execution details.
.jar
file into your Minecraft mods
folder
{
"name": "Skyblock Connect",
"enabled": true,
"trigger": {
"type": "on_gui_item",
"params": {
"pattern": "(?!.*Op)\\bSkyblock\\b",
"var_prefix": "skyblock_item"
}
},
"blocks": [
{
"type": "wait",
"params": {
"unit": "ticks",
"time": 20.0
}
},
{
"type": "if",
"condition": {
"type": "gui_contains",
"params": {
"regex_pattern": "(?!.*Op)\\bSkyblock\\b",
"search_mode": "regex",
"var_name": "gui_item_var"
}
}
},
{
"type": "click_gui_item",
"params": {
"name_pattern": "(?!.*Op)\\bSkyblock\\b",
"var_name": ""
}
}
]
}
"type": "wait"
with "unit": "ticks"
or "seconds"
β Add precise delays
"type": "click_gui_item"
with regex patterns β Click GUI items by name pattern
"type": "chat"
and "type": "client_message"
β Send commands or debug messages
"on_gui_item"
, "on_chat"
, "interval"
β React to game events or time
"type": "if"
with "gui_contains"
or "gui_item_exists"
β Smart logic
"type": "post_request"
β Send data to external APIs with variables
Server Rules Matter: Many servers prohibit automation, macros, or AFK features. Always check your server's rules before using automation loops.
Use Responsibly: The author is not responsible for bans, account issues, or violations of server terms of service.
All Rights Reserved