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

How to Create a Daily Loyalty (Daily Login) Event on Your MU Online Server

Implement a daily loyalty (login/streak) system on your MU Online server: a progressive reward table, streak breaks and recovery, an NPC or web panel for claiming rewards, and integration with player retention.

RO Rodrigo · Updated on Oct 19, 2023 · ⏱ 14 min read
Quick answer

The daily loyalty event — also called a login reward or daily login system — is one of the most effective tools for improving retention on a MU Online server, because it directly targets the biggest risk any private server faces: the player who creates an account, plays once, and never comes back. B

The daily loyalty event — also called a login reward or daily login system — is one of the most effective tools for improving retention on a MU Online server, because it directly targets the biggest risk any private server faces: the player who creates an account, plays once, and never comes back. By rewarding the simple act of logging in every day, with increasing rewards over a cycle, the system builds a habit and an opportunity cost for quitting. This tutorial covers designing the reward table, streak logic, technical implementation, and ways to prevent multi-account abuse.

Why daily loyalty works

Games with strong long-term retention share a pattern: rewarding presence, not just performance. A new player who doesn't yet have a strong character to compete in ranking or PvP can still fully participate in the loyalty system — just by logging in. This gives a new account's first few days a concrete reason to return, the critical period when most players give up on private servers.

Defining the cycle (weekly, monthly, or continuous)

Cycle typeDurationBest for
Weekly7 days, resets every weekNew servers, wanting to build a quick routine
Monthly30 days, with milestones at 7/15/30Established servers, medium-term retention
Continuous (no reset)No defined end, rewards loop every X daysPermanent system, lower maintenance effort

For your server's first loyalty system, the monthly cycle with milestones usually offers the best balance between setup effort and retention impact — it gives enough time for the habit to form without requiring constant reconfiguration.

Designing the reward table

Progression should be visibly increasing, with emphasis on key milestones:

DayRewardNote
1-3Small quantity of common potion/jewelEntry-level reward, no market cost
4-6Moderate quantity of jewelsSustains interest on intermediate days
7 (milestone)Cosmetic item or reward boxFirst anticipation peak
8-14Jewels + event currencySustains engagement in week two
15 (milestone)Rare item or large amount of ZenSecond peak, reinforces the habit
16-29Increasing jewels + event currencyBuilds toward the cycle's "final sprint"
30 (final milestone)Cycle-exclusive item (wing, title, mount)System's anchor reward

Rewards from the early days should be non-tradeable (bound to account/character) whenever possible, reducing the incentive for multi-accounts farming just to resell.

Implementing the login table

The core data structure is simple — a table that logs daily login and the player's current streak:

CREATE TABLE evento_fidelidade (
  account_id VARCHAR(30) PRIMARY KEY,
  ultimo_login DATE NOT NULL,
  sequencia_atual INT NOT NULL DEFAULT 0,
  dia_resgatado_max INT NOT NULL DEFAULT 0
);

On every login, a script/trigger checks whether ultimo_login is the day before the current login (streak maintained) or not (streak broken) and updates sequencia_atual accordingly. Claiming the day's reward is handled separately — by the player, via NPC or panel — so as not to confuse "eligible" with "already claimed."

Defining the streak-break policy

Three common approaches, from strictest to most tolerant:

  • Full reset: missing a day resets the streak to day 1. Strongest for retention, but punishes casual/occasional players.
  • 1-day tolerance: missing 1 day doesn't reset it, missing 2 days in a row does. Recommended balance for most servers.
  • Streak buyback: the player can spend an event currency or item to "fix" a missed day, keeping the streak alive. A good light-monetization option without being purely pay-to-win, since the currency can also be earned by playing.

Configuring the claim NPC or panel

To let players claim the day's reward, offer one of two paths:

  1. Dedicated in-game NPC: a "Daily Loyalty" NPC on the main map (Lorencia/Noria) that, when interacted with, shows the cycle's current day and unlocks the claim button if not yet claimed.
  2. Account-integrated web panel: a site page (e.g. /conta/fidelidade) showing the current streak and allowing claims, delivering the item via in-game mail (mailbox) the next time the character logs in.

The web panel has the advantage of being visible even outside the game, reinforcing the habit of checking the site daily — which also boosts traffic and engagement with other parts of the portal.

Preventing multi-account abuse

  • Tie the streak to the account, not the character — this prevents farming across multiple characters on the same account as if they were different accounts.
  • Reserve the highest market-value items for the final milestones (day 15, day 30) — the cost of keeping dozens of accounts active for an entire month to reach them is high enough to discourage most abusers.
  • Monitor mass account creation during the system's launch period — an abnormal spike of new accounts from the same IP/period is a warning sign.

Communicating the system to players

Publish the full reward table on the site before launch, so players can see what's coming and feel motivated to keep their streak alive from day one. Reinforce the milestones (7, 15, 30) with Discord/chat announcements when the first player of the current cycle reaches them, creating social proof ("so-and-so already reached day 15!").

Measuring the impact on retention

Compare, before and after launching the system, the D1/D7 retention metric (percentage of new accounts that log in again the following day and a week later):

MetricBefore the systemTarget after launch
D1 retention (login the day after account creation)Server's current baseline+10-20% relative
D7 retention (login at least once the following week)Server's current baseline+15-25% relative
Average loyalty streakN/A (new system)Track growth month over month

If there's no noticeable improvement after 2-3 weeks, review whether the early-day rewards are attractive enough — it's that initial hook that decides whether a player returns on day 2.

Common errors and fixes

SymptomLikely causeFix
Few players keep their streakEarly-day rewards unappealingBoost the perceived value of days 1-3
Suspected multi-account farmingHigh-value tradeable items unlocked too earlyMove valuable items to final milestones and make them bound
Streak resets incorrectlyDate-check logic has a timezone bugStandardize the server's timezone in date comparisons
Player can't claim rewardNPC/panel out of sync with the loyalty tableReview the panel/NPC query and cache
System shows no noticeable retention increaseCycle too long without visible intermediate milestonesAdd milestones every 7 days instead of only at the end

Daily loyalty system launch checklist

  • Cycle type defined (weekly, monthly, or continuous).
  • Increasing reward table with milestones defined and published.
  • Database structure (loyalty table) implemented and tested.
  • Streak-break policy defined (reset, tolerance, or buyback).
  • Claim NPC or web panel implemented and tested.
  • High-value items reserved for final milestones (anti multi-account).
  • Reward table promotion done before launch.
  • D1/D7 retention metrics being tracked after launch.

With the loyalty system running and retention being measured, the natural next step is combining it with other recurring engagement mechanics, like daily quests or fixed weekly events. If your server base is still under construction, start with the MU Online server creation tutorial.

Frequently asked questions

Is daily login an event or a permanent system?

It can be both. Many servers keep daily loyalty as a permanent system (runs year-round, with no end date), while others run 30-day loyalty 'seasons' with a themed final reward, restarting the cycle afterward. The choice depends on whether you want a continuous retention system or an event with a clear start/end.

What happens if a player misses a day of login?

The most common decision is resetting the streak to day 1, which encourages consistent login. A friendlier alternative uses 'tolerance' (e.g., missing 1 day doesn't reset it, missing 2 days in a row does) or allows buying back a lost streak with an event currency, balancing retention against casual-player frustration.

How do I implement this without native emulator support?

Most modern emulators (MuEMU, IGCN, X-Team) already have some form of native or plugin-based login reward system. Where there's no native support, the alternative is a custom NPC that queries a daily login table (logged on every connection) and unlocks the corresponding day's claim, with all the logic implemented via the NPC's own script.

Should rewards be the same every day or increasing?

Increasing rewards (day 1 gives little, day 30 gives a lot) are more effective for long-term retention, because they create a growing opportunity cost for a player thinking about quitting. Mix small daily rewards with special milestones on days 7, 15, and 30 to create anticipation peaks throughout the cycle.

Does daily login encourage multiple accounts to farm rewards?

It can, especially if rewards include high-value tradeable items. To mitigate this, prefer non-tradeable (bound to character) rewards in the early days, and reserve higher market-value items only for the cycle's final milestones, where the cost of keeping multiple accounts active for weeks becomes less worthwhile.

RO
Founder & editor-in-chief

Rodrigo has run ViciadosMU since the portal's early days. A specialist in MU Online server creation and administration, game history and the evolution of the seasons — he wrote much of the archive before 2024.

Keep reading

Related articles