diff options
Diffstat (limited to 'npc/002-4/elmo.txt')
-rw-r--r-- | npc/002-4/elmo.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/npc/002-4/elmo.txt b/npc/002-4/elmo.txt index 2b03b9ad8..9b75c0d82 100644 --- a/npc/002-4/elmo.txt +++ b/npc/002-4/elmo.txt @@ -9,6 +9,7 @@ if (LOCATION$ == "") sailortalk; if (getq(General_Narrator) == 1) sailortalk; + if (getq(CandorQuest_Sailors) == 2) goto L_Party; mesn; mes l("\"Hey, have you already got the money necessary for the travel?"); @@ -27,10 +28,24 @@ if (.@q < 3) mes l("- You can always play with kids. Not very profitable, though."); + // Sailors Quest + .@q=getq(CandorQuest_Sailors); + if (.@q < 3) + mes l("- Some of our crew are missing. They're probably wasting their time at beach."); + close2; goodbye; end; // Just for good measure +L_Party: + mesn; + mesq l("What? A party?"); + next; + setq CandorQuest_Sailors, 3; + getexp 10, 0; + mesq l("Alright, I'll show up later. Thanks for calling me."); + close; + OnInit: .sex = G_MALE; .distance = 5; |