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

How to configure Box of Kundun drops (+1 to +5) in MU Online

Understand the five Box of Kundun tiers, decide which monsters and maps drop them, and configure the contents of each box to reward progression without breaking your MU Online server's economy.

BR Bruno · Updated on Sep 14, 2025 · ⏱ 17 min read
Quick answer

The Box of Kundun is among the most iconic items in MU Online. That little box dropping from a monster carries the promise of a good item, and it is precisely that anticipation that keeps players farming for hours. Configuring them well is a balancing art: you need to decide which monsters drop each

The Box of Kundun is among the most iconic items in MU Online. That little box dropping from a monster carries the promise of a good item, and it is precisely that anticipation that keeps players farming for hours. Configuring them well is a balancing art: you need to decide which monsters drop each box tier, how often they drop, and, most importantly, what is inside them. An overly generous setup floods the server with high-tier items and breaks the economy; a stingy setup frustrates players and drives them away. In this tutorial you will understand the five Box of Kundun tiers, learn to distribute them across maps and monsters, and adjust the contents of each box in a balanced way. If you are still building the project from scratch, it is worth reviewing the guide on how to create a MU Online server first, since drop decisions fit better on top of a well-built foundation.


Prerequisites

Before editing any table, make sure you have the right environment:

  • Access to the GameServer configuration files (your distribution's monster drop and box content files).
  • Access to the MuOnline database, in case your emulator stores box contents in SQL.
  • A full backup of the drop files and the database before making any changes.
  • Knowledge of the item IDs for your version (group and index of each item), since boxes reference items by these codes.
  • A test environment where you can spawn monsters and open boxes repeatedly without affecting the players' economy.

> Important: the file names, columns, and formats mentioned here are common examples. The exact location and format vary by emulator. Always confirm against your distribution's documentation.


What the Box of Kundun is and how it works

Mechanically, the Box of Kundun is an item-container: an object that, when opened by the player (usually with a right-click in the inventory), runs an internal roll table and delivers one or more items. The cycle is always the same:

  1. A monster dies and its drop table has a chance to drop a Box of Kundun of a given tier.
  2. The player picks up the box into their inventory.
  3. On opening, the server consults that box's content table.
  4. The server rolls an item according to the configured chances and delivers it to the player.

There are two distinct configuration points, and confusing them is the most common beginner mistake:

  • Where and how often the box drops — configured in the monster drop table.
  • What comes out of the box — configured in the box's content table.

You need to touch both places to have full control. Increasing the box drop without reviewing the contents can flood the server with good items; improving the contents without controlling the drop does the same by another route.


The five tiers: +1 to +5

The numeric suffix of the Box of Kundun indicates the tier of the box. The classic MU convention associates each tier with a loot quality range and with monsters of a given level. The table below shows the most widely used reference pattern:

Box tierMonsters that drop it (reference)Typical contents
Box of Kundun +1Common mobs on early mapsBasic items, common jewels, low-level equipment
Box of Kundun +2Mobs on intermediate mapsMid-level equipment, occasional chance of low excellent
Box of Kundun +3Mobs on advanced mapsMid-to-high level items, jewels, chance of excellent
Box of Kundun +4Endgame mobs and mini-bossesHigh-tier items, excellent more frequently
Box of Kundun +5Bosses and top-level monstersBest items, excellent, rare jewels, chance of wings

The logic is intuitive: the box follows the monster's level. A player facing monsters on an advanced map deserves better boxes; one farming early mobs gets basic boxes. Keeping this alignment prevents someone from parking on an easy map to harvest high-tier loot — which would ruin both progression and the economy.

Keep in mind that the Box of Luck is a close cousin: mechanically it is also a box with a content table, but it usually comes from events, quests, or the cash shop, and tends to roll "lucky" items (with Luck) or special prizes. What you learn here about configuring contents applies to it just the same.


Step 1: define where each box drops

The first step is to decide which monsters drop each Box tier and with what chance. This is done in the monster drop table, usually a text file associated with the GameServer. The format varies by emulator, but conceptually you add a line linking the monster ID to the Box of Kundun item with a percentage chance.

; Illustrative example of a monster drop table
; Conceptual format: MonsterID  ItemGroup  ItemIndex  Chance%   ; comment
; (the real format varies by emulator — this is only for teaching)

; Early-map mobs -> Box +1
 45   14   90   3.0     ; Box of Kundun +1 at 3%
 46   14   90   3.0     ; Box of Kundun +1 at 3%

; Intermediate-map mobs -> Box +2 and +3
 92   14   91   2.5     ; Box of Kundun +2 at 2.5%
 93   14   92   1.5     ; Box of Kundun +3 at 1.5%

; Endgame mobs -> Box +4
138   14   93   1.0     ; Box of Kundun +4 at 1%

; Boss -> Box +5 (higher chance because it's a boss)
200   14   94   25.0    ; Box of Kundun +5 at 25%

> The ItemGroup and ItemIndex values above are only examples. The real indices for the Box of Kundun change by version. Check your distribution's item list to find the correct codes.

Recommendations for setting drop chances:

  • Low-tier boxes drop more often. Since their contents are modest, a chance of 2% to 5% on common mobs keeps farming smooth with no economic impact.
  • High-tier boxes drop less often. Box +4 and +5 should be rare on normal mobs (0.5% to 1.5%). On bosses, you can raise it considerably, because the boss itself is already a controlled event.
  • Bosses can have a guaranteed or near-guaranteed drop. It is common for a raid boss to drop a Box +5 at a high chance (or 100%), turning the box into the fight's central reward.

Step 2: configure the contents of each box

Now the heart of the configuration: what comes out. Each box tier has its own content table, a list of possible items with their chances. Depending on the emulator, this table lives in a dedicated file (something like an "ItemBag" or "BoxOfKundun") or in the database.

; Illustrative example of the contents of a Box of Kundun +3
; Conceptual format: ItemGroup  ItemIndex  ItemLevel  Chance%  ExcOpt  Luck
; (the real format varies by emulator)

; Jewels (most common inside the box)
 14   13   0   25.0   0  0     ; Jewel of Bless 25%
 14   14   0   20.0   0  0     ; Jewel of Soul 20%
 14   31   0    5.0   0  0     ; Jewel of Life 5%

; Mid-to-high level equipment
  0    9   4   8.0    0  0     ; mid-level weapon +4
  2    5   4   8.0    0  0     ; mid-level helmet +4

; Chance of excellent (rare inside the +3)
  0    9   4   2.0   16  0     ; weapon +4 with excellent option

Principles for building a balanced content table:

  1. Most of the chance should go to "consolation" items. Common jewels (Bless, Soul) fill the bulk of the openings. This ensures that opening a box is almost never completely disappointing.
  2. Desirable items get low chances. Excellent, rare jewels, and wings are the icing on the cake — 1% to 5% at most, depending on the box tier.
  3. The total does not need to add up to 100%. Many emulators roll item by item or use relative weights; some allow an "empty box". Check how your distribution interprets the chances.
  4. Scale quality with the tier. The Box +5 table should contain items noticeably better than the +1 table. Repeating the same contents across all tiers defeats the purpose of progression.

Step 3: balancing across the five tiers

With drop and contents defined, look at the whole set. The classic mistake is to configure each box in isolation and end up with strange curves — for example, a Box +3 that, in practice, gives better loot than the +4 because its content table ended up too generous. Check the vertical progression:

Expected value curve per opening (conceptual)

  +5  ##########################  high-tier items, excellent, wings
  +4  ####################        occasional high-tier items
  +3  ##############              mid-to-high, jewels, rare excellent
  +2  #########                   mid, common jewels
  +1  #####                       basic, common jewels

Each step should be noticeably better than the previous one. A practical way to validate: ask yourself "would a player be happy to trade ten Box +2 for one Box +5?". If the answer is no, your curve is flat and the high tiers are not worth the extra effort of farming them.

Also consider the aggregate economic impact. Multiply the drop chance of a box by the chance of a rare item inside it to estimate how many wings or excellents enter the server per day. If the number is too high, those items quickly lose value in trade — the same principle of sources and sinks that governs the Zen economy.


Step 4: testing without waiting on RNG

You do not need to (and should not) rely on luck to validate the configuration. Use GM commands to speed up testing in a controlled environment:

; Conceptual examples — the exact syntax varies by emulator
/item 14 94        ; create a Box of Kundun +5 in the inventory to open and test
/create 200        ; spawn the boss that drops the Box +5 to test the drop
/makemonster 138   ; spawn an endgame mob to check the Box +4 drop

Open dozens of boxes in a row and note what comes out. If in 30 openings of a Box +5 you never saw anything beyond common jewels, the chance for the desirable items is too low or misconfigured. If every opening delivers excellent, it is too high. Adjust, restart the GameServer (mandatory on most distributions), and test again.


Common errors and fixes

ErrorSymptomFix
Confusing box drop with box contentsAdjustments "have no effect" on what comes out of the boxEdit the content table, not just the monster drop table
Box +5 dropping on easy mobsPlayers farm top loot on an early mapAlign each box tier with the monster's level
Identical contents across all tiersBox +5 is worth no more than the +1Scale content quality by tier
Rare items with too high a chanceExcellent and wings lose value in tradeReduce the chance of top items inside the box
Wrong item IDsBox disappears or delivers the wrong item on openingConfirm group/index in the version's item list
Not restarting after editingChanges not appliedRestart the GameServer (varies by emulator)
Not testing with GM commandsDiscovering imbalance only with players onlineSpawn bosses/mobs and open boxes in a test environment

Launch checklist

Before releasing the Box of Kundun to players, confirm:

  • Backup of the drop files and the database done.
  • Correct IDs for the Box of Kundun +1 to +5 confirmed in the version's item list.
  • Each box tier assigned to monsters of the appropriate level.
  • Conservative drop chances on common mobs and more generous ones on bosses.
  • Content table for each tier configured with noticeable progression.
  • Rare items (excellent, rare jewels, wings) with low, controlled chances.
  • Estimated economic impact (rare items per day) considered acceptable.
  • Openings tested in bulk via GM commands in a test environment.
  • Box of Luck reviewed separately, if the server uses it.
  • GameServer restarted and behavior validated before opening to players.

Configuring the Box of Kundun well is about balancing excitement and economy. The box needs to be exciting enough that the player wants one more, but never so generous that it makes farming pointless. Start conservative, test with commands, watch the market, and adjust in cycles — that way you preserve that delicious promise only a Box of Kundun knows how to deliver.

Frequently asked questions

What is the difference between the +1 to +5 Box of Kundun?

The number indicates the tier of the box and, consequently, the quality of what it can contain. A +1 Box gives more basic items and drops from low-level monsters; a +5 Box drops from high-level monsters and can contain excellent items, rare jewels, and high-tier equipment. The higher the number, the better the potential loot.

What is the difference between a Box of Kundun and a Box of Luck?

The Box of Kundun drops from monsters by level and delivers items according to an internal content table. The Box of Luck usually comes from events, the cash shop, or quests, and tends to have its own prize table, often with a higher chance of luck items. Mechanically they are both boxes with a content table; the difference lies in their source and in what each one rolls.

Which monsters should drop each Box tier?

The general rule follows the monster's level: low-tier boxes from common mobs on early maps, and high-tier boxes (+4, +5) from monsters on endgame maps and bosses. Keeping the box aligned with the monster's level prevents players from farming high-tier loot on easy maps.

How do I control what comes out of a Box of Kundun?

Each box has a content table that lists the possible items and their chances. Depending on the emulator, this table lives in a specific file (for example, an ItemBag or BoxOfKundun) or in the database. You edit the item list, the levels, and the probability of each one.

Do I need to restart the server after changing the box drops?

Yes, on most distributions. Both the monster drop table and the box contents are usually loaded at GameServer startup. This varies by emulator, so confirm whether your distribution supports reloading the settings without restarting.

BR
Events, maps & items editor

Bruno specializes in MU Online events, maps, bosses and item economy. He documents every detail based on real gameplay.

Keep reading

Related articles