- Joined
- Jun 25, 2020
- Messages
- 33
- Reaction score
- 4
- First Language
- Spanish
- Primarily Uses
- RMMZ
Greetings:
Time ago, I found at the forums the following Script which allows (at MV), to configure the default values for variables:
(source: https://forums.rpgmakerweb.com/index.php?threads/default-variable-values.93205/ )
As you can imagine, I've tried this at MZ and it just not work; could anyone be so kind to help me to "translate" this to MZ?
Thanks a lot in advanced for your will to help
Time ago, I found at the forums the following Script which allows (at MV), to configure the default values for variables:
Code:
(function() {
var alias_DataManager_setupNewGame = DataManager.setupNewGame;
DataManager.setupNewGame = function() {
alias_DataManager_setupNewGame.call(this);
$gameVariables.setValue(ID, VALUE);
$gameVariables.setValue(ID, VALUE);
//and so on...
};
})();
As you can imagine, I've tried this at MZ and it just not work; could anyone be so kind to help me to "translate" this to MZ?
Thanks a lot in advanced for your will to help
Last edited:
