diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-10-27 23:34:29 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-10-27 23:34:29 -0300 |
commit | 8676d9bfa4f3c4734f771746953de9d7489e0d08 (patch) | |
tree | ea8dad4dfd08ac50a4719045ba1d88fb065fba8c /npc/024-9/barkeeper.txt | |
parent | 97e408044b6db3ac237c3740f68507c81418b707 (diff) | |
download | serverdata-8676d9bfa4f3c4734f771746953de9d7489e0d08.tar.gz serverdata-8676d9bfa4f3c4734f771746953de9d7489e0d08.tar.bz2 serverdata-8676d9bfa4f3c4734f771746953de9d7489e0d08.tar.xz serverdata-8676d9bfa4f3c4734f771746953de9d7489e0d08.zip |
You can now make Dwarven Sake (72 hours + 12 hours the batch)
Lower the supply from the barkeeper, sake is not a common item.
Add more healing potions for barkeeper. Did I said that at 300 gp the Beer...
...he is actually one of the cheapest beer sellers ingame? NOOBS, YOU BUNCH OF NOOBS.
Diffstat (limited to 'npc/024-9/barkeeper.txt')
-rw-r--r-- | npc/024-9/barkeeper.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/npc/024-9/barkeeper.txt b/npc/024-9/barkeeper.txt index 3bfe518a9..584a70888 100644 --- a/npc/024-9/barkeeper.txt +++ b/npc/024-9/barkeeper.txt @@ -14,20 +14,24 @@ OnInit: tradertype(NST_MARKET); - sellitem DwarvenSake, 1100, 5; + sellitem DwarvenSake, 1100, 1; sellitem Beer, 300, 20; if ($ARKIM_ST >= 4000) sellitem ClothoLiquor, -1, (($ARKIM_ST-4000)/500)+1; + if ($ARKIM_ST >= 4700) + sellitem LachesisBrew, -1, (($ARKIM_ST-4700)/500)+1; .sex = G_MALE; .distance = 5; end; OnClock2358: - restoreshopitem DwarvenSake, 1100, 5; + restoreshopitem DwarvenSake, 1100, 1; restoreshopitem Beer, 300, 20; if ($ARKIM_ST >= 4000) restoreshopitem ClothoLiquor, (($ARKIM_ST-4000)/500)+1; + if ($ARKIM_ST >= 4700) + restoreshopitem LachesisBrew, (($ARKIM_ST-4700)/500)+1; end; // Pay your taxes! |