<?xml version="1.0" encoding="utf-8"?><waypoints type="TRAVEL">
<onload>
-- starts in 27.1 / 16.1
local npcid = 121337;
local questid = 425713;					-- Junger Ausbilder der wahren Drachen / Young instructor of the true dragons
while getQuestStatus(questid) == "not accepted" do
	player:target_NPC(npcid);
	yrest(150);
	AcceptQuestByName (questid);
end

choices = {"SC_425713_QUEST_1_B","SC_425713_QUEST_2_C","SC_425713_QUEST_3_A","SC_425713_QUEST_4_B","SC_425713_QUEST_5_C"};

player:target_NPC(npcid);
yrest(150);
for i=1,3 do 
	RoMScript ("ChoiceOption(1)");
	yrest(150);
end;

for k,v in pairs(choices) do 
	ChoiceOptionByName(getTEXT(v));
	yrest(100); 
end; 
yrest(500);
RoMScript("ChoiceOption(1);");
yrest(100);
RoMScript ("CloseWindows()");

</onload>

</waypoints>