summaryrefslogtreecommitdiff
path: root/npc/006-2-1/jenny.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-05-29 22:14:03 +0000
committerJesusaves <cpntb1@ymail.com>2021-05-29 22:14:03 +0000
commit9988505e943fdc7871f4d91757074a0964366ccd (patch)
treee73f7b591f20373d5f53dc9124fd2fd48c92b07a /npc/006-2-1/jenny.txt
parentb3ac5a97ffb6a7d76e2251330e90805656939e13 (diff)
parent63c1aa7f6ec9363ee7f7c80d16d53240479d6eb8 (diff)
downloadserverdata-9988505e943fdc7871f4d91757074a0964366ccd.tar.gz
serverdata-9988505e943fdc7871f4d91757074a0964366ccd.tar.bz2
serverdata-9988505e943fdc7871f4d91757074a0964366ccd.tar.xz
serverdata-9988505e943fdc7871f4d91757074a0964366ccd.zip
Merge branch 'PiouIsles' into 'master'
Piou isles See merge request TMW2/serverdata!60
Diffstat (limited to 'npc/006-2-1/jenny.txt')
-rw-r--r--npc/006-2-1/jenny.txt41
1 files changed, 41 insertions, 0 deletions
diff --git a/npc/006-2-1/jenny.txt b/npc/006-2-1/jenny.txt
new file mode 100644
index 000000000..72525f8a3
--- /dev/null
+++ b/npc/006-2-1/jenny.txt
@@ -0,0 +1,41 @@
+// TMW2 Script.
+// Author:
+// Jesusalva
+// Modified by:
+// +seeds
+
+006-2-1,41,74,0 script Jenny NPC_PIOU_SERVER,{
+
+ mesn;
+ mesq l("Hello! Would you like to try some piou delicacies?");
+ next;
+ closedialog;
+ npcshopattach(.name$);
+ shop .name$;
+ close;
+
+OnInit:
+
+ .sex = G_OTHER;
+ .distance = 5;
+
+ tradertype(NST_MARKET);
+ sellitem Piberries, 20, 20;
+ sellitem Aquada, 120, 5;
+ sellitem LettuceLeaf, 30, 15;
+ sellitem Bread, 46, 10;
+ sellitem Cheese, 55, 15;
+
+ end;
+
+OnClock0556:
+OnClock1201:
+OnClock1759:
+OnClock0003:
+ restoreshopitem Piberries, 20, 20;
+ restoreshopitem Aquada, 120, 5;
+ restoreshopitem LettuceLeaf, 30, 15;
+ restoreshopitem Bread, 46, 10;
+ restoreshopitem Cheese, 55, 15;
+ end;
+}