diff options
Diffstat (limited to 'npc/001-1/rowboathelper.txt')
-rw-r--r-- | npc/001-1/rowboathelper.txt | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/npc/001-1/rowboathelper.txt b/npc/001-1/rowboathelper.txt index 675cfdaf..7cd419e4 100644 --- a/npc/001-1/rowboathelper.txt +++ b/npc/001-1/rowboathelper.txt @@ -27,8 +27,9 @@ l("Maybe you should try this phrase?")); if (askyesno() == ASK_YES) { - narrator(S_LAST_BLANK_LINE | S_LAST_NEXT, - l("'Enter strange phrase here.'")); + mesn strcharinfo(0); + mesc l("Sagratha is great."); + next; speech S_FIRST_BLANK_LINE | S_LAST_NEXT, l("Hello, a rowboat is on his way to the beach. Please wait for a while for it to arrive."); @@ -40,10 +41,6 @@ close; } -// Make sure to unmount the boat when player dies -OnPCDieEvent: - setmount 0; - OnInit: .distance = 1; } @@ -119,3 +116,9 @@ OnInit: .sex = G_OTHER; .distance = 1; } + +function script ForcedUnmount { + setmount 0; + return; +} + |