Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Hi there, first of all, great plugin, love it!

Is there any way to remove the recommended level from the quest list? I've managed to remove it from the quest info screen but it's still there in the list.

Hi, in the function CGMZ_Window_QuestList.prototype.drawQuest remove these 4 lines:

this.changeTextColorForRecLevel(quest._recommendedLevel);
this.drawText(quest._recommendedLevel, rect.x + xOffset, rect.y + this.lineHeight() / 2, rect.width, 'left');
this.changeTextColor(ColorManager.normalColor());
xOffset += this.textWidth(quest._recommendedLevel) + 4;

Thanks for the fast reply, worked like a charm!