So I am working on a rpg game that is kind of like wow just 2d. I have some quest going and working but its just to were the quest is active so the end part is active. So you can complete the quest. How would I go about making a quest log for the game. Like in wow you can pull up a log to see all your active quest.
Give each quest object a name string, description string, completed boolean. Keep a list of quest objects updated. When displaying the quest log, loop through all the quests and show them using those variables.