diff options
author | Reid <reidyaro@gmail.com> | 2016-01-04 13:31:12 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2016-01-04 13:31:12 +0100 |
commit | 9bc966d739f1919ba1cb8b9d10b41294f6ec9834 (patch) | |
tree | 44e7206ffc4071e70e63da46276267d614ea904f | |
parent | b25fc7eb266ce1eb0f439adb3f1dc59460f862a6 (diff) | |
download | serverdata-9bc966d739f1919ba1cb8b9d10b41294f6ec9834.tar.gz serverdata-9bc966d739f1919ba1cb8b9d10b41294f6ec9834.tar.bz2 serverdata-9bc966d739f1919ba1cb8b9d10b41294f6ec9834.tar.xz serverdata-9bc966d739f1919ba1cb8b9d10b41294f6ec9834.zip |
Add Fexil quest indication on Calypsan.
-rw-r--r-- | npc/001-1/calypsan.txt | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/npc/001-1/calypsan.txt b/npc/001-1/calypsan.txt index 1997ccae..e518a207 100644 --- a/npc/001-1/calypsan.txt +++ b/npc/001-1/calypsan.txt @@ -5,12 +5,32 @@ // Dye seller. -001-1,47,134,0 script Calypsan#001-1 NPC_CALYPSAN,{ +001-1,47,126,0 script Calypsan#001-1 NPC_CALYPSAN,{ speech 4, l("My shop is not yeye ready..."); + .@fexil = getq(ArtisQuests_Fexil); + menuint + rif(.@fexil == 1, l("Have you seen Fexil?")), 0, + l("Bye."), 1; + + switch (@menuret) + { + case 0: + setcamnpc "Fexil#001-1"; + speech 5, + l("Oh yeye did, his store is just aside me!"), + l("Yoiis should look there."); + restorecam; + + break; + case 1: + break; + } + closedialog; + goodbye; close; OnInit: |