blob: ccedc319636a133923c6880a379532f038c26537 (
plain) (
tree)
|
|
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?)";
next;
menu
"Touch it", -,
"Leave it alone", return;
if (Menhir_Activated == 1) goto L_Shortversion;
mes "[Soul Menhir]";
mes "(You touch the mysteriouse stone. Somehow it feels warm and cold at the same time.)";
next;
mes "[Soul Menhir]";
mes "(Suddenly a strange sensation flows through you. It feels like your soul leaves your body and becomes one with the stone.)";
next;
mes "[Soul Menhir]";
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.)";
next;
set 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.)";
next;
L_Save:
savepoint @map$, @x, @y;
return;
}
|