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

How to configure Raklion and the Swamp of Peace in MU Online

Learn how to enable the Raklion and Swamp of Peace maps on your MU Online server, configuring spawns, access quests, drops and the integration with Selupan's lair.

BR Bruno · Updated on Aug 2, 2024 · ⏱ 17 min read
Quick answer

Raklion and the Swamp of Peace form a pair of interconnected maps that, together, make up one of the most important progression zones in the intermediate and modern seasons of MU Online. The Swamp of Peace works as an access hub — usually a safe map, without PK, where players prepare and find the po

Raklion and the Swamp of Peace form a pair of interconnected maps that, together, make up one of the most important progression zones in the intermediate and modern seasons of MU Online. The Swamp of Peace works as an access hub — usually a safe map, without PK, where players prepare and find the portal that grants access to Raklion. The Sanctuary of Raklion, in turn, is a high-level hunting map, with stronger monsters and, at its deepest point, the lair of the fearsome spider boss Selupan. Configuring this set correctly is different from enabling a one-off event like Blood Castle: here you deal with two persistent maps, a chained access system (which may involve a quest or a minimum level), spawns of variable density and the integration with a boss lair. This guide walks through the entire process — from unlocking the maps to the final test — always pointing out where file names and parameters vary by emulator, so you can adapt the walkthrough to your specific base.

Prerequisites

Raklion and the Swamp of Peace only work correctly on builds that support them natively. Before starting, confirm that you meet these conditions, or the configuration may end in a crash or empty maps.

  • A server with native support for the Raklion and Swamp of Peace maps (map files .att/.map present on both server and client).
  • GameServer, ConnectServer and DataServer (or JoinServer) installed and working.
  • The MuOnline database accessible via SSMS with write permission on the gate and quest tables.
  • A client (Main) with the files for both maps in Data\ — without them the player drops to a black screen.
  • A full backup of the database and the GameServer\Data\ folders before any change.

> The paths and file names cited (GameServer\Data\MonsterSetBase.txt, the Gate table, etc.) are common examples. The exact structure varies by emulator — adapt them to your installation.

Understanding the architecture of the two maps

Before editing files, it is worth understanding how the two maps relate to each other, because that guides the order of the configuration. The Swamp of Peace is the arrival point: the player teleports there from a town or a completed quest. Inside the Swamp of Peace there is a portal (gate) that points to Raklion. Raklion, in turn, contains in its innermost area the access to Selupan's lair, which in most emulators is treated as a separate MapNumber. So the logical chain is: town → Swamp of Peace → Raklion → Selupan's lair. Each arrow in this chain is a gate in the database, and each map is an entry in the server's map list with its own spawns. Configuring in the order of the chain — hub first, then the hunting map — reduces the chance of you testing a portal whose destination does not yet exist.

Step 1: Enable the maps in the server list

The GameServer needs to recognize both MapNumbers. Locate the file that lists the active maps (common names: MapServerInfo.txt, or a map section in the GameServer configuration) and confirm that the Swamp of Peace and Raklion are enabled.

; Illustrative example — syntax and names vary by emulator
; MapNumber / Name / Enabled / PKFree / MoveEnable
56   "Swamp of Peace"   1   1   1
57   "Raklion"          1   0   1
58   "Raklion Hatchery" 1   0   1   // Selupan's lair

The PKFree=1 field on the Swamp of Peace keeps the hub safe, while on Raklion PK is usually enabled. If a map is not in the list, add it with the correct MapNumber for your season. An invalid index makes the GameServer try to load a nonexistent map file and shut down.

Step 2: Configure the Swamp of Peace spawns

The Swamp of Peace, being a hub, usually has few or no aggressive monsters — on many servers it hosts only support NPCs. Even so, check the corresponding block in MonsterSetBase.txt.

// Swamp of Peace - Map 56
// MapNumber / MonsterIndex / X / Y / Dir
56   660   140   130   3   // access NPC / guide

If your design calls for hunting already in the hub, add monster lines following the same format used on the other maps. Otherwise, keep only the necessary NPCs.

Step 3: Configure the Raklion spawns

Raklion is the real hunting map and needs enough monster density to justify the trip. Locate — or create — the Raklion MapNumber block in MonsterSetBase.txt. When the format uses pairs of coordinates, the server distributes the monsters within the rectangle, which is ideal for filling large areas.

// Raklion - Map 57
// MapNumber / MonsterIndex / X1 / Y1 / X2 / Y2 / Dir / Count
57   459   050   050   120   120   0   50   // Aegis
57   460   060   060   130   130   0   45   // Rock Golem
57   461   070   070   140   140   0   40   // Elite Golem
57   462   080   080   150   150   0   30   //  Shielded variant

Adjust the Count according to your hardware's capacity. Very high counts on a large map consume CPU and generate lag; start conservative and increase gradually, monitoring the GameServer console. Confirm the map's limits in MapInfo so you do not place spawns outside the playable area.

Step 4: Define the monster attributes

Every MonsterIndex cited in MonsterSetBase must exist with consistent attributes in the Monster.txt file (the name varies). Raklion's monsters are high-level and should offer HP, damage and defense proportional to the map's access level.

// MonsterIndex / Name / Level / HP / MinDmg / MaxDmg / Defense / MagicDef
459  "Aegis"       118  120000  850   1100  620   380
460  "Rock Golem"  120  145000  920   1250  680   420
461  "Elite Golem" 123  180000  1010  1400  740   470

The calibration must match the server's rates. On high-rate servers, HP that is too low makes the monsters melt and reduces the incentive to farm; on low rates, excessive damage makes the map punishing. A good balance keeps the hunt challenging without requiring huge parties.

AspectLow-rate serverHigh-rate server
Monster HPModerateHigh
Density (Count)LowerHigher
Access levelHigherCan be lower
Drop focusUpgrade itemsCrafting/jewel materials

Step 5: Configure the access-chain portals (gates)

Here is the backbone of the system. Each transition between maps is a gate in the database. Check and enable the gates in the order of the chain: town → Swamp of Peace → Raklion → lair.

-- Check the gates involved (numbers vary by emulator)
SELECT Number, GateType, Map, X, Y, TargetGate, Level, Enable
FROM MuOnline..Gate
WHERE Map IN (56, 57);

-- Enable the portal from the Swamp of Peace to Raklion
UPDATE MuOnline..Gate
SET Enable = 1
WHERE Map = 56 AND TargetGate = 57;  -- adjust to your schema

The TargetGate field must point to the arrival gate on the destination map. An invalid TargetGate is the most common cause of "the portal does not teleport" or of the player being disconnected when stepping on the gate. The Level field defines the minimum entry level — adjust it to your target audience.

Step 6: Configure the quest or access requirement

In many seasons, access to the Swamp of Peace (and consequently to Raklion) depends on a completed quest or an access item. Check your emulator's quest table and confirm that the corresponding quest is active.

-- Illustrative example — the quest schema varies a lot by emulator
SELECT QuestIndex, Name, MinLevel, Enable
FROM MuOnline..Quest
WHERE Name LIKE '%Raklion%' OR Name LIKE '%Swamp%';

If your server uses pure level-based access (no quest), just adjust the gate's Level field from the previous step. If it uses an access item, make sure the item exists in the item table and that the consumption logic is enabled in the map INI.

Raklion leads into Selupan's lair, which is the boss content of this zone. In this guide we focus on getting the portal to the lair ready; the detailed configuration of the boss itself (HP, phases, spawn and rewards) deserves a dedicated walkthrough. Confirm that the gate from Raklion to the lair exists and is enabled.

-- Portal from Raklion to the lair (Raklion Hatchery)
UPDATE MuOnline..Gate
SET Enable = 1
WHERE Map = 57 AND TargetGate = 58;  -- adjust to your schema

With this portal ready, players can traverse the entire chain up to the boss's antechamber. The activation and scheduling of Selupan are handled in the boss's specific configuration.

Step 8: Restart and test the full chain

Restart the server in the correct order and test by walking through the entire chain with a GM account:

  1. Start the DataServer (or JoinServer) and wait for the ready status.
  2. Start the ConnectServer.
  3. Start the GameServer and watch the console load maps 56, 57 and 58 without errors.
  4. Log in with a GM account and teleport to the Swamp of Peace.
  5. Cross the portal to Raklion and visually confirm the spawns.
  6. Cross the portal to the lair and confirm the antechamber loads.

> Always test during low-traffic hours. A Count that is too high in Raklion can generate hundreds of monsters and overload the GameServer.

Common errors and fixes

SymptomLikely causeFix
GameServer crashes on startupInvalid MapNumber or missing .attConfirm the map indexes and the files in Data\
Player drops to a black screenClient missing the map filesDistribute the maps in the client patch
Portal does not teleportInvalid TargetGate or Enable=0Fix the TargetGate and enable the gate
Raklion with no monstersMissing block in MonsterSetBaseAdd the spawn lines and restart
"Insufficient level" when it should notGate's Level field too highAdjust the minimum level on the gate
Heavy lag in RaklionExcessive spawn CountReduce the number of monsters per line

Launch checklist

  • Backup of the MuOnline database and the data folders done
  • MapNumbers of the Swamp of Peace, Raklion and the lair enabled in the map list
  • Map files present on server and client
  • Raklion spawns defined in MonsterSetBase with valid coordinates
  • Monster attributes calibrated in the Monster file according to the rates
  • Town → Swamp of Peace gate enabled and tested
  • Swamp of Peace → Raklion gate with correct TargetGate and Enable=1
  • Raklion → Selupan's lair gate enabled
  • Access requirement (quest or level) configured and verified
  • Test with a GM account walking through the entire chain without errors
  • Minimum entry level adjusted to the target audience
  • GameServer logs free of map-loading or spawn errors

With both maps enabled, the portal chain working and the spawns calibrated, Raklion and the Swamp of Peace become a coherent and rewarding progression zone for high-level players. If you are still building the basic infrastructure, first review the guide on how to create a MU Online server to make sure the core components are correct. Once the chain up to the lair's antechamber is ready, the natural next step is to configure the Selupan boss in detail — the climax of the entire Raklion journey.

Frequently asked questions

What is the difference between Raklion and the Swamp of Peace?

The Swamp of Peace is the access hub map, generally safe and PK-free, that serves as the gateway. Raklion (the Sanctuary of Raklion) is the high-level hunting map that leads to the lair of the boss Selupan. The map indexes vary by emulator.

Do I need a quest to enter Raklion?

It depends on the season. In many builds, access to the Swamp of Peace requires a quest or a minimum level, and from there the portal to Raklion is unlocked. Check the map INI and your emulator's quest table.

The Raklion monsters do not appear — what should I check?

Confirm that the MapNumber is enabled in the map list, that the spawn lines exist in the MonsterSetBase for that map and that the matching MonsterIndex values are defined in the Monster file. Restart the GameServer after making changes.

The portal from the Swamp of Peace to Raklion does not open — how do I fix it?

Check the corresponding gate in the Gate table (Enable=1), confirm the TargetGate points to the Raklion map and verify the required minimum level. An invalid TargetGate drops the player or fails to teleport.

Can I adjust the minimum entry level?

Yes. The required level is in the gate's Level field in the database and/or in the map INI. Adjust it to your server's target audience; values that are too high isolate the content and low values allow early farming.

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