How to configure the Jewel of Guardian in MU Online
Complete guide to configuring the Jewel of Guardian in MU Online: applying the guardian option, success rate, item protection, and drop configuration.
The Jewel of Guardian is one of the jewels that define the item protection layer on modern MU Online servers. While Bless and Soul handle refinement and Life handles options, Guardian moves into more delicate territory: item safety. It applies what is called the guardian option — a protection attrib
The Jewel of Guardian is one of the jewels that define the item protection layer on modern MU Online servers. While Bless and Soul handle refinement and Life handles options, Guardian moves into more delicate territory: item safety. It applies what is called the guardian option — a protection attribute that, depending on the emulator, reduces the risk of loss during refinement, adds defense, or marks the equipment as protected. Configuring this jewel correctly is what separates a tense, rewarding refinement system from a frustrating one in which players lose expensive items and abandon the server.
This guide covers the entire Jewel of Guardian cycle: understanding the attribute it grants, configuring the application success rate, restricting where it can be used, defining the behavior on failure, and calibrating the drop to keep the jewel at the right value. As always, I use table and file names as examples; the logic is common to almost every emulator, but the names and the exact mechanics of the guardian option vary by emulator. If you don't have your server up yet, start with the tutorial on how to create a MU Online server.
Prerequisites
- Server files that support the Jewel of Guardian and the guardian option natively.
- Database access with write permission on the game database (
MuOnlinein most cases). - Access to the GameServer data folder, typically
GameServer/Data/, where the jewel, item, and drop configurations live. - A text editor with the correct encoding to edit
.txt,.ini, or.xmlwithout corrupting them. - A full backup of the database and configurations before any change.
- A test GM character with high-refinement items to validate application, success, and failure.
Step 1: Understand the guardian option
The starting point is understanding what the Jewel of Guardian actually writes onto the item. The guardian option is a protection attribute associated with the equipment. In emulators, it usually manifests in one of these forms (or a combination):
| Guardian option manifestation | Practical effect |
|---|---|
| Protection against breaking during refinement | Reduces or nullifies the chance of the item vanishing when Bless/Soul fails |
| Additional defense layer | Adds a defensive bonus while the attribute is active |
| Protected item mark | Prevents item loss on PvP/death, if the server has that mechanic |
| Requirement for specific content | Enables the item in areas that require "guarded" items |
The important point: the guardian option is an attribute written onto the item, with its own index or flag. Like other options, this index is a contract — the server writes it, and the client (when there is a visual display) translates it. Before configuring anything, find out which effect your emulator assigns to the jewel, because that changes your entire balancing strategy.
Step 2: Locate the jewel configuration
Find where your emulator declares the Jewel of Guardian and its behavior. There are two patterns:
- File-based — a
.txt/.ini/.xmlin the data folder describes the jewel, its success rate, and restrictions. - Database-based — a table stores the jewel's parameters.
For the database pattern, explore the available names:
USE MuOnline
GO
SELECT name FROM sys.tables
WHERE name LIKE '%Jewel%' OR name LIKE '%Guardian%' OR name LIKE '%Option%'
GO
A jewel configuration table (illustrative name T_JewelConfig) usually has columns like:
| Column (example) | Description |
|---|---|
JewelType | Identifies the jewel (Guardian, Bless, Soul, etc.) |
SuccessRate | Percentage success rate of the application |
AllowedItemKind | Item types that accept the jewel |
MinItemLevel | Minimum refinement level required on the target item |
FailBehavior | What happens on failure |
In the file pattern, look for something like GameServer/Data/JewelOfGuardian.txt:
[JewelOfGuardian]
Enable=1
SuccessRate=60 ; 60% chance to apply the guardian option
MinItemLevel=7 ; item must be +7 or higher
AllowedItemKind=weapon,armor
FailBehavior=consume ; on failure, just consume the jewel (varies by emulator)
Step 3: Configure the success rate
The success rate is the main dial for tension and value. A high rate makes protection accessible and refinement relaxed; a low rate makes Guardian a precious resource and the endgame risky. Choose deliberately according to the server's profile.
USE MuOnline
GO
-- Set 60% success on the Jewel of Guardian application
UPDATE T_JewelConfig
SET SuccessRate = 60
WHERE JewelType = 'Guardian'
GO
Calibration reference by server profile:
| Server profile | Suggested success rate | Effect on gameplay |
|---|---|---|
| Fun / Easy | 80% to 100% | Nearly guaranteed protection, stress-free refinement |
| Balanced | 50% to 70% | Healthy tension, jewel retains value |
| Hard | 20% to 40% | Rare protection, high-risk endgame |
Step 4: Restrict where the jewel can be applied
Letting Guardian apply to any item makes the system trivial. Restrict it by item type and by minimum refinement level, ensuring protection is an investment in equipment already worth protecting.
USE MuOnline
GO
-- Only allow Guardian on items +7 or higher
UPDATE T_JewelConfig
SET MinItemLevel = 7
WHERE JewelType = 'Guardian'
GO
In the file pattern, adjust the allowed categories:
[JewelOfGuardian]
AllowedItemKind=weapon,armor,helm,gloves,boots
MinItemLevel=7
Step 5: Define the behavior on failure
What happens when the application fails defines how punishing the system is. The most common behaviors (the one supported varies by emulator):
- Consume the jewel with no effect — the only penalty is the cost of the lost jewel. This is the friendliest.
- Reduce the item's refinement — the failure downgrades the item a few levels. Medium penalty.
- Destroy the item — the failure erases the equipment. Maximum penalty, typical of hard servers.
[JewelOfGuardian]
FailBehavior=consume ; consume | downgrade | destroy (varies by emulator)
If the behavior is configurable in the database:
USE MuOnline
GO
-- On failure, just consume the jewel (safest behavior)
UPDATE T_JewelConfig
SET FailBehavior = 'consume'
WHERE JewelType = 'Guardian'
GO
Step 6: Configure the Jewel of Guardian drop
Guardian only has value if it is deliberately scarce. Like any jewel, it goes into your emulator's drop list (for example GameServer/Data/Item/ItemDrop.txt or a drop table — varies by emulator). The concept is always to associate the jewel item with a source at a percentage chance.
// MapNumber MonsterClass ItemGroup ItemIndex Chance(%)
8 45 14 31 0.8
// Jewel of Guardian (group 14, index 31) - 0.8% on the boss of map 8
Distribution strategies and reference chances:
| Source | Suggested chance | Role |
|---|---|---|
| Endgame boss | 0.5% to 2% | Primary source, tied to effort |
| Fixed reward from a rare event | 100% (guaranteed, infrequent event) | Progression milestone |
| Special currency shop (Ruud/WCoin) | Direct purchase | Currency sink and alternative to farming |
| High-level map spot | 0.02% to 0.1% | Diluted stream for continuous farming |
Step 7: Test application, success, and failure
With everything configured, validate the cycle with the GM character. Create test items at the minimum required refinement level and run the application several times to observe both success and failure.
Test script:
- Create an item at the minimum allowed level and one below the minimum.
- Try to apply Guardian to the item below the minimum — it should be refused.
- Apply it to the valid item and confirm success: the protection attribute appears.
- Repeat several times to observe failures and confirm that
FailBehavioracts as configured. - Verify that the protected item resists the scenario the protection covers (refinement, death, etc.).
- Confirm that the jewel is consumed on each attempt.
USE MuOnline
GO
-- Inspect the raw item state of a test character
SELECT Name, Inventory FROM Character WHERE Name = 'YourGMChar'
GO
Step 8: Document and communicate the system
A protection system only fulfills its role if players trust it. Publish the rules on your website: success rate, minimum item level, accepted types, what the guardian option protects, and what happens on failure. Mirror the server configuration exactly. A gap between what is announced and what is real breeds accusations of manipulation — something that quickly erodes a private server's reputation.
Common errors and fixes
| Symptom | Likely cause | Fix |
|---|---|---|
| Jewel does not apply to any item | Enable off or item type not allowed | Enable the jewel and review AllowedItemKind |
| Application refused on a valid item | MinItemLevel above the item's refinement | Adjust the minimum level or refine the item |
| Protection has no real effect | Guardian option written but not read in the calculation | Confirm the option's effect is active in the emulator |
| Item vanishes on failure unintentionally | FailBehavior set to destroy by mistake | Change to consume or downgrade |
| Tooltip does not show the protection | Client does not recognize the guardian attribute | Update the description files in the client |
| Jewel never drops | Chance below the effective minimum or wrong source | Raise the chance or review the drop source |
| Guardian applicable to junk items | Missing level/type restriction | Set MinItemLevel and limit categories |
Launch checklist
- Full backup of the database and configurations done and verified
- Real effect of the guardian option on your emulator identified
- Jewel configuration located (file or table)
- Success rate set according to the server profile
- Item-type and minimum-level restrictions applied
- Failure behavior (
consume/downgrade/destroy) chosen and tested - Jewel of Guardian drop calibrated on the chosen sources
- Application cycle tested: refusal, success, and failure on the GM
- Protection effect validated in the scenario it covers
- Jewel consumption per attempt confirmed
- Rules documented publicly and synced with the server
- GameServer fully restarted after all changes
Frequently asked questions
What exactly does the Jewel of Guardian do to an item?
It applies what is called the guardian option, a protection attribute on the item. In practice, depending on the emulator, this can mean reducing the item's chance of breaking on refinement failures, adding a layer of defense, or marking the item as protected against loss. The exact effect of the attribute varies by emulator, but the concept of a 'jewel that protects the item' is constant.
Can the Jewel of Guardian fail when applied?
Yes, in most setups the application has a percentage success rate. On failure, the behavior depends on the configuration: some servers simply consume the jewel with no effect, others may penalize the item. You control both the success rate and what happens on failure in the server settings.
On which type of item can I use the Jewel of Guardian?
It depends on how you restrict the jewel. Typically it is applied to equipment (weapons and armor) that has already reached a certain refinement level. You define which item categories accept the guardian option in the jewel configuration, and it is good practice to limit it to valuable items so the system does not become trivial.
Do I need to touch the client for the Jewel of Guardian to work?
For the protection effect and the application logic, the configuration is server-side. But if the guardian option adds a visual indicator to the tooltip or a visual effect on the item, the client needs to recognize that attribute. Enabling the drop and success rate does not require client editing; a new visual indicator may.
How do I make the Jewel of Guardian rare on my server?
By controlling the source and drop chance. You place it only on endgame bosses or as an event reward with a low chance, and keep the chance at zero on common spots. The more restricted the source, the rarer and more valuable the jewel becomes in the economy.