diff options
author | Reid <reidyaro@gmail.com> | 2012-04-06 03:05:05 +0200 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2012-04-06 03:05:05 +0200 |
commit | 7ac77d0b913dac0748f237a1851d564bbb32e25d (patch) | |
tree | 9509500452a29d4ee0ad34239645f27b5db7283b /npc | |
parent | 8384645cf8f748f3c8fce187880d55963ce162c1 (diff) | |
download | clientdata-7ac77d0b913dac0748f237a1851d564bbb32e25d.tar.gz clientdata-7ac77d0b913dac0748f237a1851d564bbb32e25d.tar.bz2 clientdata-7ac77d0b913dac0748f237a1851d564bbb32e25d.tar.xz clientdata-7ac77d0b913dac0748f237a1851d564bbb32e25d.zip |
Remplace doors and box by Narrator dialogs.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/000-2-0/doors.txt | 3 | ||||
-rw-r--r-- | npc/000-2-1/arpan.txt | 4 | ||||
-rw-r--r-- | npc/000-2-2/doors.txt | 10 |
3 files changed, 10 insertions, 7 deletions
diff --git a/npc/000-2-0/doors.txt b/npc/000-2-0/doors.txt index d23e47aa..cbca847b 100644 --- a/npc/000-2-0/doors.txt +++ b/npc/000-2-0/doors.txt @@ -9,7 +9,8 @@ OnTouch: - mesq l("This door seems locked."); + mesn "Narrator"; + mes col(l("This door seems locked."), 9); close; } diff --git a/npc/000-2-1/arpan.txt b/npc/000-2-1/arpan.txt index c0590501..455f1380 100644 --- a/npc/000-2-1/arpan.txt +++ b/npc/000-2-1/arpan.txt @@ -65,11 +65,11 @@ l_EquipDone: } 000-2-1.gat,41,37,0 script Box 999,{ - mesn "Box"; + mesn "Narrator"; set @q, geta2(ShipQuests, ShipQuests_Arpan); if (@q == 1) goto l_Give; if (@q > 1) goto l_Empty; - mes l("This box is locked."); + mes col(l("This box is locked"), 9); close; l_Give: diff --git a/npc/000-2-2/doors.txt b/npc/000-2-2/doors.txt index cc6c5eb0..0d7e7b85 100644 --- a/npc/000-2-2/doors.txt +++ b/npc/000-2-2/doors.txt @@ -13,8 +13,10 @@ OnTouch: goto l_Warp; l_Warn: - mesn; - mesq l("There are still some rattos left! Do you want to abort the quest?"); + mesn "Narrator"; + mes col(l("There are still some rattos left! Do you want to abort the quest?"), 9); + next; + menu l("Yes."), l_Warp, l("No."), -; @@ -29,8 +31,8 @@ l_Warp: 000-2-2.gat,24,31,0,1 script AreaNPC 0,0,0,{ OnTouch: - mesq l("This door seems locked."); - close; + mesn "Narrator"; + mes col(l("This door seems locked."), 9); } |