diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-12-29 22:08:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-01-14 20:18:11 +0300 |
commit | 939568eb4adab9b1353b09885f9ea510a45eccc9 (patch) | |
tree | a643109428e9244e82f5c156f13c292149abddf4 /doc | |
parent | 42c129494a2b9f9899fb28fb5ca5792ee850ce07 (diff) | |
download | hercules-939568eb4adab9b1353b09885f9ea510a45eccc9.tar.gz hercules-939568eb4adab9b1353b09885f9ea510a45eccc9.tar.bz2 hercules-939568eb4adab9b1353b09885f9ea510a45eccc9.tar.xz hercules-939568eb4adab9b1353b09885f9ea510a45eccc9.zip |
Add barter shop demo script.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/sample/npc_trader_sample.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/sample/npc_trader_sample.txt b/doc/sample/npc_trader_sample.txt index 0d50af8c5..24c53330b 100644 --- a/doc/sample/npc_trader_sample.txt +++ b/doc/sample/npc_trader_sample.txt @@ -56,3 +56,11 @@ OnMyResupply: sellitem Red_Potion,-1,49; end; } +/* demonstrate barter shop */ +prontera,159,284,4 trader Barter Shop#prt 4_M_KID1,{ +OnInit: + tradertype(NST_BARTER); + sellitem White_Herb, 100, Red_Potion, 2; + sellitem Blue_Herb, 200, Orange_Potion, 3; + end; +} |