diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-03-14 18:41:49 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-03-14 18:41:49 -0300 |
commit | 18cdc45259072183cc6dbcdf6846c3ebe21de894 (patch) | |
tree | ec1926b55151aea989b020db139eaa79d9e8a140 /npc/002-4 | |
parent | b06a96ba72d7bbfb5b1a5f4270dc11fa446ff3aa (diff) | |
download | serverdata-18cdc45259072183cc6dbcdf6846c3ebe21de894.tar.gz serverdata-18cdc45259072183cc6dbcdf6846c3ebe21de894.tar.bz2 serverdata-18cdc45259072183cc6dbcdf6846c3ebe21de894.tar.xz serverdata-18cdc45259072183cc6dbcdf6846c3ebe21de894.zip |
Elmo will comment on your progress at getting travel discounts.
Diffstat (limited to 'npc/002-4')
-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; |