summaryrefslogtreecommitdiff
path: root/npc/custom/expandedbartershop.txt
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-10-05 11:34:32 +0300
committergumi <git@gumi.ca>2020-07-29 15:02:44 +0000
commit9d59f82368082fb1cf3aec225c483f9e32b4c075 (patch)
tree0200835722c95b4c789ed597cea40d293a650bd3 /npc/custom/expandedbartershop.txt
parente8ccbb249b5dcf3aeaa4ba440b20b1c6c1feeaa0 (diff)
downloadhercules-9d59f82368082fb1cf3aec225c483f9e32b4c075.tar.gz
hercules-9d59f82368082fb1cf3aec225c483f9e32b4c075.tar.bz2
hercules-9d59f82368082fb1cf3aec225c483f9e32b4c075.tar.xz
hercules-9d59f82368082fb1cf3aec225c483f9e32b4c075.zip
Remove unused dirs
Diffstat (limited to 'npc/custom/expandedbartershop.txt')
-rw-r--r--npc/custom/expandedbartershop.txt63
1 files changed, 0 insertions, 63 deletions
diff --git a/npc/custom/expandedbartershop.txt b/npc/custom/expandedbartershop.txt
deleted file mode 100644
index 5ba988ad9..000000000
--- a/npc/custom/expandedbartershop.txt
+++ /dev/null
@@ -1,63 +0,0 @@
-//===== Hercules Script ======================================
-//= Expanded barter shop demo
-//===== By: ==================================================
-//= 4144
-//===== Current Version: =====================================
-//= 1.0
-//===== Description: =========================================
-//= Expanded barter shop demo in prontera.
-//============================================================
-
-prontera,160,284,4 trader Expanded Barter Shop#prt 4_M_KID1,{
- end;
-OnInit:
- tradertype(NST_EXPANDED_BARTER);
-
- // Selling Orange_Potion with items price and 4 items price
- startsellitem(Orange_Potion, 2, 100000);
- sellitemcurrency(Banana, 2);
- sellitemcurrency(Apple, 1);
- sellitemcurrency(Carrot, 2);
- sellitemcurrency(Sweet_Potato, 1);
- endsellitem();
-
- // sell item with price only in zeny
- sellitem(White_Herb, 1, 100);
- // sell item with zeny and item price
- sellitem(Blue_Herb, 22, 200, Orange_Potion, 2, 3);
-
- // sell item with price only in zeny (infinite amount)
- sellitem(Green_Herb, 3, -1);
-
- // sell item with zeny and two items price (1)
- sellitem(Orange_Potion, 20, 100000, Banana, 2, -1, Berserk_Potion, 10, -1);
-
- // sell item with zeny and two items price (same as before but with different zeny price)
- sellitem(Orange_Potion, 1, 100000, Banana, 2, -1, Berserk_Potion, 10, -1);
-
- // sell item with item price
- sellitem(Blade, 0, 1000, Sword, 2, -1);
-
- // sell item with zeny and two items price
- sellitem(Scimiter, 2000, -1, Sword, 1, 2, Sword, 1, 5);
-
- // sell item with zeny and two items price (selling another Orange_Potion)
- sellitem(Orange_Potion, 1, 100000, Green_Herb, 2, -1);
-
- // modify selling Orange_Potion with items price (same as previous)
- // modification reset amount stored in db
- startsellitem(Orange_Potion, 1, 100);
- sellitemcurrency(Green_Herb, 2);
- endsellitem();
-
- // sell item with zeny and item price (selling another White_Herb)
- sellitem(White_Herb, 10, 100, Banana, 1, -1);
-
- // stop selling blades
-// stopselling(Blade, 1);
-
- // sell item with zeny and two items price (modify amount for entry (1))
-// sellitem(Orange_Potion, 1, 200000, Banana, 2, -1, Berserk_Potion, 10, -1);
-
- end;
-}