diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-05-11 18:38:53 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-05-11 18:38:53 -0300 |
commit | aed49ca9beb1beeb005f5698a3fd322a3ebf4447 (patch) | |
tree | 928d2346b75b929bd9cb24d59be4f3ba9a0ba305 /npc/032-5 | |
parent | e9bdbd1662d43aa77377d6403de6a6a433837d76 (diff) | |
download | serverdata-aed49ca9beb1beeb005f5698a3fd322a3ebf4447.tar.gz serverdata-aed49ca9beb1beeb005f5698a3fd322a3ebf4447.tar.bz2 serverdata-aed49ca9beb1beeb005f5698a3fd322a3ebf4447.tar.xz serverdata-aed49ca9beb1beeb005f5698a3fd322a3ebf4447.zip |
Fix bugs so the Episode is complete
Diffstat (limited to 'npc/032-5')
-rw-r--r-- | npc/032-5/episode.txt | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/npc/032-5/episode.txt b/npc/032-5/episode.txt index 318b1b1d6..668c2bd36 100644 --- a/npc/032-5/episode.txt +++ b/npc/032-5/episode.txt @@ -33,8 +33,8 @@ OnTouch: end; OnTimer1000: - .platy=monster("032-5", 39, 55, 1, strmobinfo(1, RedQueen), RedQueen); - .razor=monster("032-5", 37, 57, 1, "The Black Razor", RedFollower); + .platy=monster("032-5", 39, 55, strmobinfo(1, RedQueen), RedQueen, 1); + .razor=monster("032-5", 37, 57, "The Black Razor", RedFollower, 1); immortal(.platy); setunitdata(.platy, UDT_MODE, MD_BOSS|MD_PLANT|MD_NOKNOCKBACK); immortal(.razor); @@ -54,7 +54,7 @@ OnTimer15000: end; OnTimer20000: - unittalk(.platy, "They think they can conspire about us."); + unittalk(.platy, "They think they can conspire against us."); end; OnTimer25000: @@ -123,6 +123,7 @@ OnWin: getexp 30000, 0; if (getq(LoFQuest_EPISODE) == 15) { setq LoFQuest_EPISODE, 16, 0, 0; + getitem RedknightArmor, 1; getexp 70000, 0; } end; @@ -167,6 +168,7 @@ OnNext: unittalk(.platy, "...Of course every one who has fallen here serves me... And all those before!"); sleep(2500); unittalk(.platy, "...And with those from past, present and future... I'll be invencible! And reign forever!"); + maptimer("032-5", 1000, "#EpShow::OnMus"); sleep(2500); // TODO: Bring elli! enablenpc("Elli#Ep"); @@ -192,6 +194,10 @@ OnNext: .ctrl = false; end; +OnMus: + changeplayermusic "valkyries.ogg"; + end; + OnFin: if (!@elli) end; warp "032-1", 59, 130; |