Code: Select all
if( queststate == "complete" ) then
player:target_NPC("Vega"); -- Owner of the Armor Shop in Varanas
yrest(2000);
sendMacro("CompleteQuest();");
yrest(2000);
end
Code: Select all
if( queststate == "complete" ) then
player:target_NPC("Vega"); -- Owner of the Armor Shop in Varanas
yrest(2000);
sendMacro("CompleteQuest();");
yrest(2000);
end
Code: Select all
sendMacro("CompleteQuest();");Code: Select all
repeat queststate = getQuestStatus(questname); yrest(500) until queststate
if( queststate == "complete" ) then
player:target_NPC("Vega"); yrest(1500);
sendMacro("OnClick_QuestListButton(3,1)"); yrest(1500);
sendMacro("CompleteQuest()"); yrest(1500);
sendMacro("CloseWindows()"); yrest(1500);
end