Brazil's biggest MU Online portal — since 2003
Tutorial Intermediate Tutoriais

How to Configure Chaos System Rates on MU Online Server

Learn how to configure Chaos System success rates and combinations on your MU Online server using SQL queries and .ini config files.

VI ViciadosMU Team · Updated on 3 jul 2026 · ⏱ 12 min read

How to Configure Chaos System Rates on MU Online Server

The Chaos System is one of the most important and impactful systems in any MU Online private server. Combination success rates directly affect the server economy, player satisfaction, and the volume of Zen in circulation. In this tutorial, you will learn how to locate, understand, and adjust these rates via both SQL database queries and configuration files.


Prerequisites

Before starting, make sure you have:

  • Access to SQL Server Management Studio (SSMS) with db_owner permissions on the MuOnline database
  • Access to the GameServer installation directory (e.g., C:\MuServer\GameServer\)
  • The server stopped, or at minimum, permission to restart it after making changes
  • An up-to-date database backup
Atenção: Never change Chaos System rates on a production server without first performing a full database backup. An incorrect configuration can corrupt ongoing combinations or cause the GameServer to fail on startup.

Part 1: Understanding the Chaos System Structure

The Chaos System in MU Online controls three main categories of combinations:

  1. Chaos Combination — combinations using the Jewel of Chaos to create or upgrade items
  2. Item Upgrade (+10 to +15) — leveling items beyond the standard cap
  3. Wing Creation — creating Level 1, 2, and 3 wings

Each category has its own success rate, Zen cost, and in some cases, a failure penalty (item destruction or downgrade).


Part 2: Locating Configurations in the Database

Step 1 — Connect to the database

Open SSMS and connect to your SQL Server instance. Select the MuOnline database:

USE MuOnline;
GO

Step 2 — Identify the Chaos configuration table

Run the query below to list tables related to the Chaos System:

SELECT TABLE_NAME
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_NAME LIKE '%Chaos%'
ORDER BY TABLE_NAME;

On Season 6 Episode 3 servers, the main table is ChaosSystem. On older versions (Season 2-4), it may be T_ChaosSystem or ChaosTable.

Step 3 — Check the table structure

SELECT COLUMN_NAME, DATA_TYPE
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'ChaosSystem'
ORDER BY ORDINAL_POSITION;

The most relevant columns are:

ColumnDescription
TypeCombination type (0=Chaos Mix, 1=Upgrade, 2=Wing)
RateSuccess rate as a percentage (0–100)
ZenCostZen cost to perform the combination
ItemDestroyWhether the item is destroyed on failure (0=No, 1=Yes)

Step 4 — Query current rates

SELECT
    Type,
    Rate,
    ZenCost,
    ItemDestroy,
    Description
FROM MuOnline.dbo.ChaosSystem
ORDER BY Type, Rate;

Part 3: Changing Rates via SQL

Step 5 — Adjust the general Chaos Combination rate

To modify the success rate for Chaos-type combinations (Type = 0):

UPDATE MuOnline.dbo.ChaosSystem
SET Rate = 75
WHERE Type = 0;
Nota: The value 75 represents a 75% chance of success. Adjust according to your server's policy. Many high-rate servers use rates between 70% and 85%.

Step 6 — Adjust item upgrade rates (+10 to +15)

-- Items +10
UPDATE MuOnline.dbo.ChaosSystem
SET Rate = 60, ZenCost = 5000000
WHERE Type = 1 AND ItemLevel = 10;

-- Items +11
UPDATE MuOnline.dbo.ChaosSystem
SET Rate = 55, ZenCost = 7000000
WHERE Type = 1 AND ItemLevel = 11;

-- Items +12
UPDATE MuOnline.dbo.ChaosSystem
SET Rate = 45, ZenCost = 10000000
WHERE Type = 1 AND ItemLevel = 12;

-- Items +13
UPDATE MuOnline.dbo.ChaosSystem
SET Rate = 35, ZenCost = 15000000
WHERE Type = 1 AND ItemLevel = 13;

-- Items +14
UPDATE MuOnline.dbo.ChaosSystem
SET Rate = 30, ZenCost = 20000000
WHERE Type = 1 AND ItemLevel = 14;

-- Items +15
UPDATE MuOnline.dbo.ChaosSystem
SET Rate = 25, ZenCost = 30000000
WHERE Type = 1 AND ItemLevel = 15;

Step 7 — Configure wing creation rates

-- Level 1 Wings (Type = 2, WingLevel = 1)
UPDATE MuOnline.dbo.ChaosSystem
SET Rate = 80, ZenCost = 2000000
WHERE Type = 2 AND WingLevel = 1;

-- Level 2 Wings (Type = 2, WingLevel = 2)
UPDATE MuOnline.dbo.ChaosSystem
SET Rate = 70, ZenCost = 5000000
WHERE Type = 2 AND WingLevel = 2;

-- Level 3 Wings (Type = 2, WingLevel = 3)
UPDATE MuOnline.dbo.ChaosSystem
SET Rate = 60, ZenCost = 10000000
WHERE Type = 2 AND WingLevel = 3;

Part 4: Configuration via .ini File (Season 6+)

In many Season 6 distributions, Chaos System rates can also be controlled by the ChaosMix.ini file, located at:

C:\MuServer\GameServer\Data\ChaosMix\ChaosMix.ini

Step 8 — Open and edit ChaosMix.ini

Open the file with a text editor (Notepad++ recommended). The basic structure of each entry is:

[ChaosMix_01]
Type=0
SubType=0
Rate=75
ZenCost=2000000
ItemDestroy=0
Description=Chaos Combination Standard

To find the wings section, look for entries with Type=2:

[ChaosMix_Wing1]
Type=2
WingLevel=1
Rate=80
ZenCost=2000000
ItemDestroy=0
Description=Wing Level 1 Creation

[ChaosMix_Wing2]
Type=2
WingLevel=2
Rate=70
ZenCost=5000000
ItemDestroy=1
Description=Wing Level 2 Creation
Dica: If your server uses both the database and the .ini file for Chaos System rates, the .ini file generally takes priority. Check the GameServer logs (GameServer/Logs/) to see which source is being loaded at startup — look for lines containing ChaosMix Load or ChaosSystem Init.

Step 9 — Configure failure penalties

The failure penalty is defined by the ItemDestroy field:

  • ItemDestroy=0 — Failure without destroying the item (only materials are lost)
  • ItemDestroy=1 — The main item is destroyed on failure

To configure via SQL:

-- Remove item destruction for standard combinations (more player-friendly)
UPDATE MuOnline.dbo.ChaosSystem
SET ItemDestroy = 0
WHERE Type = 0;

-- Keep item destruction only for upgrades above +12 (for balance)
UPDATE MuOnline.dbo.ChaosSystem
SET ItemDestroy = 1
WHERE Type = 1 AND ItemLevel >= 13;

Part 5: Applying Changes

Step 10 — Review changes before restarting

Confirm all rates with a review query:

SELECT
    Type,
    CASE Type
        WHEN 0 THEN 'Chaos Mix'
        WHEN 1 THEN 'Item Upgrade'
        WHEN 2 THEN 'Wing Creation'
    END AS TypeDescription,
    Rate,
    ZenCost,
    ItemDestroy
FROM MuOnline.dbo.ChaosSystem
ORDER BY Type;

Step 11 — Restart the GameServer

Changes only take effect after restarting the GameServer. Follow this sequence:

  1. Close GameServer.exe via the admin panel or Task Manager
  2. Wait 30 seconds to ensure all processes have terminated
  3. Start GameServer.exe again
  4. Monitor GameServer/Logs/GameServer_YYYYMMDD.log for loading errors
GameServer/Logs/GameServer_20240115.log

Look for the confirmation line:

[INFO] ChaosSystem: Loaded 48 mix configurations successfully.
Atenção: Restarting the GameServer disconnects all players. Plan maintenance during low-traffic hours or announce it in advance on your server website or Discord.

Common Troubleshooting

Rates did not change after restart: Verify the SQL changes were committed. Run SELECT @@TRANCOUNT — if it returns a value greater than 0, a transaction is still open. Run COMMIT to confirm the changes.

GameServer does not start after editing the .ini: Open ChaosMix.ini and check for special characters or incorrectly formatted lines. Restore your backup and reapply changes one at a time.

Rate appears different to players than expected: Some servers display rates modified by character bonuses or ring items. These are calculated at runtime by the GameServer and do not affect the base table. Check GameServer/Data/ChaosBonus.ini to adjust bonus multipliers.


Dica: Keep a record of all rate changes in a dedicated log file (changelog_chaos.txt) including the date, previous value, and new value. This makes it easy to revert configurations if balance needs to be adjusted after player feedback.

Perguntas frequentes

Which database table controls the Chaos System rates?

Depending on your server version, rates are stored in the ChaosSystem or T_ChaosSystem table inside the MuOnline database. On Season 6 servers, look for the MEMB_CHAOS table or the ChaosCastle.ini file under GameServer/Data/.

Why don't my database changes take effect on the server?

The GameServer loads Chaos System configurations at startup. After any changes to the database or .ini files, you must restart the GameServer for them to take effect.

What is the recommended maximum success rate for Chaos Combination?

To maintain server economy balance, rates between 70% and 85% are recommended for items +9 and below, and between 50% and 70% for items above +9. Rates above 90% can quickly unbalance the in-game economy.

How do I configure different rates for specific combinations (e.g., wings)?

In the ChaosMix.ini file under GameServer/Data/ChaosMix/, each line represents one combination. The Rate field defines the percentage success rate. For wings, locate entries with Type=Wing and adjust the Rate value individually.

VI

ViciadosMU Team

Equipe editorial do ViciadosMU — portal de MU Online no ar desde 2003.

Keep reading

Related articles