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

How to configure the Selupan boss (Raklion) in MU Online

Complete technical guide to configuring the spider boss Selupan in the Raklion lair, covering spawn, phases, HP, minions, rewards, and event scheduling.

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

Selupan is the spider boss that crowns the entire journey through the Raklion Sanctuary, and configuring it correctly is what turns this zone from a simple hunting map into an endgame destination with a memorable objective. Unlike static bosses that just stand still waiting for damage, Selupan has p

Selupan is the spider boss that crowns the entire journey through the Raklion Sanctuary, and configuring it correctly is what turns this zone from a simple hunting map into an endgame destination with a memorable objective. Unlike static bosses that just stand still waiting for damage, Selupan has phased behavior: it alternates between states where it is exposed and states where it protects itself by summoning smaller spiders, requiring group coordination to bring it down within the event's time limit. Configuring it involves orchestrating several layers at once — the lair map has to be accessible, the boss's MonsterIndex has to exist with calibrated attributes, the spawn has to be scheduled through the events INI, the minions have to spawn at the right moment, and the reward has to come from a dedicated bag. This guide walks through each of these layers in detail, always marking where the file and parameter names vary by emulator, so you can adapt the script to your base. By the end, Selupan will be spawning on schedule, summoning its minions, offering a fair fight, and delivering rewards worthy of the effort.

Prerequisites

Selupan depends on the Raklion lair already being enabled and accessible. Trying to configure the boss before the map is ready leads to an event that never starts or a GameServer crash.

  • The Raklion lair map (Raklion Hatchery) already enabled in the server's map list.
  • The Swamp of Peace → Raklion → lair access chain working (portals enabled).
  • GameServer, ConnectServer, and DataServer (or JoinServer) installed and functional; EventServer when the emulator requires it.
  • The MuOnline database accessible via SSMS with write permission.
  • The client (Main) with the lair map files in Data\.
  • A full backup of the database and the GameServer\Data\ folders before any change.

> If the lair is not yet accessible, configure the Raklion map chain first. The paths cited here are common examples; the exact structure varies by emulator.

How the fight against Selupan works

Understanding the mechanics before touching the files saves a lot of debugging time. When the scheduled time arrives, the server spawns Selupan in the lair and, depending on the emulator, opens access to the map for a limited period. During the fight, Selupan alternates between an exposed state (in which it takes damage normally) and a protected state (in which it becomes cocooned or shielded and summons smaller spiders, called spiderlings or cocoons). The group has to eliminate the minions and/or wait for the vulnerability window to keep dealing damage to the boss. If the event time runs out before Selupan dies, it disappears without dropping — hence the importance of calibrating the boss's HP relative to the server's rates. On death, Selupan triggers a dedicated drop table (EventItemBag), separate from the map's common drop, from which the high-value rewards come. The configuration therefore chains together: lair map → scheduled spawn → boss attributes and phases → minions → reward bag.

Step 1: Confirm the lair map

Selupan spawns on a specific MapNumber, usually distinct from the common Raklion. Confirm that the lair map is enabled in the server's map list.

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

If the lair is not enabled, activate it with your season's correct MapNumber before proceeding. A non-existent map index causes a crash on load.

Step 2: Configure the Selupan event INI

The scheduling and boss parameters live in an event INI file — which, depending on the emulator, is in GameServer\Data\ or in an EventServer folder. Open it with an editor that preserves the encoding (Notepad++ in ANSI is safe).

[Selupan]
SelupanEnable=1
SelupanSchedule=05:00,13:00,21:00
SelupanEntranceLevel=380
SelupanEventDuration=30
SelupanMaxUser=15
SelupanRespawn=1
SelupanMinionCount=8
ParameterExampleFunction
SelupanEnable1Turns the event on (1) or off (0)
SelupanScheduleHH:MMSpawn times separated by commas
SelupanEntranceLevel380Minimum level to enter the lair
SelupanEventDuration30Maximum time (min) to defeat the boss
SelupanMaxUser15Player limit in the lair
SelupanMinionCount8Number of spiders summoned per phase

> The key names are illustrative and vary by emulator. Some builds control Selupan through a central event scheduler instead of times in the INI itself. Consult your build's reference file.

Step 3: Define the boss spawn in MonsterSetBase

With the map and the INI ready, define where Selupan spawns. Open GameServer\Data\MonsterSetBase.txt and locate — or create — the block for the lair's MapNumber. The boss gets a fixed coordinate and a count of 1.

// Raklion Hatchery - Map 58
// MapNumber / MonsterIndex / X / Y / Dir / Count
58   458   105   090   3   1   // Selupan (boss)

Selupan's MonsterIndex varies by season; confirm the correct index in your emulator's documentation. Also verify that the coordinate is within the map's limits in MapInfo — an invalid position makes the boss spawn at position zero or crashes the GameServer.

Step 4: Calibrate Selupan's attributes

Selupan's MonsterIndex must exist with coherent attributes in the Monster.txt file (name varies). As an end-of-zone boss, it requires high HP to sustain a phased fight, but calibrated to fit within the SelupanEventDuration.

// MonsterIndex / Name / Level / HP / MinDmg / MaxDmg / Defense / MagicDef
458  "Selupan"  138  38000000  2400  3400  1600  1000

HP is the most sensitive parameter. If it is too low for the server's rates, the boss dies before completing even a single minion phase, gutting the mechanic; if it is too high, the group cannot defeat it in time and the boss expires without dropping. A good starting point is to calibrate it so that an average group takes between 50% and 75% of the event's duration to win, leaving room for the protected phases.

Step 5: Configure the minions (spiderlings)

What gives Selupan's fight its identity are the smaller spiders it summons. In many emulators, this behavior is native to the boss's MonsterIndex — the server summons the minions automatically when entering the protected phase. Even so, the minions have to exist as their own MonsterIndex, with defined attributes.

// Minion's MonsterIndex / Name / Level / HP / MinDmg / MaxDmg / Defense
457  "Cocoon"       120  90000   700   950   500   300

Adjust the number summoned per phase with the SelupanMinionCount parameter (or equivalent) in the INI. Many minions turn the fight into an AoE test and can generate lag; too few make the protected phase irrelevant. Calibrate according to the power of your target audience.

> In some builds, the phase and summoning behavior is entirely hardcoded in Selupan's MonsterIndex and is not adjustable via INI. In that case, the only parameters you control are the HP, damage, and defense of the boss and the minions. Check your emulator's documentation.

Step 6: Configure the rewards (EventItemBag)

Selupan's rewards come from a dedicated drop table, usually an EventItemBag (for example ItemBag_Selupan.txt) linked to the boss's MonsterIndex. This bag lists items, chances, and quantities independently of the common drop.

// Item / Section / Index / Level / Durability / Chance(%)
// Illustrative example of Selupan's bag
14  13   0   0   1   35.0   // Jewel of Bless
14  14   0   0   1   35.0   // Jewel of Soul
14  16   0   0   1   20.0   // Jewel of Creation
12  268  0   0   1   4.0    // rare item / season wing

Confirm, in the INI or in the monster configuration, that Selupan points to the correct bag file (the ItemBag field or a mapping in MonsterItemBag). Without this link, the boss dies and drops nothing — one of the most reported problems. Restart the GameServer after changing the drop tables.

Step 7: Startup sequence and testing

Restart the server in the correct order and test 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 the lair map and the MonsterSetBase without errors.
  4. If there is an EventServer, start it last.
  5. Log in with a GM account, set a nearby time in SelupanSchedule, restart the event service, and wait for the spawn.
  6. Teleport to the lair, confirm the boss, trigger the protected phase, and verify that the minions spawn.
  7. Defeat the boss and confirm the bag drop.

> Test during off-peak hours. A SelupanMinionCount that is too high combined with many players can overload the GameServer.

Common errors and fixes

SymptomLikely causeFix
Selupan does not spawnSelupanEnable=0, invalid time, or service not restartedFix the INI and restart the event service
GameServer crashes on startupNon-existent MonsterIndex or invalid coordinateConfirm the boss's index and the coordinates in MapInfo
Boss dies without droppingEventItemBag not linked to the MonsterIndexAssociate the bag with Selupan and restart the GameServer
Minions do not appearMinion's MonsterIndex missing or MinionCount=0Define the minion's MonsterIndex and adjust the count
Boss expires without dyingHP too high for the EventDurationReduce the boss's HP or increase the duration
Players cannot enter the lairGate disabled or insufficient levelEnable the gate and adjust SelupanEntranceLevel

Launch checklist

  • Backup of the MuOnline database and the data folders completed
  • Raklion lair map enabled and accessible through the portal chain
  • Selupan INI with Enable=1, valid schedules and duration
  • Boss spawn defined in MonsterSetBase with a coordinate within the limits
  • Selupan's MonsterIndex present in the Monster file with calibrated HP
  • Minions' MonsterIndex defined and MinionCount adjusted
  • Boss's EventItemBag created and linked to Selupan's MonsterIndex
  • Lair access gate enabled and minimum level configured
  • Test with a GM account confirming spawn, phases, minions, and drop
  • Schedules adjusted to the timezone and the server's peak population
  • GameServer logs free of monster or bag loading errors

Once each checklist item is met, Selupan will be ready to enter your server's boss rotation, offering high-level groups a confrontation with phases, minions, and rewards worthy of the journey through Raklion. If the map chain is not yet built, start with the configuration of Raklion and the Swamp of Peace; and if you are building the server's base from scratch, the guide on how to create a MU Online server ensures the core components are correct before adding an endgame boss like Selupan. With the spawn scheduled, the phases working, and the bag delivering rewards, the Raklion lair becomes a recurring destination that keeps the server active.

Frequently asked questions

On which map does Selupan appear?

Selupan appears in the Raklion lair (often called Raklion Hatchery or Raklion Boss), a MapNumber separate from the common Raklion. The exact index varies by emulator; confirm it in your map list.

Selupan doesn't spawn at the scheduled time — what should I check?

Confirm that the Selupan event is enabled in the INI, that the time is in HH:MM format, that the boss's MonsterIndex exists in the MonsterSetBase for the lair map, and that the event service was restarted after the changes.

How do Selupan's phases and minions work?

Selupan alternates between vulnerable and protected states, summoning smaller spiders (cocoons/spiderlings). In many emulators this behavior is native to the boss's MonsterIndex; adjustable parameters are in the event INI and in the monster's attributes.

Selupan dies and drops nothing — how do I fix it?

Check the EventItemBag linked to Selupan's MonsterIndex, confirm that the bag file loaded without errors in the log, and that the boss→bag link is correct. Restart the GameServer after changing the drop tables.

Can I have more than one Selupan instance active?

It depends on the emulator. Most treat the lair as a single shared map with one Selupan per round. Per-group instance systems exist in some builds, but they require native support; do not force multiple spawns on the same map without that support.

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