diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-02-24 00:00:00 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-02-24 00:00:00 -0300 |
commit | 4c04d6c7858229f1d88f368841f1ddf42da01663 (patch) | |
tree | b56e53b98446c6fcf75968bd4766c08dacee67e6 | |
parent | 416e4a2350896c43c97496f16b8eaaa79082332a (diff) | |
download | serverdata-4c04d6c7858229f1d88f368841f1ddf42da01663.tar.gz serverdata-4c04d6c7858229f1d88f368841f1ddf42da01663.tar.bz2 serverdata-4c04d6c7858229f1d88f368841f1ddf42da01663.tar.xz serverdata-4c04d6c7858229f1d88f368841f1ddf42da01663.zip |
Nylo: Refuse to sell beer, unless you've helped him with his crops.
-rw-r--r-- | npc/005-5/nylo.txt | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/npc/005-5/nylo.txt b/npc/005-5/nylo.txt index 7838afbd0..9cc6b93c9 100644 --- a/npc/005-5/nylo.txt +++ b/npc/005-5/nylo.txt @@ -38,8 +38,21 @@ tutmes l("Alcohol effects expire upon death. You need vitality to drink more beer."), l(".:: Alcohol Tutorial ::."); tutmes l("Even if you drink alone, you'll still receive the EXP bonus marked on the item description."), l(".:: Alcohol Tutorial ::."); } - closeclientdialog; // Not needed? - openshop .name$; + if (!.@q) { + mesn; + mesc l("Unfortunately, I cannot sell them to you. Maggots are attacking my crops and giving me headache."), 1; + next; + mesn; + mesq l("Maybe if someone helped me to get rid of the maggots on my crops, I would be able to sell them to everyone again..."); + next; + mesn; + mesq l("...Otherwise, they're too precious to sell to wanna be adventurers. Beer EXP Bonuses expire on death, you know?!"); + next; + } else { + closeclientdialog; // Not needed? + openshop .name$; + close; + } break; case 3: goto L_Main; |