diff options
Diffstat (limited to 'npc/functions/soul_menhir.txt')
-rw-r--r-- | npc/functions/soul_menhir.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/npc/functions/soul_menhir.txt b/npc/functions/soul_menhir.txt index 2b2b1a897..92fd8b688 100644 --- a/npc/functions/soul_menhir.txt +++ b/npc/functions/soul_menhir.txt @@ -22,6 +22,7 @@ function script SoulMenhir { rif($EVENT$ == "Worker", l("[Worker Day] Send soul to the Contributor Cave!")), L_Worker, rif($EVENT$ == "Christmas" && BaseLevel >= 20, l("[Christmas] Send soul to the Christmas Workshop!")), L_Xmas, // TODO: In future there'll be an event map rif($EVENT$ == "Tower" && countitem(EventDreamTicket), l("Dream Tower")), L_Tower, + rif($EVENT$ == "Raid", l("Boss Raid")), L_Raid, l("Leave it alone."), -; return; @@ -92,13 +93,17 @@ L_Xmas: message strcharinfo(0), l("You are now at the Christmas Workshop."); close; -// FIXME: Dream Tower Warp L_Tower: if ($EVENT$ != "Tower") goto L_DontPanic; if (!countitem(EventDreamTicket)) goto L_DontPanic; doevent "sDreamTower::OnWarpTo"; close; +L_Raid: + if ($EVENT$ != "Raid") goto L_DontPanic; + callfunc("FYRaid_Select"); + close; + L_DontPanic: message strcharinfo(0), l("(A strange barrier keeps you from touching the stone at this time.)"); return; |