diff options
author | Jesusaves <cpntb1@ymail.com> | 2023-10-26 18:30:42 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2023-10-26 18:30:42 -0300 |
commit | 0b595c0827eaaf4dd190648470e01e47505f37af (patch) | |
tree | 7e8c3d2770bc7969eeb2f1a6607701be777f5a66 | |
parent | 6d1e277e6c9ea2b2f1f65c10beb03c19a66d34cb (diff) | |
download | serverdata-0b595c0827eaaf4dd190648470e01e47505f37af.tar.gz serverdata-0b595c0827eaaf4dd190648470e01e47505f37af.tar.bz2 serverdata-0b595c0827eaaf4dd190648470e01e47505f37af.tar.xz serverdata-0b595c0827eaaf4dd190648470e01e47505f37af.zip |
Nerf Monster King Illusion reward after the Fires of Steam is unlocked.
-rw-r--r-- | npc/functions/mkbot.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/npc/functions/mkbot.txt b/npc/functions/mkbot.txt index 7709720f0..61559913d 100644 --- a/npc/functions/mkbot.txt +++ b/npc/functions/mkbot.txt @@ -45,8 +45,10 @@ OnBourneAgain: dispbottom l("The real Monster King is probably on his fortress. It'll take more than that to take him down."); if ($REBIRTH_WINNER$ == "" && TOP3AVERAGELVL() < 100) getexp min(641500, BaseLevel**3), 0; - else + else if (!$FIRESOFSTEAM) Mobpt+=max(13500, rand2(10000, BaseLevel*90)); + else + Mobpt+=(max(13500, rand2(10000, BaseLevel*90)) * 2 / 3); Mobpt = Mobpt + 165; //$MOST_HEROIC$=strcharinfo(0); specialeffect(FX_FANFARE, AREA, getcharid(3)); |