summaryrefslogtreecommitdiff
path: root/server/sample/npc_trader_sample.txt
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-01-29 22:09:19 +0300
committerAndrei Karas <akaras@inbox.ru>2016-01-29 22:09:19 +0300
commit39fa4991f1ce803da04fae342d5ab64111a3df5e (patch)
tree585dbfb0d6800a8a3bc4d3bec3eb8d41e23894e1 /server/sample/npc_trader_sample.txt
parent61d35617036a2170160e91fdc8f93410ae7d0e3e (diff)
downloaddocs-39fa4991f1ce803da04fae342d5ab64111a3df5e.tar.gz
docs-39fa4991f1ce803da04fae342d5ab64111a3df5e.tar.bz2
docs-39fa4991f1ce803da04fae342d5ab64111a3df5e.tar.xz
docs-39fa4991f1ce803da04fae342d5ab64111a3df5e.zip
Add all existing server docs.
Diffstat (limited to 'server/sample/npc_trader_sample.txt')
-rw-r--r--server/sample/npc_trader_sample.txt58
1 files changed, 58 insertions, 0 deletions
diff --git a/server/sample/npc_trader_sample.txt b/server/sample/npc_trader_sample.txt
new file mode 100644
index 0000000..0d50af8
--- /dev/null
+++ b/server/sample/npc_trader_sample.txt
@@ -0,0 +1,58 @@
+//===== Hercules Script =======================================
+//= Sample: NPC Trader
+//===== By: ==================================================
+//= Hercules Dev Team
+//===== Current Version: =====================================
+//= 20131225
+//===== Description: =========================================
+//= Demonstrates NPC Trader.
+//============================================================
+
+/* ordinary zeny trader */
+prontera,152,151,1 trader TestTrader 4_F_EDEN_OFFICER,{
+ OnInit:
+ sellitem Valkyrja's_Shield;
+ end;
+}
+/* ordinary cash trader */
+prontera,152,152,1 trader TestTraderCash 4_F_EDEN_OFFICER,{
+ OnInit:
+ tradertype(NST_CASH);
+ sellitem Valkyrja's_Shield;
+ end;
+}
+/* custom npc trader */
+prontera,153,152,1 trader TestCustom2 4_F_EDEN_OFFICER,{
+ OnInit:
+ tradertype(NST_CUSTOM);
+ sellitem Red_Potion,2;
+ end;
+
+/* allows currency to be item 501 and 502 */
+OnCountFunds:
+ setcurrency(countitem(Red_Potion),countitem(Orange_Potion));
+ end;
+
+/* receives @price (total cost) and @points (the secondary input field for cash windows) */
+OnPayFunds:
+ dispbottom "Hi: price="+@price+" and points="+@points;
+ if( countitem(Orange_Potion) < @points || countitem(Red_Potion) < @price-@points )
+ end;
+ delitem Orange_Potion,@points;
+ delitem Red_Potion,@price-@points;
+ purchaseok();
+ end;
+}
+/* demonstrates Market Trader */
+prontera,150,160,6 trader HaiMarket 4_F_EDEN_OFFICER,{
+OnInit:
+ tradertype(NST_MARKET);
+ sellitem Red_Potion,-1,49;
+ end;
+
+OnClock0000://resupplies red potions on midnight
+OnMyResupply:
+ if( shopcount(Red_Potion) < 20 )
+ sellitem Red_Potion,-1,49;
+ end;
+}