Code: Select all
bool Quest::CheckCategoryYellow(){
bool ret = false;
string category = GetType();
//Check for these category names, return true to set category as yellow in the quest journal
if (category == "Signature" || category == "Heritage" || category == "Hallmark" || category == "Deity" || category == "Miscellaneaous" || category == "Language" || category == "Lore and Legend" || category == "World Event" || category == "Tradeskill")
ret = true;
return ret;
}