summaryrefslogtreecommitdiff
path: root/npc/012-3
diff options
context:
space:
mode:
Diffstat (limited to 'npc/012-3')
-rw-r--r--npc/012-3/alan.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/npc/012-3/alan.txt b/npc/012-3/alan.txt
index 95d1faf6f..cb58c49ea 100644
--- a/npc/012-3/alan.txt
+++ b/npc/012-3/alan.txt
@@ -86,6 +86,11 @@ OnInit:
sellitem TrainingArrow, -1, 2000;
sellitem Arrow, -1, 1000;
sellitem IronArrow, -1, 500;
+
+ if ($ARKIM_ST >= 400)
+ sellitem CursedArrow, -1, $ARKIM_ST-399;
+ if ($ARKIM_ST >= 800)
+ sellitem PoisonArrow, -1, $ARKIM_ST-799;
end;
@@ -98,5 +103,9 @@ OnClock1800:
restoreshopitem TrainingArrow, -1, 2000;
restoreshopitem Arrow, -1, 1000;
restoreshopitem IronArrow, -1, 500;
+ if ($ARKIM_ST >= 400)
+ sellitem CursedArrow, -1, $ARKIM_ST-399;
+ if ($ARKIM_ST >= 800)
+ sellitem PoisonArrow, -1, $ARKIM_ST-799;
}