diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-07-07 20:36:00 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-07-07 20:36:00 -0300 |
commit | 6967b9e0b63d19141d4f59b7933a960ac81916d0 (patch) | |
tree | 8ecd9cd2461f3598cb7faece71eb77162aa4ef2a /npc/002-2/latoy.txt | |
parent | 9877fd4ad81120af8e63e96d5d429092014dc017 (diff) | |
parent | 046c659193e1ca8bd13478678d1277df8bf9395c (diff) | |
download | serverdata-6967b9e0b63d19141d4f59b7933a960ac81916d0.tar.gz serverdata-6967b9e0b63d19141d4f59b7933a960ac81916d0.tar.bz2 serverdata-6967b9e0b63d19141d4f59b7933a960ac81916d0.tar.xz serverdata-6967b9e0b63d19141d4f59b7933a960ac81916d0.zip |
Merge branch 'master' into legacy
Override all files with 'master' version.
This version is meant to preserve git history as requested by bjorn.
Diffstat (limited to 'npc/002-2/latoy.txt')
-rw-r--r-- | npc/002-2/latoy.txt | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/npc/002-2/latoy.txt b/npc/002-2/latoy.txt new file mode 100644 index 00000000..24b9ed4f --- /dev/null +++ b/npc/002-2/latoy.txt @@ -0,0 +1,26 @@ +002-2,86,93,0 shop #LatoyShop NPC32767,544:8000,868:10000,1172:3000,720:16000 +002-2,86,93,0 script Latoy NPC106,{ + QUEST_NorthTulimshar = QUEST_NorthTulimshar | $@knowLatoyNT; + + mes "[Latoy]"; + mes "\"Is there something I can help you with?\""; + if (QL_KYLIAN != 7) + goto L_Shop; + next; + mes "Maybe this is the kind of shop Kylian is looking for?"; + goto L_Shop; + +L_Shop: + mes "[Latoy]"; + mes "\"How would you like to browse my wares?\""; + menu + "Yes.", L_LatoyShop, + "No.", L_close; + +L_LatoyShop: + close2; + shop "#LatoyShop"; + +L_close: + close; +} |