diff options
author | wushin <pasekei@gmail.com> | 2014-04-16 13:09:51 -0500 |
---|---|---|
committer | wushin <pasekei@gmail.com> | 2014-04-16 13:09:51 -0500 |
commit | e04e9eb0065caa6adf12ef36efbd3c5a3c5c3652 (patch) | |
tree | c57506b8665c9acc305bc6c85064bb4a7ab1fbc5 /world/map/npc/068-2/latoy.txt | |
parent | 566297bd2b1467cf23e88bb2c0ad210b7d5a2ffa (diff) | |
parent | c84e27e10b0f6ed56ae0ee1b0ec4fe7e9d0fd507 (diff) | |
download | serverdata-2014.4.16.tar.gz serverdata-2014.4.16.tar.bz2 serverdata-2014.4.16.tar.xz serverdata-2014.4.16.zip |
Merge pull request #79 from wushin/Tile-Fixes-Map-Travelv2014.4.16
Tile map fixes sprite travel
Diffstat (limited to 'world/map/npc/068-2/latoy.txt')
-rw-r--r-- | world/map/npc/068-2/latoy.txt | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/world/map/npc/068-2/latoy.txt b/world/map/npc/068-2/latoy.txt new file mode 100644 index 00000000..b1dca208 --- /dev/null +++ b/world/map/npc/068-2/latoy.txt @@ -0,0 +1,34 @@ +// A snobby store that won't sell to the player +// takes part in quest given by 021-2/kylian.txt + +// Shop: DesertShirt :-1,SilkRobe :-5,SerfHat :-1,DesertHat :-4 +068-2.gat,92,83,0|shop|#LatoyShop|127,DesertShirt :-1,SilkRobe :-5,SerfHat :-1,DesertHat :-4 + +068-2.gat,92,83,0|script|Latoy|106, +{ + set QUEST_NorthTulimshar, QUEST_NorthTulimshar | $@knowLatoyNT; + set @kylian, ((QUEST_NorthTulimshar & $@businessmanNT_MASK) >> $@businessmanNT_SHIFT); + + mes "[Latoy]"; + mes "\"Is there something I can help you with?\""; + if (@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: + set @kylian, 0; + close; +} |