diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-01 02:24:53 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-01 02:24:53 -0300 |
commit | 99aa4c4015a0805620d07139ff604ed39fe2480f (patch) | |
tree | ec7fdd74ea394cab03b7323213737cab96e14062 /npc | |
parent | d8c8cd8b5738d90a0be987113fd78afbf35fe5d9 (diff) | |
download | serverdata-99aa4c4015a0805620d07139ff604ed39fe2480f.tar.gz serverdata-99aa4c4015a0805620d07139ff604ed39fe2480f.tar.bz2 serverdata-99aa4c4015a0805620d07139ff604ed39fe2480f.tar.xz serverdata-99aa4c4015a0805620d07139ff604ed39fe2480f.zip |
Alan: Fix (?) the cursed and poison arrows ammo boxes
Diffstat (limited to 'npc')
-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; |