Alchemy Memory Handler v1.1.1
Intelligent memory & process management for Windows — built for gamers,
emulator users, and power users requiring tight process control.
AI-Adaptive
Learns memory patterns and detects memory leaks in real time.
Process Control
Manage Roblox, MuMu, and LDPlayer with explicit RAM limits.
Volt Integration
Auto-login, auto-open, and auto-update for Volt companion.
WebSocket API
Remote control interface via port 1337 with token auth.
Ready to use — launch Alchemy_Memory_Handling.exe and follow
the setup wizard. License activation is required on first startup.
Quick Start
After license activation, choose one of three presets:
- Kaitun — Balanced setup with AI-Adaptive enabled, 2 CPU cores, low memory overhead.
- Normal — Full configuration control with custom limits per process target.
- Crazy Kaitun — Aggressive preset: 120MB Roblox, 500MB emulators, 1 core restriction.
The main dashboard opens automatically with live graphs, process lists, and terminal logging.
Features overview
Alchemy Intelligent
Machine learning algorithm tracking growth velocity, leak patterns, and dynamic limit scaling.
Core Affinity
Assign dedicated CPU core masks per Roblox process to prevent core starvation.
VRAM Purge
Clear video RAM allocations via shortcut key or direct command execution.
Live Dashboard
Real-time metrics for system RAM, process working sets, frame timings, and event logs.
Supported Process Targets
- Roblox —
RobloxPlayerBeta.exe, RobloxApp with crash watchdogs.
- MuMu Player —
MuMuVMMHeadless.exe, MuMuNxDevice.exe.
- LDPlayer —
LD9BoxHeadless.exe, LDPlayer.exe.
Adaptive Watchdog — automatically re-applies quotas when process working sets spike or leak conditions are triggered.
Installation setup
System Requirements
- Windows 10 / 11 (64-bit Edition)
- .NET Framework 4.8 runtime or higher
- Administrator permissions (for process handle operations)
- Internet access for updates
Directory Layout
The standard distribution package contains the following structure:
├── Alchemy_Memory_Handling.exe
├── config.json
└── Bin/
└── volt-keepalive.exe
First Run Procedure
- Execute
Alchemy_Memory_Handling.exe as Administrator.
- Select the target mode preset (Kaitun / Normal / Crazy Kaitun).
- Configure optional Volt companion integration settings.
Security Notice — process memory adjustments may trigger false positives in defensive software. Add an exclusion if binary execution is blocked.
Memory Management core
The engine enforces strict working set limits and CPU thread affinity using native Windows APIs.
Target Quotas
| Target | Default Limit | Allowed Range |
| Roblox | 200 MB | 100 – 1000 MB |
| MuMu Player | 500 MB | 200 – 1000 MB |
| LDPlayer | 500 MB | 200 – 1000 MB |
API Mechanisms — limits are set via SetProcessWorkingSetSizeEx with quota flags, and thread priority classes adjusted to BELOW_NORMAL.
Operation Modes presets
Choose from three operational presets tailored for specific resource targets.
Kaitun Mode
AI-Adaptive active. Roblox RAM set dynamically (150-250MB). 2 CPU cores per instance.
Normal Mode
Manual control. User defines precise MB boundaries and CPU core thread masks.
Crazy Kaitun
Aggressive limits. Roblox capped at 120MB, single core affinity restriction.
Volt Integration UI
Integration parameters for the Volt companion graphical interface.
{
"volt": {
"enabled": true,
"autoUpdate": true,
"autoCheck": true,
"pinnedVersion": "",
"updateChannel": "stable",
"keepAlive": true,
"autoLogin": false,
"username": "",
"password": "",
"checkIntervalHours": 6
}
}
WebSocket API remote
Local control interface hosted on 127.0.0.1:1337.
Authentication Payload
AUTH:your_license_token_here
Command Reference
| Command | Description |
GET_CLIENTS | Returns JSON array of tracked process instances |
GET_STATUS | Returns system statistics and engine state |
KILL:PID | Terminates process matching specified PID |
ALLOCATE | Forces an immediate memory trim cycle |
PING | Returns pong status message |
Keyboard Shortcuts dashboard
Global keybindings available inside the dashboard interface.
Show Help F1
Save Snapshot F3
Cycle Theme F4
Toggle Auto F5
Force Trim F6
WebSocket Server F7
Clear VRAM F11
Quit UI Q
Terminal Commands CLI
Built-in interactive console commands.
| Command | Effect |
clear | Clears output console history |
refresh | Triggers full process tree re-scan |
alloc | Executes working set trim cycle |
vram | Flushes video memory buffers |
killall | Terminates all managed targets |
ws on / off | Controls local WebSocket listener |
Configuration schema
JSON structure stored at config.json.
{
"mode": "Normal",
"robloxLimitGB": 0.5,
"mumuLimitGB": 0.5,
"ldplayerLimitGB": 0.5,
"autoDetectInterval": 10,
"voltKeepAlive": false,
"robloxCPUCores": 2
}