dealing with quests is normaly no problem for me. usually i use the functions from userfunction_QuestByName()
AcceptQuestByName()
CompleteQuestByName()
and in other places i deal with
OnClick_QuestListButton(..), AcceptQuest(), CompleteQuest()
but with all these i need getQuestStatus() to get to know wheter a quest is completed or not.
now i have one quest wich getQuestStatus() does not seem to get information about.
the quest id is 424163
the german questname is: "Grippe? Vergiftet!"
i tried following code snippet to test
Code: Select all
<?xml version="1.0" encoding="utf-8"?><waypoints>
<onLoad>
repeat questname=RoMScript("TEXT('Sys424163_name')"); yrest(500) until questname; -- "Grippe? Vergiftet!"
queststatus = getQuestStatus(questname);
printf("Questname: %s\n", questname);
printf("Queststatus: %s\n", queststatus);
error("Finished",0);
</onLoad>
</waypoints>but getQuestStatus() always returns "not accepted" wheter i have the quest in my questbook or not, completet or incomplete.
i also tried with getQuestStatus(questid), which also does not work.
do you have got any ideas?
Ric