summaryrefslogtreecommitdiff
path: root/npc/custom/eAAC_Scripts/kafraExpress/ke_shop.txt
diff options
context:
space:
mode:
authorVicious <Vicious@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-03-02 18:50:09 +0000
committerVicious <Vicious@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-03-02 18:50:09 +0000
commit430f60e0b89f43358026ff1a170ac8938a534244 (patch)
tree6094005321b26405258b47ce4a4de6a8ae33d806 /npc/custom/eAAC_Scripts/kafraExpress/ke_shop.txt
parent32ebde394d7762fdbb28ba9b5c3ce9a232292bb7 (diff)
downloadhercules-430f60e0b89f43358026ff1a170ac8938a534244.tar.gz
hercules-430f60e0b89f43358026ff1a170ac8938a534244.tar.bz2
hercules-430f60e0b89f43358026ff1a170ac8938a534244.tar.xz
hercules-430f60e0b89f43358026ff1a170ac8938a534244.zip
eACC scripts.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5429 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/custom/eAAC_Scripts/kafraExpress/ke_shop.txt')
-rw-r--r--npc/custom/eAAC_Scripts/kafraExpress/ke_shop.txt66
1 files changed, 66 insertions, 0 deletions
diff --git a/npc/custom/eAAC_Scripts/kafraExpress/ke_shop.txt b/npc/custom/eAAC_Scripts/kafraExpress/ke_shop.txt
new file mode 100644
index 000000000..b8fdf9f66
--- /dev/null
+++ b/npc/custom/eAAC_Scripts/kafraExpress/ke_shop.txt
@@ -0,0 +1,66 @@
+//===== eAthena Script =======================================
+//= Kafra Express - Portable Shop Module
+//===== By: ==================================================
+//= Skotlex
+//===== Current Version: =====================================
+//= 0.1
+//===== Compatible With: =====================================
+//= eAthena SVN R5195+
+//===== Description: =========================================
+//= Part of the Kafra Express Script Package.
+//= Offers buying/selling shop.
+//===== Additional Comments: =================================
+//= See config.txt for configuration.
+//============================================================
+
+- script keInit_shop {
+OnInit: //Load Config
+ donpcevent "keConfig::OnLoadShop";
+ end;
+}
+
+//Sample shops, adjust as needed!
+- shop ke_townshop -,611:-1,1750:-1,501:-1,502:-1,503:-1,504:-1,506:-1,525:-1,601:-1,602:-1,1065:-1,645:-1,656:-1,657:-1
+- shop ke_dunshop -,611:-1,1750:-1,501:-1,502:-1,503:-1,504:-1,506:-1,525:-1,601:-1,602:-1,1065:-1
+
+function script F_keShop {
+
+ if (getarg(0) == 0) { //Town shop
+ set @type, $@kesh_towntype;
+ set @shop$, $@kesh_townshop$;
+ } else {
+ set @type, $@kesh_duntype;
+ set @shop$, $@kesh_dunshop$;
+ }
+
+ switch (@type) {
+ case 1:
+ set @kmenu, select(
+ "- Return",
+ "- Buy items"
+ );
+ break;
+ case 2:
+ set @kmenu, select(
+ "- Return",
+ "- Sell items"
+ );
+ if (@kmenu > 1)
+ set @kmenu,3;
+ break;
+ default:
+ set @kmenu, select(
+ "- Return",
+ "- Buy items",
+ "- Sell items"
+ );
+ break;
+ }
+ if (@kmenu == 1)
+ return;
+ mes "Thank you for using Kafra Services.";
+ close2;
+ cutin getarg(1), 255;
+ callshop @shop$, @kmenu-1;
+ end;
+}