- Joined
- Jun 4, 2016
- Messages
- 31
- Reaction score
- 24
- First Language
- Italiano
- Primarily Uses
- RMMV
Yes, I already tried in an empty project, using only these 2 plugins and I get the same error, even reversing the order.
Another curiosity, I just tried to paste the script of the scene in your plugin, inserting:
and I do not get any more error, it seems that the scene at least apparently is declared, only that I still do not display the keys ...
I think that does not depend on other plugins being that I receive errors even without those, do you want the same list of my plugins?
Another curiosity, I just tried to paste the script of the scene in your plugin, inserting:
Code:
function Scene_PretitleMap() {
this.initialize.apply(this, arguments);
}
Scene_PretitleMap.prototype = Object.create(Scene_Map.prototype);
Scene_PretitleMap.prototype.constructor = Scene_PretitleMap;
Scene_PretitleMap.prototype.initialize = function() {
Scene_Map.prototype.initialize.call(this);
DataManager.setupNewGame();
$gamePlayer.reserveTransfer($.MapID, 0, 0);
}
and I do not get any more error, it seems that the scene at least apparently is declared, only that I still do not display the keys ...
I think that does not depend on other plugins being that I receive errors even without those, do you want the same list of my plugins?