Warning: Downloading files that are not marked as verified may be unsafe and could possibly damage your system!
Mods
4 files
-
Minecraft Trick mod
Only for servers. Tested on MC 1.21.5 vanilla
Mod needs mcrcon.exe from Tiiffi https://github.com/Tiiffi/mcrcon/releases/tag/v0.7.2
mcrcon.exe save location has to be put in config together with serveradress port and password.
Streamer needs to be set to OP so commands can be carried out. Functions only target streamer and are nearly undestructive.
Script connects via mcrcon to the server and sends predifined funny consolecomands, triggered by aiostool.
Functionlist:
Tobuscus
lol
suprise
flashbang
180
drunk
cramp
gewerkschaftspause
bigstep
giant
small
highjump
From COD BO2 inspired:
carpenter
doublepoints
instakill
max_ammo
nuke
What they do, i could tell you, but its funnier you find out yourself xD
good luck and P.S. chatlogging gets disabled at the beginning
Maybe expanded, maybe not. As for everything in the modding community xD- 2 Downloads
Submitted -
๐ General Description
The OBS Control mod allows seamless interaction with OBS Studio via the official WebSocket API. It lets you remotely control streaming, recording, scene switching, and audio sources โ directly from within the aiostool environment.
This mod is ideal for automation workflows, bot triggers, or external control systems integrated into your stream setup.
โ ๏ธ Requirements
OBS Studio with the obs-websocket plugin installed
(OBS v28+ includes it by default)
OBS WebSocket server must be running and accessible (e.g. ws://localhost:4455)
A config file named obs-config.json must be present in the mod directory
OBS must be running when commands are triggered
๐ ๏ธ Configuration
Create a file named obs-config.json in your modโs config folder with the following structure:
{ "host": "ws://localhost:4455", "password": "YOUR_PASSWORD" }This tells the mod how to connect to your OBS WebSocket server.
โ๏ธ Functions
Function
Description
main
Initializes and tests the WebSocket connection to OBS.
switchScene
Switches to a specific OBS scene. Requires scene as parameter.
startRecording
Starts local recording in OBS.
stopRecording
Stops the current recording session.
startStream
Starts the live stream.
stopStream
Stops the ongoing stream.
muteSource
Mutes a specific audio input. Requires source as parameter.
unmuteSource
Unmutes a muted audio input. Requires source as parameter.
refreshBrowserSource
Refreshes a browser source. Requires source as parameter.
๐ฌ Example Commands
๐ฌ Switch Scene
Key
Value
function
switchScene
scene
Intro
๐ Mute Source
Key
Value
function
muteSource
source
Microphone
๐ Refresh Browser Source
Key
Value
function
refreshBrowserSource
source
OverlayBrowser- 7 Downloads
Updated -
๐ General Description
The WLED Control mod lets you remotely control WLED-powered LED strips using simple HTTP commands. It enables color changes (RGB & HEX), activates visual effects, and can temporarily override the current LED state before returning to the previous one.
Perfect for use in reaction systems, bot actions, alerts, or lighting-based feedback.
โ ๏ธ Requirements
A WLED device running in your network
WLED must be accessible via HTTP (default: http://<your-ip>/win)
A local config file (wled-config.json) is required to define the WLED base URL
aiostool must be able to reach the WLED IP from the machine it's running on
๐ ๏ธ Configuration
Create a config file named wled-config.json and place it in the modโs config folder. Example content:
{ "host": "http://192.168.2.160/win" }
This sets the default base URL for the WLED device.
โ๏ธ Functions
main
Loads the host URL from the config file.
setRed
Sets the color to red (R:255, G:0, B:0).
setBlue
Sets the color to blue (R:0, G:0, B:255).
setGreen
Sets the color to green (R:0, G:255, B:0).
setCustom
Applies a user-defined color and effect using direct RGB values and effect IDs. Accepts:
fx, sx, a, r, g, b, ix
setCustomHEX
Same as setCustom, but color is passed as a HEX value (#rrggbb).
setRGB
Sets a static RGB color (no effect/animation). Accepts: r, g, b.
setHEX
Same as setRGB, but using a HEX color string.
setCustomTemp
Temporarily activates an effect and color, then restores the previous WLED state after a given time. Accepts same values as setCustom + time (in ms).
๐ฌ Example Commands
๐ด Switch to red
Key
Value
function
setRed
๐ Set custom RGB effect
Key
Value
function
setCustom
fx
1
sx
200
a
255
r
255
g
100
b
50
ix
128
๐จ Use HEX color with effect
Key
Value
function
setCustomHEX
fx
3
hex
#00ffff
โ ๏ธ Temporary alert effect (5 seconds)
Key
Value
function
setCustomTemp
fx
60
r
255
g
0
b
0
a
255
time
5000
๐ก Set static color with HEX
Key
Value
function
setHEX
hex
#ff66cc
๐ฏ Set static color with RGB
Key
Value
function
setRGB
r
120
g
20
b
240
๐งช This mod supports real-time LED feedback and custom lighting animations โ all configurable from your event system, overlay triggers, or chat commands.- 2 Downloads
Updated -
๐ General Description
The Countdown Timer mod creates a file-based countdown system that continuously updates a text file with the remaining time in a human-readable format.
Itโs ideal for stream overlays, break timers, giveaways, or event announcements. It supports autostart, manual control, and custom durations per action.
โ ๏ธ Requirements
aiostool must have write access to the file path defined in the config
A valid configuration file (countdown.json) must exist
The output file (e.g., countdown.txt) can be used in OBS via a text source
๐ ๏ธ Configuration
Create a file named countdown.json in your modโs config directory. Example:
{ "path": "countdown.txt", "time": 180, "autostart": false }
path: Absolute path to the output file where the formatted countdown will be written
time: Countdown duration in seconds (default if not overridden by an action)
autostart: If true, the countdown starts automatically on script load
โ๏ธ Functions
Function
Description
main
Initializes the mod and loads the config. Starts automatically if configured.
start
Starts the countdown (optionally with a custom time).
stop
Stops the countdown and writes the last remaining time to file.
The countdown will update the file every second in a dynamic format:
ss (e.g., 9)
mm:ss (e.g., 03:25)
hh:mm:ss (e.g., 01:07:42)
๐ฌ Example Commands
โถ๏ธ Start with default config time
Key
Value
function
start
โฑ๏ธ Start with custom time (e.g. 90 seconds)
Key
Value
function
start
time
90
๐ Stop countdown
Key
Value
function
stop
๐งช This mod is perfect for creating real-time timers visible in OBS.- 1 Downloads
Updated
Top Downloads
No files have been downloaded yet this week.
No files have been downloaded yet this month.
-
OBS Control
๐ General Description The OBS Control mod allows seamless interaction with OBS Studio via the official WebSocket API. It lets you remotely control streaming, recording, scene switching, and audio sources โ directly from within the aiostool environment. This mod is ideal for automation workflows, bot triggers, or external control systems integrated into your stream setup. โ ๏ธ Requirements OBS Studio with the obs-websocket plugin installed (OBS v28+ includes it by default) OBS WebSocket server m- 6 Downloads
-
WLED-Mod
๐ General Description The WLED Control mod lets you remotely control WLED-powered LED strips using simple HTTP commands. It enables color changes (RGB & HEX), activates visual effects, and can temporarily override the current LED state before returning to the previous one. Perfect for use in reaction systems, bot actions, alerts, or lighting-based feedback. โ ๏ธ Requirements A WLED device running in your network WLED must be accessible via HTTP (default: http://<your-ip>/win) A local- 2 Downloads
-
Minecraft 1.21.5 Trick mod
Minecraft Trick mod Only for servers. Tested on MC 1.21.5 vanilla Mod needs mcrcon.exe from Tiiffi https://github.com/Tiiffi/mcrcon/releases/tag/v0.7.2 mcrcon.exe save location has to be put in config together with serveradress port and password. Streamer needs to be set to OP so commands can be carried out. Functions only target streamer and are nearly undestructive. Script connects via mcrcon to the server and sends predifined funny consolecomands, triggered by aiostool. Functionlist: Tobuscus- 2 Downloads
-
Countdown Timer
๐ General Description The Countdown Timer mod creates a file-based countdown system that continuously updates a text file with the remaining time in a human-readable format. Itโs ideal for stream overlays, break timers, giveaways, or event announcements. It supports autostart, manual control, and custom durations per action. โ ๏ธ Requirements aiostool must have write access to the file path defined in the config A valid configuration file (countdown.json) must exist The output file (e.g., coun- 1 Downloads
-
OBS Control
๐ General Description The OBS Control mod allows seamless interaction with OBS Studio via the official WebSocket API. It lets you remotely control streaming, recording, scene switching, and audio sources โ directly from within the aiostool environment. This mod is ideal for automation workflows, bot triggers, or external control systems integrated into your stream setup. โ ๏ธ Requirements OBS Studio with the obs-websocket plugin installed (OBS v28+ includes it by default) OBS WebSocket server m- 6 Downloads
-
WLED-Mod
๐ General Description The WLED Control mod lets you remotely control WLED-powered LED strips using simple HTTP commands. It enables color changes (RGB & HEX), activates visual effects, and can temporarily override the current LED state before returning to the previous one. Perfect for use in reaction systems, bot actions, alerts, or lighting-based feedback. โ ๏ธ Requirements A WLED device running in your network WLED must be accessible via HTTP (default: http://<your-ip>/win) A local- 2 Downloads
-
Minecraft 1.21.5 Trick mod
Minecraft Trick mod Only for servers. Tested on MC 1.21.5 vanilla Mod needs mcrcon.exe from Tiiffi https://github.com/Tiiffi/mcrcon/releases/tag/v0.7.2 mcrcon.exe save location has to be put in config together with serveradress port and password. Streamer needs to be set to OP so commands can be carried out. Functions only target streamer and are nearly undestructive. Script connects via mcrcon to the server and sends predifined funny consolecomands, triggered by aiostool. Functionlist: Tobuscus- 2 Downloads
-
Countdown Timer
๐ General Description The Countdown Timer mod creates a file-based countdown system that continuously updates a text file with the remaining time in a human-readable format. Itโs ideal for stream overlays, break timers, giveaways, or event announcements. It supports autostart, manual control, and custom durations per action. โ ๏ธ Requirements aiostool must have write access to the file path defined in the config A valid configuration file (countdown.json) must exist The output file (e.g., coun- 1 Downloads