blob: 27e69f63fac44be5324281b2275c4da1e1173034 (
plain) (
tree)
|
|
// 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 & $@businessmanNT_MASK) >> $@businessmanNT_SHIFT);
set @imec, ((QUEST_NorthTulimshar & $@ImecShopNT_MASK) >> $@ImecShopNT_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.",-,
"Nothing right now.",L_BeforeClose;
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 & ~($@ImecShopNT_MASK)) | (@imec << $@ImecShopNT_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;
}
|