Hello,
me again, sorry to be a bother. I was wondering if there is a way to reset the entire questlog. That means all quests should be reset to state 0, need to be rediscovered and all that. I know it can be done manually with Quest Status, but I was hoping to do it for the entire thing, since I am lazy and have 100 quests.
Viewing post in [CGMZ][Alpha] Quest System for RPG Maker MZ comments
Hi,
sure, here ya go: GO to the Menu and Activate New Game+ :)
https://www.dropbox.com/scl/fi/91j9wqlnqb9bukno7ekek/MenuFail.zip?rlkey=r25ep7fx...
The issue sees to be that both your command "Ancient Cave Challenge" and "New Game +" have the same command symbol "newgameplus". You cannot have the same command symbol for multiple commands. When I change "Ancient Cave Challenge" command symbol to "newgameplus2" the New Game + option begins working as expected.
Usually this setup error would not close the game window itself, but since both of the commands with the same symbol have "this.popScene()" in their JS Command, it is trying to pop the scene twice - first the Menu Scene and then the Map Scene. This closes the game because there is no scene on the stack below the Map Scene so when the Map Scene is "popped" it exits the game.