diff options
Diffstat (limited to 'npc/012-3/alan.txt')
-rw-r--r-- | npc/012-3/alan.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/012-3/alan.txt b/npc/012-3/alan.txt index 982da23e3..795d7f6c1 100644 --- a/npc/012-3/alan.txt +++ b/npc/012-3/alan.txt @@ -99,7 +99,7 @@ OnInit: if ($ARKIM_ST > 2800) sellitem CursedAmmoBox, -1, (($ARKIM_ST-1400)/200); if ($ARKIM_ST > 5600) - sellitem PoisonArrow, -1, (($ARKIM_ST-2800)/200); + sellitem PoisonAmmoBox, -1, (($ARKIM_ST-2800)/200); end; @@ -115,7 +115,7 @@ OnClock1151: if ($ARKIM_ST > 2800) restoreshopitem CursedAmmoBox, -1, (($ARKIM_ST-1400)/200); if ($ARKIM_ST > 5600) - restoreshopitem PoisonArrow, -1, (($ARKIM_ST-2800)/200); + restoreshopitem PoisonAmmoBox, -1, (($ARKIM_ST-2800)/200); OnClock0611: OnClock1800: restoreshopitem TrainingArrow, -1, 2000; @@ -124,6 +124,6 @@ OnClock1800: if ($ARKIM_ST > 1400) restoreshopitem CursedArrow, -1, $ARKIM_ST-1400; if ($ARKIM_ST > 2800) - restoreshopitem PoisonArrow, -1, $ARKIM_ST-2800; + restoreshopitem PoisonAmmoBox, -1, $ARKIM_ST-2800; } |