diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-07 17:54:10 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-07 17:54:10 -0300 |
commit | 7c11fe7b1516132ac9ec1ca9976e61428cada8ff (patch) | |
tree | b5e56fba07d55d19b00186e67f9ee9471756d3fd | |
parent | 4f7b0a67f46d4ba9ad67b5729718d62da29d65af (diff) | |
download | serverdata-7c11fe7b1516132ac9ec1ca9976e61428cada8ff.tar.gz serverdata-7c11fe7b1516132ac9ec1ca9976e61428cada8ff.tar.bz2 serverdata-7c11fe7b1516132ac9ec1ca9976e61428cada8ff.tar.xz serverdata-7c11fe7b1516132ac9ec1ca9976e61428cada8ff.zip |
What bad formula was that o.o
-rw-r--r-- | npc/012-3/alan.txt | 8 | ||||
-rw-r--r-- | npc/015-2/contrabandist.txt | 6 | ||||
-rw-r--r-- | npc/015-3/hermit.txt | 12 |
3 files changed, 13 insertions, 13 deletions
diff --git a/npc/012-3/alan.txt b/npc/012-3/alan.txt index dbbf89d32..e1f328a23 100644 --- a/npc/012-3/alan.txt +++ b/npc/012-3/alan.txt @@ -89,8 +89,8 @@ OnInit: if ($ARKIM_ST > 1400) sellitem CursedArrow, -1, $ARKIM_ST-1400; - if ($ARKIM_ST > 1800) - sellitem PoisonArrow, -1, $ARKIM_ST-1800; + if ($ARKIM_ST > 2800) + sellitem PoisonArrow, -1, $ARKIM_ST-2800; end; @@ -105,7 +105,7 @@ OnClock1800: restoreshopitem IronArrow, -1, 500; if ($ARKIM_ST > 1400) restoreshopitem CursedArrow, -1, $ARKIM_ST-1400; - if ($ARKIM_ST > 1800) - restoreshopitem PoisonArrow, -1, $ARKIM_ST-1800; + if ($ARKIM_ST > 2800) + restoreshopitem PoisonArrow, -1, $ARKIM_ST-2800; } diff --git a/npc/015-2/contrabandist.txt b/npc/015-2/contrabandist.txt index 6f52c49af..296a3ebce 100644 --- a/npc/015-2/contrabandist.txt +++ b/npc/015-2/contrabandist.txt @@ -14,7 +14,7 @@ openshop; close; function Contraband_Unload { - if ($ARKIM_ST > 4500) + if ($ARKIM_ST > 7500) stopselling(DarkDesertMushroom); if (getarg(0,0) & 1) @@ -36,8 +36,8 @@ close; return; } function Contraband_Load { - .DDMPrice=max(30000,50000-($ARKIM_ST/2)+(4500/2)); - if ($ARKIM_ST > 4500) + .DDMPrice=max(30000,50000-($ARKIM_ST/2)+(7500/2)); + if ($ARKIM_ST > 7500) sellitem DarkDesertMushroom, .DDMPrice, 1; if (getarg(0,0) & 1) diff --git a/npc/015-3/hermit.txt b/npc/015-3/hermit.txt index 0f3a84ecd..052dafaaf 100644 --- a/npc/015-3/hermit.txt +++ b/npc/015-3/hermit.txt @@ -70,13 +70,13 @@ L_Research: select l("Thanks."), rif($ARKIM_ST >= 1400, l("Cursed Arrows")), - rif($ARKIM_ST >= 1800, l("Poison Arrows")), + rif($ARKIM_ST >= 2800, l("Poison Arrows")), rif($ARKIM_ST >= 1200, l("Piberries Infusion")), - rif($ARKIM_ST >= 1600, l("Fate's Potion")), - rif($ARKIM_ST >= 2000, l("Clotho Liquor")), - rif($ARKIM_ST >= 2700, l("Lachesis Brew")), - rif($ARKIM_ST >= 3600, l("Atropos Mixture")), - rif($ARKIM_ST >= 4500, l("Dark Desert Mushroom")); + rif($ARKIM_ST >= 2600, l("Fate's Potion")), + rif($ARKIM_ST >= 4000, l("Clotho Liquor")), + rif($ARKIM_ST >= 4700, l("Lachesis Brew")), + rif($ARKIM_ST >= 6600, l("Atropos Mixture")), + rif($ARKIM_ST >= 7500, l("Dark Desert Mushroom")); mes ""; mesn; |