diff options
Diffstat (limited to 'npc/012-3')
-rw-r--r-- | npc/012-3/alan.txt | 16 |
1 files changed, 8 insertions, 8 deletions
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; |