diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-09-24 13:12:02 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-09-24 13:12:02 -0300 |
commit | cabca69675f0166b1d361ff72e2b79d06fc8e506 (patch) | |
tree | 21ac5adef4d6abd4dbc3e10ce8d756ba656f2e6e /npc/functions/soul_menhir.txt | |
parent | 6656999ab4c701327f6934f52b0305710d448cae (diff) | |
download | serverdata-cabca69675f0166b1d361ff72e2b79d06fc8e506.tar.gz serverdata-cabca69675f0166b1d361ff72e2b79d06fc8e506.tar.bz2 serverdata-cabca69675f0166b1d361ff72e2b79d06fc8e506.tar.xz serverdata-cabca69675f0166b1d361ff72e2b79d06fc8e506.zip |
Initial, untested version of Boss Raid
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; |