diff options
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! |