In WoWRoster 1.7.3 I modified line 87 inside the file $ROSTERLIB\quest.php (<rosterdir>\lib\quest.php usually)
- Code: Select all
$query= "SELECT * FROM `".ROSTER_QUESTSTABLE."` WHERE `member_id` = '$member_id' ORDER BY `zone` ASC, `quest_level` DESC";
Instead of
- Code: Select all
/$query= "SELECT * FROM `".ROSTER_QUESTSTABLE."` WHERE `member_id` = '$member_id' ORDER BY 'quest_index' ASC ";
With that query you'll see your quests order by zone first (alphabetic order) and then by lvl (from the highest one to the "easyest" one).
That's all.
I hope It could be usefull.