summaryrefslogtreecommitdiff
path: root/world/map/npc/021-2/yanis.txt
diff options
context:
space:
mode:
authorwushin <pasekei@gmail.com>2015-01-07 21:04:38 -0600
committerwushin <pasekei@gmail.com>2015-01-07 21:04:38 -0600
commit61c88ec162713b980f30e6e5111c1cfbd9f23d3a (patch)
treecbc5f399ccf8dd226056887a70b9a313f88bee6e /world/map/npc/021-2/yanis.txt
parent2901ba177dea5867cbd52eb2b02a0ef8e1816e15 (diff)
downloadserverdata-61c88ec162713b980f30e6e5111c1cfbd9f23d3a.tar.gz
serverdata-61c88ec162713b980f30e6e5111c1cfbd9f23d3a.tar.bz2
serverdata-61c88ec162713b980f30e6e5111c1cfbd9f23d3a.tar.xz
serverdata-61c88ec162713b980f30e6e5111c1cfbd9f23d3a.zip
Adjust rest of world to Match new tutorial
Diffstat (limited to 'world/map/npc/021-2/yanis.txt')
-rw-r--r--world/map/npc/021-2/yanis.txt41
1 files changed, 0 insertions, 41 deletions
diff --git a/world/map/npc/021-2/yanis.txt b/world/map/npc/021-2/yanis.txt
deleted file mode 100644
index 0cc28962..00000000
--- a/world/map/npc/021-2/yanis.txt
+++ /dev/null
@@ -1,41 +0,0 @@
-// Government official taking care about shop licenses
-// involved in quest given by 021-1/imec.txt and 021-2/kylian.txt
-
-021-2.gat,33,17,0|script|Yanis|107
-{
- set QUEST_NorthTulimshar, QUEST_NorthTulimshar | $@knowYanisNT;
- set @kylian, ((QUEST_NorthTulimshar & NIBBLE_5_MASK) >> NIBBLE_5_SHIFT);
- set @imec, ((QUEST_NorthTulimshar & TWOBIT_4_MASK) >> TWOBIT_4_SHIFT);
-
- mes "[Yanis]";
- mes "\"Welcome. I'm handling issues with trading licenses for the shop owners in Tulimshar. Can I help you?\"";
- if (@imec != 1)
- menu
- "Nothing right now.",L_BeforeClose;
- menu
- "Imec asked me to bring this petition.",L_Next,
- "Nothing right now.",L_BeforeClose;
-
-L_Next:
- mes "[Yanis]";
- mes "\"Imec? I see. Give it to me.\"";
- mes "Yanis has a disapproving look on his face. He takes the letter and writes something on another paper.";
- next;
- mes "[Yanis]";
- mes "\"Here you have a letter of acknowledgement. You can bring that back to Imec. We will have a look at his case.\"";
- set @imec, 2;
- set QUEST_NorthTulimshar, (QUEST_NorthTulimshar & ~(TWOBIT_4_MASK)) | (@imec << TWOBIT_4_SHIFT);
- goto L_BeforeClose;
-
-L_BeforeClose:
- if (@kylian != 3)
- goto L_Close;
- next;
- mes "You think that this is the person Kylian needs to talk to. You should tell him.";
- goto L_Close;
-
-L_Close:
- set @imec, 0;
- set @kylian, 0;
- close;
-}