I did a quick and dirty update to my previous mod of cheat menu to include a function that unlocks scenes in the memory zone.
It automatically pulls the array from map JSON so it should work with future versions as well with no need to update.
I set a delay of 3 second for the function execution as importing the JSON (especially for older PC) can be slow.
if you feel thats too short/long you can change it by modifying
to anything you want.
extract into your game folder
M8AaCH feel free to include this in your future uploads if you want.
EDIT: changed the code a little so that it automatically set the variable to true if it ends with 'END'. This makes it so that it wouldn't require future updates.
JavaScript:
for (var i = 0; i < $dataSystem.variables.length; i++) {
if($dataSystem.variables[i].endsWith('END')) {
$gameVariables._data[i] = true
}
}