summaryrefslogtreecommitdiff
path: root/npc/functions/soul_menhir.txt
diff options
context:
space:
mode:
authorjesusalva <cpntb1@ymail.com>2018-02-09 18:58:41 -0200
committerjesusalva <cpntb1@ymail.com>2018-02-09 18:58:41 -0200
commite5439ada23860bf478a53221ce28eecafdc1a967 (patch)
tree1ec23efa1ec3e511b66363113f42e980661e99a6 /npc/functions/soul_menhir.txt
parent8e4dfe9c9c6763a3bdbb900d88513b2761228f45 (diff)
downloadserverdata-e5439ada23860bf478a53221ce28eecafdc1a967.tar.gz
serverdata-e5439ada23860bf478a53221ce28eecafdc1a967.tar.bz2
serverdata-e5439ada23860bf478a53221ce28eecafdc1a967.tar.xz
serverdata-e5439ada23860bf478a53221ce28eecafdc1a967.zip
Include Soul Menhir scripts. This is still a work in progress.
Diffstat (limited to 'npc/functions/soul_menhir.txt')
-rw-r--r--npc/functions/soul_menhir.txt55
1 files changed, 55 insertions, 0 deletions
diff --git a/npc/functions/soul_menhir.txt b/npc/functions/soul_menhir.txt
new file mode 100644
index 000000000..75079c33a
--- /dev/null
+++ b/npc/functions/soul_menhir.txt
@@ -0,0 +1,55 @@
+function script SoulMenhir {
+ mes "[Soul Menhir]";
+ mes "(A mystical aura surrounds this stone. You feel mysteriously attracted to it. Something tells you to touch it. What do you do?)";
+
+ menu
+ "Touch it.", L_Bind,
+ "Leave it alone.", L_Return;
+
+//L_Towel:
+// if (TowelLastUsed > (gettimetick(2) - 1800))
+// goto L_DontPanic;
+// TowelLastUsed = gettimetick(2);
+// mes "[Soul Menhir]";
+// mes "(You touch the mysterious stone. Somehow it feels hard and soft at the same time.)";
+// getitem "HitchhikersTowel", 1;
+// goto L_Return;
+
+L_Bind:
+ if (Menhir_Activated == 1)
+ goto L_Shortversion;
+
+ mes "[Soul Menhir]";
+ mes "(You touch the mysterious stone. Somehow it feels warm and cold at the same time.)";
+ mes "(Suddenly a strange sensation flows through you. It feels like your soul leaves your body and becomes one with the stone.)";
+ mes "(As suddenly as the feeling started it stops. The strange attraction is away from one moment to the next and the menhir feels like just an ordinary stone.)";
+ Menhir_Activated = 1;
+ goto L_Save;
+
+L_Shortversion:
+ mes "[Soul Menhir]";
+ mes "(A strange sensation flows through you. It feels like your soul leaves your body and becomes one with the stone. As suddenly as the feeling started it stops.)";
+ goto L_Save;
+
+L_Save:
+ if (@x == 0 && @y == 0)
+ goto L_FindPoint;
+ goto L_Do_Save;
+
+L_DontPanic:
+ message strcharinfo(0), "(A strange barrier keeps you from touching the stone at this time.)";
+ goto L_Return;
+
+L_Do_Save:
+ savepoint @map$, @x, @y;
+ goto L_Return;
+
+L_FindPoint:
+ @n = rand(getarraysize(@Xs));
+ @x = @Xs[@n];
+ @y = @Ys[@n];
+ goto L_Do_Save;
+
+L_Return:
+ return;
+}