diff options
author | wushin <pasekei@gmail.com> | 2015-05-19 12:35:46 -0500 |
---|---|---|
committer | wushin <pasekei@gmail.com> | 2015-09-06 13:13:30 -0500 |
commit | a5816766ed870dd55170a4b66a75a1907021e421 (patch) | |
tree | 12288e1561914b5268a2ccd6801cc4aa4f0e4dd8 /world/map/npc/001-2/yanis.txt | |
parent | f86e961ffbf9e1467279d3086a48c47be2a5a86f (diff) | |
download | serverdata-a5816766ed870dd55170a4b66a75a1907021e421.tar.gz serverdata-a5816766ed870dd55170a4b66a75a1907021e421.tar.bz2 serverdata-a5816766ed870dd55170a4b66a75a1907021e421.tar.xz serverdata-a5816766ed870dd55170a4b66a75a1907021e421.zip |
Some of the Tonori Area Quests
Diffstat (limited to 'world/map/npc/001-2/yanis.txt')
-rw-r--r-- | world/map/npc/001-2/yanis.txt | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/world/map/npc/001-2/yanis.txt b/world/map/npc/001-2/yanis.txt index e8cf13a3..31a91f77 100644 --- a/world/map/npc/001-2/yanis.txt +++ b/world/map/npc/001-2/yanis.txt @@ -4,8 +4,6 @@ 001-2,31,21,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); set @halloween_npc_id, $@halloween_npc_yanis; callfunc "TrickOrTreat"; @@ -15,7 +13,7 @@ L_Base_Menu: mes "[Yanis]"; mes "\"Welcome. I'm handling issues with trading licenses for the shop owners in Tulimshar. Can I help you?\""; - if (@imec != 1) + if (QL_IMEC != 1) menu "Nothing right now.",L_BeforeClose; menu @@ -29,19 +27,16 @@ L_Next: 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); + set QL_IMEC, 2; goto L_BeforeClose; L_BeforeClose: - if (@kylian != 3) + if (QL_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; } |