From 99aa4c4015a0805620d07139ff604ed39fe2480f Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Wed, 1 May 2019 02:24:53 -0300 Subject: Alan: Fix (?) the cursed and poison arrows ammo boxes --- npc/012-3/alan.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'npc/012-3') diff --git a/npc/012-3/alan.txt b/npc/012-3/alan.txt index d8a71309f..982da23e3 100644 --- a/npc/012-3/alan.txt +++ b/npc/012-3/alan.txt @@ -96,10 +96,10 @@ OnInit: sellitem ArrowAmmoBox, -1, 5; sellitem IronAmmoBox, -1, 2; - if ($ARKIM_ST > 28000) - sellitem CursedAmmoBox, -1, (($ARKIM_ST-1400)/20); - if ($ARKIM_ST > 56000) - sellitem PoisonArrow, -1, (($ARKIM_ST-2800)/20); + if ($ARKIM_ST > 2800) + sellitem CursedAmmoBox, -1, (($ARKIM_ST-1400)/200); + if ($ARKIM_ST > 5600) + sellitem PoisonArrow, -1, (($ARKIM_ST-2800)/200); end; @@ -112,10 +112,10 @@ OnClock1151: restoreshopitem ArrowAmmoBox, -1, 5; restoreshopitem IronAmmoBox, -1, 2; - if ($ARKIM_ST > 28000) - restoreshopitem CursedAmmoBox, -1, (($ARKIM_ST-1400)/20); - if ($ARKIM_ST > 56000) - restoreshopitem PoisonArrow, -1, (($ARKIM_ST-2800)/20); + if ($ARKIM_ST > 2800) + restoreshopitem CursedAmmoBox, -1, (($ARKIM_ST-1400)/200); + if ($ARKIM_ST > 5600) + restoreshopitem PoisonArrow, -1, (($ARKIM_ST-2800)/200); OnClock0611: OnClock1800: restoreshopitem TrainingArrow, -1, 2000; -- cgit v1.2.3-60-g2f50