diff options
author | seeds <abby.hulka@gmail.com> | 2021-07-24 20:40:26 +0000 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-07-24 20:40:26 +0000 |
commit | 7994363113d46f5eb3970282fbca6a165d555b40 (patch) | |
tree | 7f7aeec50520731384814619669b59cf5be60023 /npc/006-2-1/server.txt | |
parent | d6975a02b36c5fefe712d6ba6d5313e966600eed (diff) | |
download | serverdata-7994363113d46f5eb3970282fbca6a165d555b40.tar.gz serverdata-7994363113d46f5eb3970282fbca6a165d555b40.tar.bz2 serverdata-7994363113d46f5eb3970282fbca6a165d555b40.tar.xz serverdata-7994363113d46f5eb3970282fbca6a165d555b40.zip |
Piou isles fixes patch
Diffstat (limited to 'npc/006-2-1/server.txt')
-rw-r--r-- | npc/006-2-1/server.txt | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/npc/006-2-1/server.txt b/npc/006-2-1/server.txt new file mode 100644 index 000000000..8b14c143f --- /dev/null +++ b/npc/006-2-1/server.txt @@ -0,0 +1,41 @@ +// TMW2 Script. +// Author: +// Jesusalva +// Modified by: +// +seeds + +006-2-1,41,74,0 script Server 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; + +} |