summaryrefslogtreecommitdiff
path: root/npc/functions/soul_menhir.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-01-14 00:17:45 -0300
committerJesusaves <cpntb1@ymail.com>2022-01-14 00:17:45 -0300
commit95c4f412c9422806b7e9d801f4c342700a89bf70 (patch)
treeb2e2ee1a2f99548cdf4df4b28ef4b9f30f39e456 /npc/functions/soul_menhir.txt
parent6b8acb82f384560dbcdd511593fb2d181e507766 (diff)
downloadserverdata-95c4f412c9422806b7e9d801f4c342700a89bf70.tar.gz
serverdata-95c4f412c9422806b7e9d801f4c342700a89bf70.tar.bz2
serverdata-95c4f412c9422806b7e9d801f4c342700a89bf70.tar.xz
serverdata-95c4f412c9422806b7e9d801f4c342700a89bf70.zip
Hook up Porthos with the world, but instancing still NYI
Diffstat (limited to 'npc/functions/soul_menhir.txt')
-rw-r--r--npc/functions/soul_menhir.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/npc/functions/soul_menhir.txt b/npc/functions/soul_menhir.txt
index 92fd8b688..3121f7b7c 100644
--- a/npc/functions/soul_menhir.txt
+++ b/npc/functions/soul_menhir.txt
@@ -23,6 +23,7 @@ function script SoulMenhir {
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,
+ rif($EVENT$ == "Olympics", l("[Magic Olympics] Send soul to Porthos")), L_Porthos,
l("Leave it alone."), -;
return;
@@ -104,6 +105,11 @@ L_Raid:
callfunc("FYRaid_Select");
close;
+L_Porthos:
+ if ($EVENT$ != "Olympics") goto L_DontPanic;
+ callfunc("FYE_Olympics_TO");
+ close;
+
L_DontPanic:
message strcharinfo(0), l("(A strange barrier keeps you from touching the stone at this time.)");
return;