diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-06-05 23:43:11 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-06-05 23:43:11 -0300 |
commit | 1a3a1835e41451d5e3d27899bc7f0a2c8f9b437a (patch) | |
tree | 1c8822bb793793a9f76fe461b1c6e570453829c4 /npc/functions/mobpoint.txt | |
parent | 7c302366b43cf82ca2aa6ffa2d520f3789d21940 (diff) | |
download | serverdata-1a3a1835e41451d5e3d27899bc7f0a2c8f9b437a.tar.gz serverdata-1a3a1835e41451d5e3d27899bc7f0a2c8f9b437a.tar.bz2 serverdata-1a3a1835e41451d5e3d27899bc7f0a2c8f9b437a.tar.xz serverdata-1a3a1835e41451d5e3d27899bc7f0a2c8f9b437a.zip |
The final aurora event is the Rebirth Season, which increases Mobpt gain.
It also makes reborn characters spawn at level 3 if done via Fortress.
Or, alternatively, you may rebirth in Tulimshar, but w/o the level bonus.
Diffstat (limited to 'npc/functions/mobpoint.txt')
-rw-r--r-- | npc/functions/mobpoint.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/npc/functions/mobpoint.txt b/npc/functions/mobpoint.txt index 1d030c3a7..62951e3b0 100644 --- a/npc/functions/mobpoint.txt +++ b/npc/functions/mobpoint.txt @@ -37,6 +37,10 @@ function script mobpoint { // Sanitization .@addval=max(0, .@addval); + // Events (+10% Mob Points) + if ($EVENT$ == "Rebirth") + .@addval = .@addval * 11 / 10; + // Grant you the Monster Points Mobpt = Mobpt + .@addval; return; |