diff options
-rw-r--r-- | npc/002-4/elmo.txt | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/npc/002-4/elmo.txt b/npc/002-4/elmo.txt index c6bc91593..ab113252f 100644 --- a/npc/002-4/elmo.txt +++ b/npc/002-4/elmo.txt @@ -13,6 +13,7 @@ sailortalk; + end; // double-sure L_Candor: mesn; @@ -75,9 +76,24 @@ L_Candor: if (.@q1 < 3 || .@q2 < 2 || .@q3 != 5) mes l("- Some sailors within this ship may need your help: Chef Gado, Dan, Peter... help them all and collect rewards!"); + // Report in an abstract way to the player how good they are at getting travel + // discounts, and how much work is left to do. Some points are easy/required to get (eg. Dan, Peter, HAS, etc.) close2; - goodbye; - end; // Just for good measure + .@n=nard_reputation(); + if (.@n >= 11) + npctalk3 l("Nard is very impressed, you're really a hard worker. Congrats!"); + else if (.@n >= 9) + npctalk3 l("Nard is impressed, you're a hard worker."); + else if (.@n >= 7) + npctalk3 l("Nard noticed your hard work."); + else if (.@n >= 5) + npctalk3 l("Nard likes people who work hard. Work harder!"); + else if (.@n >= 3) + npctalk3 l("You really should do some tasks to impress our captain."); + else + npctalk3 l("Nard doesn't like people who gets money without working for it."); + + end; L_Party: mesn; |