diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-03-21 17:28:57 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-03-21 17:28:57 -0300 |
commit | 4510e4c763124cc1b8c4428747ccc21127a14c18 (patch) | |
tree | 2ead3f8dd7ad8de440cb14251bc288012f17ea4a /npc/029-9/boss.txt | |
parent | 47ca0edabf8ccad6068164a4bb780e8daed34e06 (diff) | |
download | serverdata-4510e4c763124cc1b8c4428747ccc21127a14c18.tar.gz serverdata-4510e4c763124cc1b8c4428747ccc21127a14c18.tar.bz2 serverdata-4510e4c763124cc1b8c4428747ccc21127a14c18.tar.xz serverdata-4510e4c763124cc1b8c4428747ccc21127a14c18.zip |
Repeatable: Now all survivors during Moubootaur Battle will get Strange Coins.
Diffstat (limited to 'npc/029-9/boss.txt')
-rw-r--r-- | npc/029-9/boss.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/npc/029-9/boss.txt b/npc/029-9/boss.txt index c88985834..b3f01716d 100644 --- a/npc/029-9/boss.txt +++ b/npc/029-9/boss.txt @@ -320,6 +320,7 @@ OnEventEnd: enablenpc "#029-9_103_48"; // To Storage enablenpc "#029-9_34_23"; // From Moubootaur enablenpc "#029-9_137_41"; // From Storage + maptimer2("029-9", 10, "Book#FoS::OnMFSurvive"); mapannounce("029-9", "Moubootaur : ##1##BThis is not the place...", 0); sleep(2000); mapannounce("029-9", "Moubootaur : ##1##BMy powers are weak here...", 0); @@ -400,6 +401,11 @@ OnMFDispose: if (ispcdead() && getq(General_Narrator) >= 20) warp("025-2", 100, 27); end; +OnMFSurvive: + dispbottom l("Mission accomplished. Well played!"); + getitem StrangeCoin, max(1, 1+(($@FIRESOFSTEAM_DIFF-100)/30)); + end; + ////////////// Heartbeat ////////////// OnTimer15000: maptimer2("029-9", 10, "Book#FoS::OnMFDispose"); |