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

How to configure Excellent Options and excellent item rates in MU Online

Learn how to configure excellent options per item type, tune the drop rate of excellent items and balance build power on your MU Online server.

GA Gabriel · Updated on Jul 25, 2024 · ⏱ 16 min read
Quick answer

Configuring Excellent Options correctly is one of the steps that most separates an amateur MU Online server from a serious, long-lasting project. In practice, excellent options define the power ceiling of builds, the appeal of farming, the value of each item in player-to-player trade and the pace at

Configuring Excellent Options correctly is one of the steps that most separates an amateur MU Online server from a serious, long-lasting project. In practice, excellent options define the power ceiling of builds, the appeal of farming, the value of each item in player-to-player trade and the pace at which the economy inflates or stays healthy. In this tutorial you will understand what each excellent option does, how they are rolled per item type, how to calibrate the excellent drop rate without wrecking the market and how to balance all of it for both PvP and PvM. The example files and parameter names here are only for reference; the exact format varies by emulator, but the game concepts are universal and apply to any season. If you have not yet built the server base, it is worth reading the guide on how to create a MU Online server first, so the structure is ready before you touch the rates.

Prerequisites

Before touching any configuration file, make sure you have the basic environment working and that you can safely restart services to test changes. Without this, you will not be able to validate anything you adjust.

  • A MU Online server already installed and starting without errors (GameServer, ConnectServer, DataServer and JoinServer online).
  • Access to your emulator's item and drop configuration files (often in folders such as Data, IGCData, ItemBag or database tables, depending on the distribution).
  • A text editor that respects encoding and line breaks (Notepad++, VS Code or similar). Never edit server files in the default Notepad if there is any risk of messing up the encoding.
  • A test client with an administrator or GM account to drop items and check the options in practice.
  • A full backup of the configuration folder before any change. Repeat after me: always make a backup.

What Excellent Options are in practice

In MU Online, an excellent item is one that, besides the normal attributes (level +0 to +15, additional option, luck, skill), carries one or more special options in a distinctive color. Visually, the item name appears in green and the extra options are listed in the description. These options are what make the item truly valuable, because they directly impact combat performance.

Excellent options fall into two big groups, and it is essential to understand this division before configuring anything:

  • Offensive options appear on weapons (swords, axes, bows, staffs, scepters). They affect damage, attack speed, mana cost and recovery.
  • Defensive options appear on armor pieces, shields, helmets, gloves, boots and pants. They affect life/mana recovery, damage reduction, defense increase and reflection rate.

Each item type has its own set of six possible slots, and the server rolls which ones get filled when the item drops as excellent.

Excellent options for weapons

Weapon options are the most coveted on any server because they define a character's real damage per second (DPS). The six classic options present in most seasons are:

Excellent option (weapon)In-game effect
Mana/8 on killRecovers mana equal to 1/8 of the slain monster's life
Life/8 on killRecovers life equal to 1/8 of the slain monster's life
Attack speed +7Increases the character's attack speed
Damage +2%Increases damage by a percentage
Damage +level/20Increases damage in proportion to the character's level
Mana reduction -1/...Reduces the mana cost of attacks

In PvM, the two recovery options ("life/8" and "mana/8") are the farmers' favorites because they allow hunting nonstop without pausing for potions. In PvP, the "damage +2%" combo with "damage per level" tends to be the strongest, which is why many administrators reduce the weight of these options in the roll to avoid absurd weapons.

Excellent options for defense

Defensive pieces work together: each excellent piece adds its own option, and a full set can stack powerful effects. The six typical defensive options are:

Excellent option (defense)In-game effect
Mana recovery +5%Increases maximum mana by a percentage
Life recovery +5%Increases maximum life by a percentage
Damage reduction +4%Reduces incoming damage
Damage reflection +5%Reflects part of the damage back to the attacker
Defense increase +...Increases the piece's defense value
Damage reduction by DEFAdditional mitigation bonus

Notice how "damage reduction +4%" repeated across several pieces can stack and make a character almost immortal in PvP. This is exactly the kind of detail that demands conscious balancing.

Configuring options per item type

Configuring excellent options usually happens on two levels: in the item definition file (where you declare whether an item can be excellent) and in the drop file (where you set the chance). In the example below, we use a generic item configuration structure — remember that the exact format varies by emulator:

; Illustrative example (varies by emulator)
; Index | Name | CanExcellent | OptionGroup | OptionWeight1..6
0  "Short Sword"   1  WEAPON  10 10 10 10 10 10
5  "Dragon Sword"  1  WEAPON  10 10  8 12 12  6
0  "Leather Armor" 1  DEFENSE 10 10 12  6 10 10

The OptionWeight column controls the relative probability of each of the six options being rolled when the item drops as excellent. Raising the weight of an option does not change the item's chance of being excellent — it only changes which option tends to appear once it is already excellent. This distinction is the cause of half the confusion first-time configurers run into.

Tuning the excellent item drop rate

Here is the heart of the economy. The chance of an item dropping in its excellent version is usually expressed as a per-thousand value (for example, 30 in 1000 = 3%) or as a direct percentage. In the drop configuration example below, the parameter that matters is the excellent chance:

; Illustrative example (varies by emulator)
ExcellentDropRate = 30      ; 30 per thousand = ~3%
ExcellentMinMonsterLevel = 30  ; only monsters above this level drop excellent
ExcellentAllowInSpots = 1

Follow these steps when calibrating the rate:

  1. Start conservative. A rate between 1% and 3% is already generous for high-rate servers and keeps the excellent item with some value.
  2. Set a minimum monster level to drop excellent, preventing early mobs from flooding the market.
  3. Restart only the necessary services and test with a GM account, killing the same group of monsters several times.
  4. Watch the market during the first 48 hours. If every player shop is packed with excellents, lower the rate.
  5. Adjust in small increments. Doubling the rate all at once tends to break the economy irreversibly.

Balancing between PvP and PvM

The biggest mistake of beginner administrators is configuring options thinking only about farming. A balanced server needs options that are good enough to encourage grinding, but not so strong that PvP becomes a contest of who got lucky on a drop. Some practical guidelines:

  • Reduce the weight of purely offensive weapon options if your server focuses on Guild War and Castle Siege.
  • Consider limiting combinations of more than two options from natural drops, leaving items with three or more options only to the Chaos Machine, where the player invests resources.
  • Monitor the "damage reflection" option, which in excessive amounts makes bosses and invasions frustrating.
  • Always test extreme builds yourself before releasing changes. Build a full-excellent character and see whether it becomes unplayably strong.

Verifying the results in the client

After applying the changes, log into the game with your test account and drop items repeatedly. Check three things: whether items are really coming out excellent at the expected rate, whether the rolled options match the configured weights, and whether no forbidden option is appearing on the wrong item type (for example, an offensive option on armor, which indicates a group error). If something looks off, the problem is almost always in the option group column or in a file that was not reloaded after the restart.

Common errors and fixes

ErrorLikely causeFix
No item drops excellentRate set to zero or minimum monster level too highCheck the excellent drop parameter and the configured minimum level
Offensive option appears on armorOption group swapped in the item fileCorrect the group column (WEAPON vs DEFENSE)
Market flooded with excellents in hoursDrop rate too highLower the rate gradually and monitor
Changes have no effectService not restarted or wrong file editedRestart the GameServer and confirm the file path
Excellent item with no options at allAll weights zeroed in the groupSet valid weights for at least one option
Corrupted encoding in the fileEdited in an incompatible editorRestore the backup and edit in an editor with the correct encoding

Launch checklist

  • Full backup of item and drop files completed.
  • Option groups (offensive/defensive) checked for each item type.
  • Weights of the six options set consciously per type.
  • Excellent drop rate calibrated to conservative values.
  • Minimum monster level for excellent configured.
  • Tested in the client with a GM account, dropping items repeatedly.
  • Full-excellent build tested in PvP and PvM to check balance.
  • Market monitored during the first 48 hours after the change.
  • Internal documentation of the chosen rates recorded for the team.

With Excellent Options well calibrated, your server delivers that satisfying sense of progression without turning into a mess of broken items within a few days. Always adjust in small steps, listen to player feedback and treat the rates as a living organism that needs continuous maintenance across seasons.

Frequently asked questions

What are Excellent Options in MU Online?

They are extra bonuses that appear on items flagged as excellent, such as increased damage, life recovery on kill and reduced mana per hit. Each item type can receive up to six different options.

How do I increase the drop rate of excellent items?

Adjust the excellent chance parameter in your emulator's drop configuration (usually a per-thousand or percentage value). High values inflate the economy quickly, so raise it gradually and watch the market.

Can every item receive the same excellent options?

No. Weapons, shields, defense sets and wing items have distinct option pools. A weapon gets offensive options, while an armor piece gets defensive options.

How many excellent options can an item have at once?

Usually up to six options per item, although a natural drop rarely generates more than two or three. Combinations with more options normally come from the Chaos Machine or from custom configurations.

Is it possible to disable specific excellent options?

Yes. Most emulators let you turn each option on or off individually, or adjust its relative weight in the roll, which helps prevent broken combinations on PvP servers.

GA
Guides & builds editor

Gabriel covers gameplay, class builds, PvP and progression. He tests every strategy on a live server before publishing.

Keep reading

Related articles