diff options
Diffstat (limited to 'npc/functions/soul_menhir.txt')
-rw-r--r-- | npc/functions/soul_menhir.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/npc/functions/soul_menhir.txt b/npc/functions/soul_menhir.txt index 866b7b38..056058fa 100644 --- a/npc/functions/soul_menhir.txt +++ b/npc/functions/soul_menhir.txt @@ -1,11 +1,11 @@ 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?)"; + mesn l("Soul Menhir"); + mes l("(A mystical aura surrounds this stone. You feel mysteriously attracted to it. Something tells you to touch it. What do you do?)"); select - "Touch it.", - "Leave it alone.", - rif(!countitem(HitchhikersTowel), "I lost my towel..."); + l("Touch it."), + l("Leave it alone."), + rif(!countitem(HitchhikersTowel), l("I lost my towel...")); mes ""; if (@menu == 1) goto L_Bind; if (@menu == 3) goto L_Towel; @@ -15,7 +15,7 @@ L_Towel: if (TowelLastUsed > (gettimetick(2) - 1800)) goto L_DontPanic; TowelLastUsed = gettimetick(2); - mes "[Soul Menhir]"; + mesn l("Soul Menhir"); mes "(You touch the mysterious stone. Somehow it feels hard and soft at the same time.)"; getitembound HitchhikersTowel, 1, 4; goto L_Return; @@ -24,7 +24,7 @@ L_Bind: if (Menhir_Activated == 1) goto L_Shortversion; - mes "[Soul Menhir]"; + mesn l("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.)"; @@ -32,7 +32,7 @@ L_Bind: goto L_Save; L_Shortversion: - mes "[Soul Menhir]"; + mesn l("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; |