diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-04-13 18:42:48 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-04-13 18:42:48 -0300 |
commit | ad8df9c1029615fceab0d5e3214c6027c83cd7d0 (patch) | |
tree | ef7391458b39fbd13fdf1d9b36516e401bd35d9a /npc/functions | |
parent | a5c8973c405d8eca5ca7c6e998df262ab3fecf0a (diff) | |
download | serverdata-ad8df9c1029615fceab0d5e3214c6027c83cd7d0.tar.gz serverdata-ad8df9c1029615fceab0d5e3214c6027c83cd7d0.tar.bz2 serverdata-ad8df9c1029615fceab0d5e3214c6027c83cd7d0.tar.xz serverdata-ad8df9c1029615fceab0d5e3214c6027c83cd7d0.zip |
Some translation-related settings
Diffstat (limited to 'npc/functions')
-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; |